锁定老帖子 主题:大家谈谈开发是Alt+/都改成什么了
精华帖 (0) :: 良好帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-12-05
CTRL+H 最早用jbuilder的时候习惯了
|
|
返回顶楼 | |
发表时间:2011-12-05
Ctrl + J 与JBuilder保持一致,习惯~~
|
|
返回顶楼 | |
发表时间:2011-12-05
alt+/的飘过
|
|
返回顶楼 | |
发表时间:2011-12-06
最后修改:2011-12-06
Ctrl+Space这么方便的组合当然留给Word Complete。个人感觉比Code Assist好用得多。用手掌按ctrl,或者把CapsLock转成ctrl。
Code Assist可以用Alt+Space,不过这与windows热键冲突。可以用auto hotkey( http://www.autohotkey.com/ )映射一下。 另附auto hotkey脚本: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. SetTitleMatchMode RegEx ;=========================== ;Helpper Functions ;=========================== GUID() ; 32 hex digits = 128-bit Globally Unique ID { VarSetCapacity(bGuid, 16,0) VarSetCapacity(sGuid, 76) dllcall("ole32.dll\CoCreateGuid", uint, &bGuid) x := dllcall("ole32.dll\StringFromGUID2", "uint", &bGuid, "str", sGuid, "int", 76) Loop 76 UUID .= (Mod(A_Index,2) = 1) ? Chr( *(&sGuid+(A_Index-1)) ) : "" return UUID } ;=========================== ;Programming Settings ;=========================== CapsLock::LCtrl ; CapsLock转ctrl RWin::CapsLock ; 右win键转CapsLock !Space::!/ ; ALT+Space转Alt+/ ::]date:: ; 输入]date自动转为当前时间 (用于调试时加入临时标记) FormatTime, CurrentDateTime,, M/d/yyyy h:mm:ss tt ; It will look like 9/1/2005 3:53 PM SendInput %CurrentDateTime% return ::]rand:: ; 输入]rand自动转为随机数 (写单元测试时很方便) Random rand,0,99999999999999 SendInput %rand% return ::]guid:: ; ; 输入]guid自动在当前位置插入一个GUID (写单元测试时很方便) x := GUID() SendRaw % x return ::]scala:: ; Type "]scala" anywhere to open a scala script console. Run scala return ::]beanshell:: ; Type "]beanshell" anywhere to Open a beanshell script console. Run java -cp C:\daniel.deng\runnable\bsh-2.0b4.jar bsh.Interpreter return ::]javascript:: ; Type "]javascript" anywhere to open a javascript script console Run jrunscript -l js return |
|
返回顶楼 | |
发表时间:2011-12-06
hekuilove 写道 alt+/的飘过
|
|
返回顶楼 | |
发表时间:2011-12-06
happygao521 写道 wang8118 写道 为什么我觉得很顺手啊,左手的大拇指按住左边的alt,然后右手的小指按右边的/,就出来了,挺方便啊,我是不看键盘的,习惯了顺手就按出来了
Me too.习惯成自然。 一样,有冲突就alt + . |
|
返回顶楼 | |
发表时间:2011-12-06
shift+space
|
|
返回顶楼 | |
发表时间:2011-12-06
alt + .
|
|
返回顶楼 | |