Skip to content

Commit 69487e3

Browse files
fix: 🐛 keybinds only active when relevant
1 parent d477d9c commit 69487e3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,19 +162,19 @@
162162
"command": "answer-set-programming-language-support.runinterminalall",
163163
"key": "ctrl+shift+a",
164164
"mac": "cmd+shift+a",
165-
"when": "editorTextFocus"
165+
"when": "editorTextFocus && editorLangId == 'asp'"
166166
},
167167
{
168168
"command": "answer-set-programming-language-support.runinterminalsingle",
169-
"key": "ctrl+shift+s",
170-
"mac": "cmd+shift+s",
171-
"when": "editorTextFocus"
169+
"key": "ctrl+shift+x",
170+
"mac": "cmd+shift+x",
171+
"when": "editorTextFocus && editorLangId == 'asp'"
172172
},
173173
{
174174
"command": "answer-set-programming-language-support.runinterminalconfig",
175175
"key": "ctrl+shift+c",
176176
"mac": "cmd+shift+c",
177-
"when": "editorTextFocus"
177+
"when": "editorTextFocus && editorLangId == 'asp'"
178178
}
179179
]
180180
},

0 commit comments

Comments
 (0)