답변:
이것은 서버 오류 에서 해결되었습니다 .
개인적으로 작은 AutoHotkey 스크립트를 사용하여 특정 키보드 기능을 다시 매핑합니다.
; 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
Windows 10의 경우 명령 프롬프트에서 + 및 + 를 사용하도록 설정할 수 있습니다CtrlCCtrlV .