¿Cómo pego en el indicador CMD de Windows usando solo el teclado?

17

Mi técnica actual es hacer clic derecho en el símbolo del sistema y luego hacer clic en pegar. Esto me molesta, ¿hay una mejor manera?

Jude Allred
fuente
Solo por curiosidad, ¿alguien sabe por qué no solo agregaron soporte para un comando de control-pegar?
Shane Wealti

Respuestas:

10

No es increíblemente fácil de usar, pero se puede pegar con ALT+ Space, e, p.

A partir de aquí .

BenA
fuente
6

Esto se resolvió en la falla del servidor :

Yo personalmente uso un pequeño script de AutoHotkey para reasignar ciertas funciones del teclado, para la ventana de consola (CMD) 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 
admintech
fuente
4

alt + espacio + E + P debería hacerlo

MDMarra
fuente
0

Control y V, como el resto del sistema operativo: P

#IfWinActive, ahk_class ConsoleWindowClass
^v:: Send !{Space}ep
#IfWinActive

(Sí, eso es solo automatizar las respuestas anteriores, pero automatizarlas es. ¡Autohotkey! :))

Phoshi
fuente