I don't know why, but I hate pressing ctrl+v and getting ^V in the powershell and cmd windows.

I always do it and then I have to back space it, out find my mouse, then right click, and select paste. Grrrrrrrrrrrrrr

Is there a (free) fix to this? Some way to say, hey, I want ctrl+V to work like the other 99.999999% of the applications out there!

link|improve this question

68% accept rate
I'm sure that can be done with AHK ... – Joey Aug 12 '10 at 22:46
@Johannes - What is AHK? – Vaccano Aug 15 '10 at 4:27
2  
AutoHotkey. – Joey Aug 15 '10 at 11:23
feedback

5 Answers

up vote 2 down vote accepted

Easy with Autohotkey:

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

Save that with an "ahk" extension and run it.

link|improve this answer
feedback

You can turn on Quick Edit mode in CMD and Powershell, this makes right mouse click into a paste (no menu fly out).

  1. Right click on the top of your shell window (either CMD or powershell)
  2. select Properties
  3. check the box for Quick Edit.

Re do the steps but select Defaults in step 2, to make sure you will have the setting permanently.

link|improve this answer
1  
Still needs a mouse. Which isn't very natural when working in the console. It's a non-issue on a laptop with a nipple mouse, but everywhere else it's a nuisance. – Joey Aug 15 '10 at 11:25
Yes, good point. Check out this for setting it up with AutoHotKey: lifehacker.com/5613776/… – Clint Aug 16 '10 at 21:48
feedback

You can try:

  1. Console2
  2. Powershell
  3. TCCLE the free version
link|improve this answer
Console2 nor Powershell have ctrl+v paste options (that I could find). If you know a way, please post it. – Vaccano Jul 26 '10 at 21:02
@Vaccano Console2 supports ctl+insert, shift+insert as copy and paste commands. They could be 'translated' to ctrl+c, ctrl+v using some Autohotkey magic. – Bas Bossink Jun 19 '11 at 18:58
feedback

I haven't tried this but:

http://pscx.codeplex.com/

There's a command for getting clipboard:

http://pscx.codeplex.com/SourceControl/changeset/view/73549#53777

You could perhaps add this to a Ctrl+V menu item and see if it works out.

link|improve this answer
feedback

You can use PowerShellIse. It uses the usual Windows Shortcuts

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.