We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ctrl+k
1 parent 21b61d8 commit e2ad259Copy full SHA for e2ad259
2 files changed
docs/content.en/docs/release-notes/_index.md
@@ -37,6 +37,7 @@ Information about release notes of Coco Server is provided here.
37
- fix: fix shortcut issue in windows context menu #804
38
- fix: panic caused by "state() called before manage()" #806
39
- fix: fix multiline input issue #808
40
+- fix: fix ctrl+k not working #815
41
42
### ✈️ Improvements
43
src/components/Search/ContextMenu.tsx
@@ -200,7 +200,7 @@ const ContextMenu = ({ formatUrl }: ContextMenuProps) => {
200
}
201
}, [selectedSearchContent]);
202
203
- useOSKeyPress(["meta.k", "ctrl+k"], () => {
+ useOSKeyPress(["meta.k", "ctrl.k"], () => {
204
if (isNil(selectedSearchContent) && isNil(selectedExtension)) return;
205
206
setVisibleContextMenu(!visibleContextMenu);
0 commit comments