Skip to Main Content

Better Paste Takes the Annoyance out of Pasting Formatted Text


Windows only: Better Paste is a simple, lightweight application (or AutoHotkey script) that tweaks the default Ctrl+V paste shortcut such that it pastes plain text every time; if you want formatted text, simply hit Ctrl+Shift+V.

Photo by me and the sysop.

A little background behind the motivation: I hate formatted text when it comes time to sit down and do a serious session of copying and pasting. I rarely if ever want to retain formatting when I'm pasting something to a different destination, but for some reason it's the default.

Adding a shortcut to paste plain text isn't a new idea by any means—previously mentioned application PureText, for example, adds a universal hotkey to strip formatting from pastes (Win+V by default), and I suspect a lot of AutoHotkey-savvy readers are already doing something similar. Frankly, I don't want to use a special hotkey to paste plain text. I want a special hotkey for the very rare occasions that I want to paste formatted text. Hence Better Paste, a simple AHK application/script I had Dustin quickly whip up for us this afternoon.

If you're not an AutoHotkey user, you can simply download the EXE here, extract the portable application, and run it from anywhere. It doesn't have any options; it just sits quietly in your system tray, plain-textifying your pastes except when you hit Ctrl+Shift+V.

If you are an AHK user, and you simply want to add a few lines to your own script, here they are:

$^v::  ClipSaved := ClipboardAll  ;save original clipboard contents  clipboard = %clipboard%  ;remove formatting  Send   ^v  ;send the Ctrl+V command  Clipboard := ClipSaved  ;restore the original clipboard contents  ClipSaved =  ;clear the variableReturn$^+v::  Send  ^v  ;just send the regular paste commandReturn

You can also download the source here. It's nothing all that fancy, but I know I'll be much less annoyed from now on.

Better Paste