mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 09:35:37 -05:00
Merge vscode source through 1.62 release (#19981)
* Build breaks 1 * Build breaks * Build breaks * Build breaks * More build breaks * Build breaks (#2512) * Runtime breaks * Build breaks * Fix dialog location break * Update typescript * Fix ASAR break issue * Unit test breaks * Update distro * Fix breaks in ADO builds (#2513) * Bump to node 16 * Fix hygiene errors * Bump distro * Remove reference to node type * Delete vscode specific extension * Bump to node 16 in CI yaml * Skip integration tests in CI builds (while fixing) * yarn.lock update * Bump moment dependency in remote yarn * Fix drop-down chevron style * Bump to node 16 * Remove playwrite from ci.yaml * Skip building build scripts in hygine check
This commit is contained in:
@@ -527,7 +527,7 @@ export class EditDataGridPanel extends GridParentComponent {
|
||||
this.revertCurrentRow().catch(onUnexpectedError);
|
||||
handled = true;
|
||||
}
|
||||
if (e.ctrlKey && e.keyCode === KeyCode.KEY_0) {
|
||||
if (e.ctrlKey && e.keyCode === KeyCode.Digit0) {
|
||||
//Replace contents with NULL in cell contents.
|
||||
document.execCommand('selectAll');
|
||||
document.execCommand('delete');
|
||||
|
||||
@@ -19,7 +19,6 @@ import { IQueryEditorService } from 'sql/workbench/services/queryEditor/common/q
|
||||
import { CellSelectionModel } from 'sql/base/browser/ui/table/plugins/cellSelectionModel.plugin';
|
||||
|
||||
import { IAction } from 'vs/base/common/actions';
|
||||
import { ResolvedKeybinding } from 'vs/base/common/keyCodes';
|
||||
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
|
||||
import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey';
|
||||
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
|
||||
@@ -30,6 +29,7 @@ import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent';
|
||||
import { ILogService } from 'vs/platform/log/common/log';
|
||||
import { subscriptionToDisposable } from 'sql/base/browser/lifecycle';
|
||||
import { SaveFormat } from 'sql/workbench/services/query/common/resultSerializer';
|
||||
import { ResolvedKeybinding } from 'vs/base/common/keybindings';
|
||||
|
||||
|
||||
export abstract class GridParentComponent extends Disposable {
|
||||
|
||||
Reference in New Issue
Block a user