Master Mac Keyboard Shortcuts for Word

Master essential mac keyboard shortcuts word in Word for Mac with practical tips, customization steps, and code examples to boost editing speed for Mac users in daily work.

Shortcuts Lib
Shortcuts Lib Team
·5 min read
Mac Word Shortcuts - Shortcuts Lib
Photo by Pexelsvia Pixabay
Quick AnswerFact

Quick answer: Use the core Mac shortcuts in Word to speed up drafting: Cmd+C for copy, Cmd+V for paste, Cmd+B for bold, Cmd+F to find, Cmd+N to start a new document, and Cmd+S to save. For longer workflows, combine these with Word-specific shortcuts like Cmd+Shift+S for Save As and Cmd+Option+I for Italic. This article covers the mac keyboard shortcuts word landscape and customization options.

Quick Start: Essential Mac Shortcuts in Word

Mac Word shortcuts can dramatically speed up writing and formatting. Start with the basics to build muscle memory: copy, paste, cut, undo, and save. Then layer on formatting and navigation so you can stay focused on ideas, not menus. To get hands-on quickly, open a document and try a few examples below.

Bash
# Open Word on macOS and load a sample document open -a 'Microsoft Word' ~/Documents/Sample.docx
VB
' Sub BoldSelection() Selection.Font.Bold = True End Sub
APPLESCRIPT
-- Toggle bold for the current selection in Word tell application "Microsoft Word" to activate tell application "System Events" to keystroke "b" using {command down}

Note: These snippets demonstrate how to start automating routine edits and how to trigger Word actions via the macOS shell, VBA, or AppleScript.

Steps

Estimated time: 60-90 minutes

  1. 1

    Install and verify Word for Mac

    Ensure Word is installed and updated. Open Word and create a new document to confirm the UI responds to Cmd shortcuts.

    Tip: Check for the latest update to ensure keyboard shortcuts behave as expected.
  2. 2

    Learn core editing shortcuts

    Memorize Copy, Paste, Cut, and Undo in Mac Word (Cmd+C, Cmd+V, Cmd+X, Cmd+Z). Practice selecting text with the mouse and using Command shortcuts to edit without removing sight from your document.

    Tip: Try a 5-minute daily drill focusing on one or two shortcuts at a time.
  3. 3

    Format efficiently with shortcuts

    Combine formatting shortcuts (Bold, Italic, Underline) with selection methods to style text rapidly.

    Tip: Use Command+Shift+S to access Save As for different versions or copies.
  4. 4

    Navigate and find fast

    Navigate through long documents with keyboard shortcuts and use Find (Cmd+F) to locate sections instantly.

    Tip: Pair Find with Replace in future steps for batch edits.
  5. 5

    Explore automation for repetitive tasks

    Leverage VBA macros or AppleScript to apply recurring formatting or insert blocks of text with a keystroke.

    Tip: Start with a simple macro to format a paragraph style, then expand to more complex actions.
  6. 6

    Review, adjust, and persist

    Regularly review shortcuts you rely on and adjust your workflow. Create a quick-reference sheet for your most-used commands.

    Tip: A personal cheatsheet helps reinforce memory and reduce errors.
Pro Tip: Group shortcuts by task type (editing, formatting, navigation) to build muscle memory faster.
Warning: Relying solely on shortcuts can hurt readability; use them alongside visible formatting for clarity.
Note: On Mac, some shortcuts may vary by Word version; verify in Word > Preferences > Keyboard Shortcuts.

Prerequisites

Required

Optional

  • Basic familiarity with AppleScript or VBA (optional for automation)
    Optional

Keyboard Shortcuts

ActionShortcut
CopyBasic text copy in any Word documentCtrl+C
PasteInsert clipboard contents at cursorCtrl+V
CutRemove selection to clipboardCtrl+X
BoldToggle bold formattingCtrl+B
ItalicToggle italic formattingCtrl+I
UnderlineToggle underline formattingCtrl+U
FindSearch document textCtrl+F
SaveSave current documentCtrl+S
New DocumentCreate a new documentCtrl+N
OpenOpen an existing documentCtrl+O
UndoUndo last actionCtrl+Z
RedoRedo last undone actionCtrl+Y
Zoom InAdjust zoom levelCtrl+Wheel
Zoom OutAdjust zoom levelCtrl+-

Questions & Answers

How do I customize keyboard shortcuts in Word for Mac?

Word for Mac provides a built-in Keyboard Preferences pane where you can reassign shortcuts. Access Word > Preferences > Keyboard Shortcuts, then assign a macro or command to a preferred key combination. For automation, you can pair macros with shortcuts through VBA or AppleScript.

You can customize shortcuts in Word for Mac through Preferences, then map a macro to a key combo.

Do Mac Word shortcuts differ from Windows Word shortcuts?

Many core shortcuts are shared (copy, paste, cut, undo). Differences exist for modifier keys (Cmd on Mac vs Ctrl on Windows) and some formatting keys. Always confirm on your platform in Word’s help or Settings.

Most basics line up, but Cmd on Mac replaces Ctrl on Windows, and a few commands differ in syntax or availability.

What is the quickest way to format text as bold on Mac Word?

Select text and press Cmd+B to apply or remove bold formatting. This mirrors Windows Ctrl+B but uses the Mac command key. You can combine with other formatting shortcuts for rapid styling.

Cmd+B applies bold to the selected text, quickly changing emphasis.

Can I toggle formatting like italics via shortcuts?

Yes. Use Cmd+I to toggle italics on the selected text. You can also use Cmd+U for underline and Cmd+B for bold to format text quickly without navigating menus.

Cmd+I toggles italics on your selection.

How do I start a new document in Word for Mac using a shortcut?

Use Cmd+N to create a new document. This is a universal shortcut across many Mac apps and is especially handy when composing new content.

Cmd+N creates a brand-new document instantly.

Main Points

  • Learn core Mac shortcuts (Cmd+C/V/X, Cmd+S) for fast editing
  • Combine formatting shortcuts to style text quickly
  • Use Find (Cmd+F) and Zoom (Cmd+= / Cmd+-) to navigate documents
  • Leverage macros or AppleScript to automate repetitive tasks

Related Articles