File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,10 @@ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'
3939import { INotificationService } from 'vs/platform/notification/common/notification'
4040import { ILogService } from 'vs/platform/log/common/log'
4141import { ICodeEditorService } from 'vs/editor/browser/services/codeEditorService'
42- import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'
42+ import { IKeybindingService , IKeyboardEvent } from 'vs/platform/keybinding/common/keybinding'
4343import { KeybindingResolver } from 'vs/platform/keybinding/common/keybindingResolver'
4444import { ResolvedKeybindingItem } from 'vs/platform/keybinding/common/resolvedKeybindingItem'
45+ import { ResolvedKeybinding } from 'vs/base/common/keybindings'
4546import { createInjectedClass } from './tools/injection'
4647// Selectively comes from vs/workbench/contrib/codeEditor/browser/codeEditor.contribution.ts
4748import 'vs/workbench/contrib/codeEditor/browser/workbenchReferenceSearch'
@@ -210,6 +211,10 @@ class DelegateStandaloneKeybindingService extends StandaloneKeybindingService {
210211 protected override _getResolver ( ) : KeybindingResolver {
211212 return this . delegate . _getResolver ( )
212213 }
214+
215+ override resolveKeyboardEvent ( keyboardEvent : IKeyboardEvent ) : ResolvedKeybinding {
216+ return this . delegate . resolveKeyboardEvent ( keyboardEvent )
217+ }
213218}
214219
215220let standaloneEditorInstantiationService : IInstantiationService | null = null
You can’t perform that action at this time.
0 commit comments