We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9b7aa commit ac0a637Copy full SHA for ac0a637
src/vs/workbench/contrib/accessibility/browser/accessibleView.ts
@@ -126,7 +126,7 @@ class AccessibleView extends Disposable {
126
this._register(this._editorWidget.onKeyUp((e) => {
127
if (e.keyCode === KeyCode.Escape) {
128
this._contextViewService.hideContextView();
129
- } else if (e.keyCode === KeyCode.KeyD) {
+ } else if (e.keyCode === KeyCode.KeyD && this._configurationService.getValue(settingKey)) {
130
this._configurationService.updateValue(settingKey, false);
131
} else if (e.keyCode === KeyCode.KeyH && provider.options.readMoreUrl) {
132
const url: string = provider.options.readMoreUrl!;
0 commit comments