How we can activate Ctrl+ V to give Easter in Command Prompt

Most users who were accustomed to use the keyboard shortcuts to give Copy / Paste considered as an irritant that can not use Ctrl+V and in Command PromptBut you really need to use the mouse. But the problem can be solved simply with a free applications, namely AutoHotkey.

To be able to activate Ctrl+ V in Command PromptNeed to create a AutoHotkey script you can add the :

#IfWinActive ahk_class ConsoleWindowClass 
^V:: 
SendInput {Raw}%clipboard% 
return 
#IfWinActive

This script sends it in comfort function through SendInputAnd solve eternal problem Ctrl+V vs ^V.

If you feel comfortable to use third-party applications work to make various shortcuts in Command Prompt/WindowsThen have a alternative to Ctrl+ V for Command Prompt not require a script, just something extra keys, press row:

  • type combination Alt + Space
  • tap E
  • tap P
alt-space

This key combination can save by using mouse to give Easter in command Prompt, and once you get used to it you won't find it weird to use a different combination of keys for a single application while for the rest Windowsyou will continue to use Ctrl+ V…: D

Passionate about technology, I enjoy writing on StealthSettings.com since 2006. I have a rich experience in operating systems: macOS, Windows, and Linux, as well as in programming languages and blogging platforms (WordPress) and for online stores (WooCommerce, Magento, PrestaShop).

How to » Noteworthy » How we can activate Ctrl+ V to give Easter in Command Prompt
Leave a Comment