我当前的技术是右键单击命令提示符,然后单击粘贴。这让我很烦-有更好的方法吗?
出于好奇,有人知道为什么他们不只是添加对control-v paste命令的支持吗?
—
Shane Wealti 2011年
我当前的技术是右键单击命令提示符,然后单击粘贴。这让我很烦-有更好的方法吗?
Answers:
这是在服务器故障上解决的:
我个人使用一些AutoHotkey脚本来重新映射某些键盘功能,对于我使用的控制台窗口(CMD):>
; 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