Jud*_*red 17 windows command-line
我目前的技术是在命令提示符中右键单击,然后单击粘贴。这让我很烦恼 - 有更好的方法吗?
这已在Server Fault上解决:
我个人使用一些AutoHotkey脚本来重新映射某些键盘功能,对于我使用的控制台窗口 (CMD):>
Run Code Online (Sandbox Code Playgroud); Redefine only when the active window is a console window #IfWinActive ahk_class ConsoleWindowClass> ; Close Command Window with Ctrl+w $^w:: WinGetTitle sTitle If (InStr(sTitle, "-")=0) { Send EXIT{Enter} } else { Send ^w } return ; Ctrl+up / Down to scroll command window back and forward ^Up:: Send {WheelUp} return ^Down:: Send {WheelDown} return ; Paste in command window ^V:: ; Spanish menu (Editar->Pegar, I suppose English version is the same, Edit->Paste) Send !{Space}ep return #IfWinActive
| 归档时间: |
|
| 查看次数: |
6735 次 |
| 最近记录: |