This blog recommends a combination of standard Word shortcuts and a few basic macros (with recommended shortcut keys) to help a copyeditor navigate efficiently within a Word window and edit with a clear focus. This involves a one-time set up and may benefit both new and experienced editors.
The description is for a Windows PC. You may be able to do this on a Mac (as the recommendations are pretty basic), but you may have to use the appropriate alternative keys on the Mac.
While responding to a Facebook post in one of the editorial groups, I'd mentioned that becoming competent at Word would involve three stages:
I'd also mentioned that many editors skip the first step without realizing that it can help them pick up the other two in a better way (than without it).
It’s quite possible that you may not be able to visualize the power and confidence Windows and Word shortcuts can provide in your daily work life. The sheer number of useful shortcuts (see download at (https://www.theartofcopyediting.com/lp-essential-windows-and-word-shortcuts) can itself be daunting to many! Plus, you have the mouse—it seems such a nice thing to hold on to when you're already battling your editorial confusions!
I felt that a small set of practical recommendations (of the greatest use in daily editing) can help editors overcome the initial hesitations and get a first-hand experience of the power of Word shortcuts and also learn how they can help in maintaining focus on what they're doing.
For this, the most natural choice may be Word navigation. But navigation in Word can mean many things, such as going to a particular page, section, table, or figure, or finding a particular word or expression. But, for our purposes, I'm going to confine our navigation to just one screen of a Word document and show what wonders we can do within that one screen.
Trust me, both new and experienced editors may benefit from what follows. Simply try out these in any Word document. I guarantee that you'll be pleasantly surprised.
Just imagine the setting:
During this process, you may
To do these actions, you'll have to
To navigate to these points, you have the following built-in aids (shortcuts) in Word:
Jack Lyon mentioned this hidden function in Word in his book Microsoft Word for Publishing Professionals as early as 2008.
Geoff Hart outlined a macro for these actions in an article in 2011.
VBA code to move to the next punctuation mark
Sub MoveToNextPunctuation()
' Selects the next punctuation mark
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "[,.;:\?\!\(\)-]"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
End With
Selection.Find.Execute
End Sub
VBA code to move to the previous punctuation mark
Sub MoveToPreviousPunctuation()
' Selects the previous punctuation mark
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "[,.;:\?\!\(\)-]"
.Replacement.Text = ""
.Forward = False
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
End With
Selection.Find.Execute
End Sub
Open the Customize Keyboard dialog box (File, Options, Customize Ribbon, Keyboard shortcuts, Customize).
Now scroll down on the left panel and select Macros.
On the Commands panel (on the right), find the macros you just added and assign Ctrl + Alt + right arrow and Ctrl + Alt + left arrow as the shortcuts to move to the next/previous punctuation marks.
Close the dialog box and test the shortcuts on a Word document.
When you press Ctrl + Alt + right arrow, the cursor will select the next punctuation mark (and you can change it to whatever you want). When you keep both the keys pressed, the cursor will move to successive punctuation marks. You will see a similar thing (but in the opposite direction) when you press the Ctrl + Alt + left arrow key.
For this we use a macro written by Allen Wyatt (https://wordribbon.tips.net/T008336_Jumping_to_the_End_of_a_Word). I'm providing the macro here just for convenience.
Copy and paste the macro given below into the VBA window (Alt + F11), save, and close the window.
VBA code to move to the end of a word
Sub MoveToEndOfWord2()
' Macro by Allen Wyatt, updated January 22, 2022
' The 2 at the end of the name is simply an identifier used by Allen. You can remove the 2 if you want
If Selection.Text = " " Then
Selection.MoveRight Unit:=wdWord, Count:=1
End If
Selection.MoveRight Unit:=wdWord, Count:=1
Selection.MoveLeft Unit:=wdCharacter, Count:=1
If Selection.Text <> " " Then
Selection.MoveRight Unit:=wdCharacter, Count:=1
End If
End Sub
Open the Customize Keyboard dialog box (File, Options, Customize Ribbon, Keyboard shortcuts, Customize).
Scroll down and select All Commands.
On the Commands panel (on the right), select WordRight. You will see that it has the shortcut Ctrl + right arrow already assigned to it. Remove it.
Now scroll down on the left panel and select Macros.
On the Commands panel (on the right), find the macro you just added and assign Ctrl + right arrow as its shortcut.
Close the dialog box and test the shortcut on a Word document.
When you press Ctrl + right arrow, the cursor will move to the end of the word in the right direction. When you keep both the keys pressed, the cursor will move to the end of every successive word. You have now overridden Word's normal behavior (for this particular shortcut) to your advantage.
When you press Ctrl + left arrow, the cursor will move to the beginning of the word in the left direction. When you keep both the keys pressed, the cursor will move to the beginning of every previous word. This is normal behavior in Word.
Earlier, you had two keys performing the same function in Word (going to the beginning of words) in different directions. Now you have one key (Ctrl + left arrow) taking you to the beginning of a word in the left direction, and the other key (Ctrl + right arrow) taking you to the end of a word in the right direction. You can now use these keys in combination to go to the beginning or end of any word.
For this, we use the JumpScroll macro provided by Paul Beverley (https://www.wordmacrotools.com/macros/J/JumpScroll.txt). For convenience, I'm reproducing the macro below.
Copy and paste the JumpScroll macro into a VBA window (Alt + F11), save, and close the window.
VBA code to move the current line to the top of the screen
Sub JumpScroll()
' Paul Beverley - Version 08.10.18
' Scrolls current line to the top of the page
Set rng = Selection.range.Duplicate
ActiveDocument.ActiveWindow.LargeScroll down:=2
rng.Select
ActiveDocument.ActiveWindow.SmallScroll down:=1
End Sub
Open the Customize Keyboard dialog box (File, Options, Customize Ribbon, Keyboard shortcuts, Customize).
Scroll down and select All Commands.
On the Commands panel (on the right), select EndOfWindow. You will see that it has the shortcut Ctrl + Alt + PgDn already assigned to it. Remove it.
Now scroll down on the left panel and select Macros.
On the Commands panel (on the right), find the JumpScroll macro and assign Ctrl + Alt + PgDn as its shortcut.
Close the dialog box and test the shortcut on a Word document.
When your cursor is on the last line of the screen and you press Ctrl + Alt + PgDn, the line will simply move to the top of the screen, and you can now continue to edit in a focused manner. (If the sentence on the last line of the screen continues beyond the visible screen, you may want to use the Dn arrow once before using the shortcut key.)
The table below summarizes the wonderful things possible when you implement all the recommendations in this article.
Much thought has gone into the shortcut recommendations. You'll find that you are able to achieve a lot with a simple combination of the same familiar keys.
In case you've already assigned any of these keys to some other function, or if any Word Add-in you've installed uses any of these keys for some other function, you'll have to figure out how else you can make these suggestions work. You can take a print (PDF) of your custom shortcut keys—Ctrl P and then scroll under Settings to choose Custom shortcut keys and then choose Microsoft Print to PDF under Printer—to analyze them and then decide which shortcut keys to use.
Once you set up the macros/shortcuts and try out the methods described here, you'll discover that you're able to edit
and that you now enjoy the editing process—something you may not have thought of (Advantage 3).
Feel free to let me know your thoughts after you test these recommendations (use the comments section below).
Receive information on new courses, offers, and downloads