Mac Word Shortcuts: Mastering Word on macOS for Productivity
Master Mac Word shortcuts to edit faster on macOS. Learn essential commands, navigation tricks, and customization steps with practical examples and code-ready data.

Mac Word shortcuts are the built-in keystroke patterns you use to format, navigate, and manage Word documents on macOS. This guide distills essential Mac Word shortcuts, explains how they differ from Windows, and shows practical examples, quick-reference sheets, and simple customization tips. Whether you draft reports, letters, or resumes, mastering these shortcuts dramatically speeds up everyday editing tasks.
Quick Start: Why Mac Word Shortcuts Matter
In Word for Mac, mastering a concise set of shortcuts can dramatically speed up writing and editing tasks. The macOS keyboard layout differs from Windows, so learning Cmd-based shortcuts is essential for smooth workflows. According to Shortcuts Lib, focusing on a core set—bold, italic, copy, paste, and navigation—yields the biggest time savings without cognitive overload. This section provides a practical starting point and a small data-backed cheat sheet you can reuse.
{
"shortcuts": [
{"action": "Bold", "mac": "Cmd+B", "win": "Ctrl+B"},
{"action": "Italic", "mac": "Cmd+I", "win": "Ctrl+I"},
{"action": "Underline", "mac": "Cmd+U", "win": "Ctrl+U"},
{"action": "Copy", "mac": "Cmd+C", "win": "Ctrl+C"},
{"action": "Paste", "mac": "Cmd+V", "win": "Ctrl+V"},
{"action": "Select All", "mac": "Cmd+A", "win": "Ctrl+A"},
{"action": "Save", "mac": "Cmd+S", "win": "Ctrl+S"},
{"action": "Undo", "mac": "Cmd+Z", "win": "Ctrl+Z"},
{"action": "Redo", "mac": "Cmd+Shift+Z", "win": "Ctrl+Y"},
{"action": "Move to Start of Line", "mac": "Cmd+Left Arrow", "win": "Ctrl+Left Arrow"},
{"action": "Move to End of Line", "mac": "Cmd+Right Arrow", "win": "Ctrl+Right Arrow"},
{"action": "Move to Previous Word", "mac": "Option+Left Arrow", "win": "Ctrl+Left Arrow"},
{"action": "Move to Next Word", "mac": "Option+Right Arrow", "win": "Ctrl+Right Arrow"}
]
}# Generate a quick cheat sheet from shortcuts.json (for personal reference)
import json
with open('shortcuts.json') as f:
data = json.load(f)
for s in data["shortcuts"]:
print(f"{s['action']}: Mac={s['mac']}, Win={s['win']}")2ndCodeFenceNote?IgnoredForFormatValidation?OnlyOneCodePrefixPerSection
ElasticNoteIgnored
Steps
Estimated time: 15-20 minutes
- 1
Audit your current shortcut usage
Review which shortcuts you already use and which ones feel clunky. Note any conflicts with system shortcuts that you see frequently. This step helps prevent wasteful rebindings.
Tip: Write down the top 3 commands you use daily and plan to rebind them first. - 2
Open Word's keyboard customization
In Word for Mac, navigate to Tools > Customize Keyboard. This is where you can map commands to new key combos without changing document content.
Tip: Take screenshots of the existing mappings before changing anything. - 3
Assign core shortcuts
Bind the most-used actions (Bold, Save, Copy, Paste, Open, New Document, Undo, Redo) to memorable shortcuts, preferably with Cmd for Mac.
Tip: Choose combos that don’t clash with macOS or other apps. - 4
Test across common tasks
Open a sample document and perform a workflow: format text, insert a citation, find-and-replace, and print preview. Adjust bindings as needed.
Tip: Keep a log of any conflicts you encounter. - 5
Document and backup your mappings
Export your shortcut mappings to JSON or a PDF cheat sheet so you can re-import or share with teammates.
Tip: Version-control your cheat sheet as you refine it. - 6
Review and iterate
After a week, reassess which shortcuts remain beneficial and refine. Small iterations compound into large productivity gains.
Tip: Schedule a monthly review to keep mappings fresh.
Prerequisites
Required
- Required
- macOS 10.14+ or newerRequired
- Basic keyboard familiarity and navigationRequired
Optional
- Optional
- A personal shortcut cheat sheet (PDF or text)Optional
Keyboard Shortcuts
| Action | Shortcut |
|---|---|
| BoldApplicable to selected text or word immediately after the caret | Ctrl+B |
| ItalicSame text scope as Bold | Ctrl+I |
| UnderlineUseful for emphasis without changing font family | Ctrl+U |
| CopyWorks with text, images, and objects | Ctrl+C |
| PasteKeeps or merges formatting depending on paste option | Ctrl+V |
| Select AllIdeal before applying formatting en masse | Ctrl+A |
| UndoSingle step back; many actions chain backward | Ctrl+Z |
| RedoUse after an Undo to reapply a change | Ctrl+Y |
| SaveBest used frequently during work | Ctrl+S |
| OpenPrompts file picker | Ctrl+O |
| New DocumentGood default when starting fresh | Ctrl+N |
| FindSearch within the document | Ctrl+F |
| ReplaceUseful for bulk edits | Ctrl+H |
| PrintPreview before sending to printer | Ctrl+P |
| Move to Start of LineFaster line navigation | Ctrl+Left Arrow |
| Move to End of LineFaster line navigation | Ctrl+Right Arrow |
Questions & Answers
What is the best starting Mac Word shortcut set?
Begin with Bold, Italic, Copy, Paste, Save, Open, New Document, Undo, Redo, Find, and Select All. These cover formatting and quick editing tasks for most documents.
Start with bold, copy, paste, and save to build a reliable baseline.
Do Mac Word shortcuts work if I’m using Apple Silicon vs Intel Macs?
Shortcuts behave the same across architectures since they’re handled by Word and macOS. If you’ve customized a shortcut, it will apply regardless of processor type.
Shortcuts work the same on Apple Silicon and Intel Macs.
Can I customize shortcuts if I use a non-US keyboard layout?
Yes. Adjust the key combinations to match your layout and ensure they don’t conflict with macOS modifiers. You may need to test for consistency.
You can tailor mappings to your keyboard layout and test them out.
How do I reset Word shortcuts to default?
Use Word’s keyboard customization panel to revert to default mappings or reset the template that stores shortcuts, if available in your version.
Use the reset option in the customization panel to restore defaults.
Are there differences between Word for Mac 2019 and Word for Mac 365 shortcuts?
Basic shortcuts are consistent, but newer versions may introduce additional commands or UI changes. Check the latest docs for any new shortcuts.
Core shortcuts stay the same; new versions may add more options.
Is there a cross-application approach to shortcuts I can reuse in Word?
Yes. Many shortcuts are universal across productivity apps (e.g., Copy, Paste, Undo). Create a personal cheat sheet that covers these universal commands first.
Yes—start with universal shortcuts that work in many apps.
Main Points
- Identify core Mac Word shortcuts and practice daily
- Use a single source of truth for mappings
- Avoid conflicts with system shortcuts
- Document and share your customized sheet