瀏覽代碼

Display Ctrl+Space as the main complete word shortcut.

Martijn Laan 1 年之前
父節點
當前提交
e7150ec2a0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Projects/Src/CompForm.pas

+ 1 - 1
Projects/Src/CompForm.pas

@@ -820,7 +820,7 @@ begin
   SetFakeShortCut(EPaste, Ord('V'), [ssCtrl]);
   SetFakeShortCut(ESelectAll, Ord('A'), [ssCtrl]);
   SetFakeShortCut(EDelete, VK_DELETE, []);
-  SetFakeShortCut(ECompleteWord, VK_RIGHT, [ssAlt]);
+  SetFakeShortCut(ECompleteWord, Ord(' '), [ssCtrl]);
   SetFakeShortCutText(VZoomIn, SmkcCtrl + 'Num +');    { These zoom shortcuts are handled by Scintilla and only support the active memo, unlike the menu items which work on all memos }
   SetFakeShortCutText(VZoomOut, SmkcCtrl + 'Num -');
   SetFakeShortCutText(VZoomReset, SmkcCtrl + 'Num /');