AutoHotKeyをインストールして、以下のファイルを実行・常駐させれれば、コマンドプロンプト上で CTRL+Vで貼り付けができるようになります。
paste_commandprompt.ahk
# IfWinActive ahk_class ConsoleWindowClass
^v::
keywait, ctrl
Send, !{SPACE}ep
return
# IfWinActive
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
AutoHotKeyをインストールして、以下のファイルを実行・常駐させれれば、コマンドプロンプト上で CTRL+Vで貼り付けができるようになります。
# IfWinActive ahk_class ConsoleWindowClass
^v::
keywait, ctrl
Send, !{SPACE}ep
return
# IfWinActive
Register as a new user and use Qiita more conveniently
Go to list of users who liked