summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh6042026-02-07 19:17:38 -0500
committerkj_sh6042026-02-07 19:17:38 -0500
commitaf6fbe8e950967aff3b5844bf8e78d1d0f8945f8 (patch)
tree3c80dc13c696ba300aaf6d2cebb53990c8ecd85b
parent176f0e79f82a79d05e9bcc4d92fbf8805816f5d1 (diff)
refactor: fix markdown preview keybind again
-rw-r--r--.config/Code/User/keybindings.json9
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index 9726de2..d2b966e 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -166,4 +166,13 @@
166 "key": "ctrl+b", 166 "key": "ctrl+b",
167 "command": "-workbench.action.toggleSidebarVisibility" 167 "command": "-workbench.action.toggleSidebarVisibility"
168 }, 168 },
169 {
170 "key": "ctrl+shift+v",
171 "command": "-markdown.showPreview",
172 "when": "!notebookEditorFocused && editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/"
173 },
174 {
175 "key": "ctrl+shift+v",
176 "command": "editor.action.clipboardPasteAction"
177 },
169] 178]