浏览代码

Allow Ctrl+M as an alternative to Ctrl+Space (which conflicts with X11 Input Methods).

git-svn-id: file:///var/svn/tigccpp/trunk/tigcc/ide@833 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 18 年之前
父节点
当前提交
48090c5633
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      CodeCompletion/CompletionForm.pas

+ 1 - 1
CodeCompletion/CompletionForm.pas

@@ -570,7 +570,7 @@ begin
 		end;
 		Key := NewKey;
 	end
-	else if (ssCtrl in Shift) and (Key = VK_SPACE) then
+	else if (ssCtrl in Shift) and ((Key = VK_SPACE) or (Key = Ord('M'))) then
 	begin
 		Key := 0;
 		StopKey := True;