Is there a way to automatically add a period after two spaces in Word?

2

0

There is no easy way to implement an AutoCorrect that replaces two spaces (" ") with a period and a space (". ") the way smart phones work.

Is there some other alternative method I could possibly implement?

The only reason I am asking is because at work while typing documents, I frequently make this mistake out of habit from typing on my iPhone.

Ryan Ward

Posted 2013-09-25T16:29:47.897

Reputation: 404

Answers

2

Probably not while you're typing, but when you get done you could do a find and replace and replace every instance of "space space" with "period space space"

phipywr

Posted 2013-09-25T16:29:47.897

Reputation: 54

1

Install AutoHotKey

Put this code in a text file, with extension .ahk rather than .txt, and run with AutoHotKey, either through file association or dragging the script onto the AHK executable

:*:  ::{NumpadDot}{space}

Now every time you type double space in any program, you'll get period then space instead. You can add the script to your windows start up folder if it is associated with the AHK program. You can suspend the script in the tray if you need to type double spaces for a while.

Edit: If you have trouble with auto running the script on windows start, you could make a batch file like this (replacing the file paths of course):

"C:\[path]\AutoHotKey\Program\AutoHotkey.exe" "C:\Users\[path]\double space.ahk"

Sir Adelaide

Posted 2013-09-25T16:29:47.897

Reputation: 4 758