From eaad5591b61ecc856ae6838d4657f80337a09f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Tetsing?= Date: Tue, 17 Sep 2024 15:15:10 +0200 Subject: [PATCH] changed AI doc key combination --- libs/remix-ui/editor/src/lib/remix-ui-editor.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx b/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx index 6217e2d3c58..e5071092946 100644 --- a/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx +++ b/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx @@ -769,8 +769,8 @@ export const EditorUI = (props: EditorUIProps) => { contextMenuOrder: 0, // choose the order contextMenuGroupId: 'gtp', // create a new grouping keybindings: [ - // Keybinding for Ctrl + D - monacoRef.current.KeyMod.CtrlCmd | monacoRef.current.KeyCode.KeyD + // Keybinding for Ctrl + H + monacoRef.current.KeyMod.CtrlCmd | monacoRef.current.KeyCode.KeyH, ], run: async () => { const unsupportedDocTags = ['@title'] // these tags are not supported by the current docstring parser