La mia tecnica attuale è fare clic con il pulsante destro del mouse sul prompt dei comandi e quindi fare clic su Incolla. Questo mi dà fastidio: esiste un modo migliore?
La mia tecnica attuale è fare clic con il pulsante destro del mouse sul prompt dei comandi e quindi fare clic su Incolla. Questo mi dà fastidio: esiste un modo migliore?
Risposte:
Questo è stato risolto in Server Fault :
Personalmente uso un piccolo script AutoHotkey per rimappare alcune funzioni della tastiera, per la finestra della console (CMD) che uso:>
; 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