Is there a keyboard shortcut for pasting the content of the clipboard into a command prompt window on Windows XP (instead of using the right mouse button)?
The typical Shift+Insert does not seem to work here.
|
Is there a keyboard shortcut for pasting the content of the clipboard into a command prompt window on Windows XP (instead of using the right mouse button)? The typical
| |||||
feedback
|
|
I personally use a little AutoHotkey script to remap certain keyboard functions, for the console window (CMD) I use:
| |||||||||||||||
feedback
|
|
Yes.. but awkward. Link ALT+SPACE+E+K <-- for copy . and | |||||||||||
feedback
|
|
Not really programming related, but I found this on Google, there is not a direct keyboard shortcut, but makes it a little quicker. To enable or disable QuickEdit mode:
To Copy text when QuickEdit is enabled:
To Paste text when QuickEdit is enabled:
To Copy text when QuickEdit is disabled:
To Paste text when QuickEdit is disabled:
| |||||||
feedback
|
|
Thanks Pablo, just what I was looking for! However, if I can take the liberty of improving your script slightly, I suggest replacing your ^V macro with the following:
The advantage of using SendInput is that (i) it doesn't rely on the command prompt system menu having an "Alt+Space E P" menu item to do the pasting (works for English and Spanish, but not for all languages) and (ii) it avoids that nasty flicker you get as the menu is created and destroyed. Note, it's important to include the "{Raw}" in the SendInput command, in case the clipboard happens to contain "!", "+", "^" or "#". Note, it uses StringReplace to remove excess Windows carriage return characters. Thanks hugov for that suggestion! | ||||
|
feedback
|
|
This is not really a shortcut but just a quick access to the control menu: Alt-space E P If you can use your mouse, right click on the cmd window works as paste when I tried it. | |||
|
feedback
|
|
You could try using Texter and create something unlikely like: ./p , triggered by space and replacing the text with %c I just tested it and it works fine. The only gotcha is to use a rare sequence, as Texter cannot restrict this to just cmd. There are probably other utilities of this kind which could work, and even AutoHotKey, upon which Texter is built could do it better, but Texter is easy :-) | |||
|
feedback
|
|
Thanks, Pablo, for referring to AutoHotkey utility. Since I have Launchy installed which uses Alt+Space I had to modify it a but to add Shift key as shown:
| |||
|
feedback
|
|
@Huw Thanks for the suggestion, I had just implemented some of these terminal shortcuts after having CTRL+L != cls Here's how I did it: http://josetrigueros.com/blog/?p=8 Also used AutoHotkey | |||
|
feedback
|
|
A simpler way is to use windows powershell instead of cmd. itworks fine with texter. | |||
|
feedback
|
|
I've recently found that command prompt has support for context menu via the right mouse click. You can find more details here: http://www.askdavetaylor.com/copy_paste_within_microsoft_windows_command_prompt.html | |||
|
feedback
|
|
Under VISTA Command prompt: Click on the System Icon Select Defaults from the Menu On the Options tab in the Options group I have "Quick Edit Mode", "Insert Mode", and "Auto Complete" selected I think that "Quick Edit Mode" is what makes it work. To paste whatever is in the Clipboard at the insertion point: Right Click. To copy from the Command Window Select by holding down the left mouse button and dragging the pointer across what you want to copy Once selected, right click To paste at the insertion point, right click again. | |||
|
feedback
|