; Remove two (or more) consecutive whitespace with one single whitespace. ; http://www.donationcoder.com/Forums/bb/index.php?topic=20557.0 ; Last Updated: 09 November 2009 #Persistent #SingleInstance force #NoEnv ;#NoTrayIcon SendMode, Input ;Win+Alt+v removes consecutive whitespaces with one single whitespace and pastes the clipboard content . #!v:: clipnospace = clipboard = %clipboard% ; change to plain text clipnospace := RegExReplace(clipboard, "` {2,}", "` ") clipboard = %clipnospace% Send ^v Return