Five Simple Errors to Look For in Your Writing
Discover how to use Microsoft Word to find and fix these common issues.
Wish you could get things done more quickly in Word? Shortcuts can help.

Getting your text into the best possible shape before you send it to an editor or proofreader can save you money, because it saves them time. If you’re using Microsoft Word, you can eliminate the issues covered in this post quickly and easily, once you’ve got the hang of a few tricks. I’ll start by covering each problem, and then share some tips to deal with them.
Spaces
Extra spaces are easily typed by accident, so they’re worth looking out for. Double (or triple) spaces are the most common issue, but they’re good at hiding before or after a carriage return (¶) too.
Nonbreaking spaces
These little beasties can appear sometimes, especially if you transfer a document from one program to another (e.g. Scrivener/Google Docs/Apple Pages to Word). They look like small circles when you show formatting marks.
They keep two or more words on the same line, which can be useful for things like measurements (e.g. 150 ml). However, if you didn’t intend for them to be there, it’s best to delete them due to potential line spacing issues.

What if I want double spaces?
In the days of typewriters, it was normal to put two spaces after a sentence, and some people still insist on doing so. However, styles have changed, and both the New Oxford Style Manual (section 2.5.1) and The Chicago Manual of Style (17th edition, section 2.9) recommend a single space. This is worth bearing in mind, especially as it makes finding and replacing all incorrect instances much easier and quicker. (Replace All can be magic when used carefully!)
Carriage Returns
Do you use lots of carriage returns (¶) to get to a new page? Don’t be afraid to admit it, but do start using page breaks instead. Doing this and squashing those extra returns will prevent some nasty surprises when you come to format your document for publication. (The number of pages will likely change, and that would mean you’d get large sections of blank space in unexpected places.)
Soft Returns
These look like bent arrows, and can cause some interesting formatting issues when they’ve been added accidentally. (See the word spacing in the image below.) If you haven’t added them deliberately and for a good reason, replacing them with normal carriage returns will be best.

Tabs
→ Tabs look like straight arrows, and some people use them to indent paragraphs. However, that doesn’t mean it’s the best way to do things! Using your word processor’s styles feature to automatically create indents is much better, especially when it comes to exporting your document for formatting.
Ellipses
Do you… type these . . . as three dots…or as a single symbol? What about spacing on either side of/between the dots?
Style manuals often like … spaced ellipses (see the New Oxford Style Manual, section 4.7. The Chicago Manual of Style has a lot to say about them; see sections 13.50–13.58). I’m a fan of them being attached to the preceding word… like this. Even editors deviate from style manuals sometimes!
Whatever you do, consistency is key.
Rogue Straight Quotes
These love to creep in. I’ve occasionally found Word adding them as I’ve been typing, even if I’ve specified curly quotes. There are some cases where you want straight ones regardless – they can be essential for some computer coding, for example – but with a lot of fiction you’ll just want everything to be consistent.
Tricks for Finding Issues
Wildcards
These are special characters that supercharge finding and replacing things. You have to enable them, so here are some instructions.
To turn wildcards on in Word for Windows, go to Options in your search navigation pane, or press ctrl-H and click More. You can check Use wildcards from there.
In Word for Mac, press ctrl-H/cmd-shift-H, and choose Advanced Find & Replace from the settings beneath the Find box. The dropdown menu at the bottom left will allow you to enable wildcards.
Want a quicker way? If you’re familiar with macros for Word, here’s a simple one I wrote to toggle wildcards on and off. Assign it to a shortcut such as alt-shift-W and it’s very quick to use!
WildcardToggle
Sub WildcardToggle()
'Toggles wildcard searches on or off.
'Also shows whether they're on or off
'in the status bar at the bottom left of the screen.
Selection.Find.MatchWildcards = Not Selection.Find.MatchWildcards
If Selection.Find.MatchWildcards = True Then
StatusBar = "Wildcards on"
Else
StatusBar = "Wildcards off"
End If
End Sub
Microsoft Word Search Codes
Except where marked, everything should work on for PCs and Macs. Remember to switch your wildcards on! Whenever you need to type a space, I’ll type SPACE so it’s easy to see. (E.g. if I typed SPACESPACE, you’d need to hit the space bar twice in your find/replace box.)
Important! When using wildcards, use ^13 in the find box to find carriage returns (¶). Only ever use ^p for carriage returns in the replace box, as ^13 can cause formatting issues for some reason. It’s a very good idea to save and back up your work before making any changes in any case.
- Nonbreaking spaces: ^s
- Soft returns: ^l
- Spaces before paragraph marks: SPACE{1,}^13
- Replace: ^p
- Spaces at beginnings of lines: ^13SPACE{1,}
- (At least) double spaces: SPACE{2,}
- Tabs: ^t
- (At least) double paragraphs: ^13{2,}
Ellipses
Windows: Alt-0133
Mac: option-;
There are a surprising number of possibilities with ellipses. The trick is to choose the style you like, and change anything that doesn’t fit with that. Here are some possibilities:
- Symbol…closed up: [! ^s]…[! ^s]
- Symbol … spaced: [ ^s]…[ ^s]
- Symbol… closed at front: [! ^s]…[ ^s]
- Instead of the symbol, you can also search for three dots (…) or three spaced dots (.[ ^s].[ ^s].). Simply replace the ellipses in the above searches with those, and you’re good to go.
- If you use spaced dots, they need to appear on the same line. Remember our friend the nonbreaking space? That’s one place where you do want to use them. Remove any unwanted nonbreaking spaces before dealing with ellipses, so they don’t accidentally get deleted when you add them.
A global find and replace can be tricky with ellipses, especially as even the spaced ones need to go next to some punctuation, like closing quote marks. Being able to find them quickly will still save you some time, though.
Need to type or search for a specific quote mark/apostrophe? Check below for a list of codes.
Windows
- Straight quote: alt-39 (to type)/^39 (to find)
- Straight double quote: alt-34/^34
- Opening double curly quote: alt-0147/^0147
- Closing double curly quote: alt-0148/^0148
- Opening single curly quote: alt-0145/^0145
- Closing curly quote/apostrophe: alt-0146/^0146
The alt codes above only work with the right-hand keypad. Press numlock to enable them if they’re not working.
Mac
- Straight apostrophe:
'
- Straight double quote:
"
- Opening double curly quote: option-[
- Closing double curly quote: option-shift-[
- Opening single curly quote: option-]
- Closing curly quote/apostrophe: option-shift-]
Need any help with a specific find/replace? Want to share a find/replace you couldn’t do without? Email philridgers@gmail.com or comment below!
Leave a Reply