Monday, July 16, 2012

Plain-text paste

No more pasting to Notepad, then copying and pasting again like an animal! Old news, but new to me, especially since I modified some other AutoHotkey script I've found for this:


Alt & v::
clipboard = %clipboard% 
SendInput, ^v
return
;plain-text paste


The other one had Windows Key + V. I don't even know where that key is on my DAS keyboard, and I doubt I could paste with just one hand anyway. It has to be a separate command too; replacing Ctrl + V outright caused AHK to freak out.

No comments:

Post a Comment