mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 02:48:30 -05:00
Merge VS Code 1.23.1 (#1520)
This commit is contained in:
@@ -171,7 +171,7 @@ class GrowSelectionAction extends AbstractSmartSelect {
|
||||
alias: 'Expand Select',
|
||||
precondition: null,
|
||||
kbOpts: {
|
||||
kbExpr: EditorContextKeys.textFocus,
|
||||
kbExpr: EditorContextKeys.editorTextFocus,
|
||||
primary: KeyMod.Shift | KeyMod.Alt | KeyCode.RightArrow,
|
||||
mac: { primary: KeyMod.CtrlCmd | KeyMod.WinCtrl | KeyMod.Shift | KeyCode.RightArrow }
|
||||
}
|
||||
@@ -187,7 +187,7 @@ class ShrinkSelectionAction extends AbstractSmartSelect {
|
||||
alias: 'Shrink Select',
|
||||
precondition: null,
|
||||
kbOpts: {
|
||||
kbExpr: EditorContextKeys.textFocus,
|
||||
kbExpr: EditorContextKeys.editorTextFocus,
|
||||
primary: KeyMod.Shift | KeyMod.Alt | KeyCode.LeftArrow,
|
||||
mac: { primary: KeyMod.CtrlCmd | KeyMod.WinCtrl | KeyMod.Shift | KeyCode.LeftArrow }
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ export class TokenSelectionSupport {
|
||||
|
||||
private _modelService: IModelService;
|
||||
|
||||
constructor( @IModelService modelService: IModelService) {
|
||||
constructor(@IModelService modelService: IModelService) {
|
||||
this._modelService = modelService;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user