delphi 修改代码补全的快捷键(由Ctrl+Space 改为 Ctrl + alt + Space)
Posted 朝闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 修改代码补全的快捷键(由Ctrl+Space 改为 Ctrl + alt + Space)相关的知识,希望对你有一定的参考价值。
delphi 的IDE快捷键与输入法切换键中突,以往的解决方法是下载一个ImeTool修改 windows 系统的快捷键
在 xp win7 都好使,但在win 10经常是修改完后,重启又失效了。
本方法采用 Open Tools API 编写是一个组件。安装方法:
菜单-->Component -->install Component 然后选择此本单元,然后就瞎折腾吧。就好了。
unit EagleBufferList; interface procedure Register; implementation uses Windows, Classes, SysUtils, Menus, ToolsAPI, Controls; type TBufferList = class(TNotifierObject, IUnknown, IOTANotifier, IOTAKeyboardBinding) function GetBindingType: TBindingType; function GetDisplayName: string; function GetName: string; //指定快捷键 procedure BindKeyboard(const BindingServices: IOTAKeyBindingServices); protected procedure CodeCompletion(const Context: IOTAKeyContext; KeyCode: TShortcut; var BindingResult: TKeyBindingResult); end; resourcestring sBufferList = \'Eagle\'\'s Buffer List\'; // register this key binding procedure Register; begin (BorlandIDEServices as IOTAKeyBoardServices).AddKeyboardBinding(TBufferList.Create); end; { TBufferList } // the code to bind key procedure TBufferList.BindKeyboard(const BindingServices: IOTAKeyBindingServices); begin BindingServices.AddKeyBinding([ShortCut(Ord(\'P\'), [ssShift, ssCtrl, ssAlt])], CodeCompletion, Pointer(csCodeList or csManual)); BindingServices.AddKeyBinding([ShortCut(Ord(\'O\'), [ssShift, ssCtrl, ssAlt])], CodeCompletion, Pointer(csParamList or csManual)); BindingServices.AddKeyBinding([ShortCut(Ord(\' \'), [ssCtrl, ssAlt])], CodeCompletion, Pointer(csCodeList or csParamList or csManual)); { 1,2句是原作者写的 3句是我加的 把代码补完快捷键 替换为 ctrl + alt + space } end; // do code completion procedure TBufferList.CodeCompletion(const Context: IOTAKeyContext; KeyCode: TShortcut; var BindingResult: TKeyBindingResult); begin (Context.EditBuffer.TopView as IOTAEditActions).CodeCompletion(Byte(Context.Context)); BindingResult := krHandled; end; function TBufferList.GetBindingType: TBindingType; begin Result := btPartial; end; function TBufferList.GetDisplayName: string; begin Result := sBufferList; end; function TBufferList.GetName: string; begin Result := \'EagleKing.BufferList\'; // do not localize end; end. EagleBufferList.pas
http://www.cnblogs.com/lackey/p/5373761.html
以上是关于delphi 修改代码补全的快捷键(由Ctrl+Space 改为 Ctrl + alt + Space)的主要内容,如果未能解决你的问题,请参考以下文章
IntelliJ IDEA 设置代码提示或自动补全的快捷键 (附IntelliJ IDEA常用快捷键)