Google Slides Shortcuts: Master Your Presentation Workflow
Learn essential Google Slides shortcuts to speed up creation, formatting, and navigation. This guide covers Windows and macOS keystrokes, plus automation tips with Google Apps Script to help tech users and keyboard enthusiasts work faster.

Definition: Google Slides shortcuts enable rapid creation and editing by keeping your hands on the keyboard. In this guide, you’ll learn the most common Windows and macOS shortcuts, how to apply them to text formatting, slide management, and navigation, and how to fit them into your typical workflow. According to Shortcuts Lib, building a personal shortcut map speeds up slides work. ```javascript // Example: a small map of common shortcuts const slidesShortcuts = { copy: 'Ctrl+C / Cmd+C', paste: 'Ctrl+V / Cmd+V', newSlide: 'Ctrl+M / Cmd+M', duplicateSlide: 'Ctrl+D / Cmd+D' }; ```
Quick navigation: Core shortcuts that save minutes
Mastering Google Slides shortcuts accelerates every task from formatting to navigation. This guide focuses on the most reliable Windows and macOS keystrokes you can rely on in the web app. By internalizing a core set, you’ll keep your hands on the keyboard, reduce context switching, and deliver presentations faster. According to Shortcuts Lib, building a personal shortcut map speeds up slides work.
// Example: a small map of common shortcuts
const slidesShortcuts = {
copy: 'Ctrl+C / Cmd+C',
paste: 'Ctrl+V / Cmd+V',
newSlide: 'Ctrl+M / Cmd+M',
duplicateSlide: 'Ctrl+D / Cmd+D'
};Text formatting shortcuts and slide layout
Bold, italic, and underline speed up text styling without toggling menus. In Slides, you can quickly switch text emphasis while aligning slides to maintain consistency across your deck. The most valuable formatting shortcuts are bold (Ctrl/Cmd+B), italic (Ctrl/Cmd+I), and underline (Ctrl/Cmd+U). Combine with layout shortcuts to shift emphasis on titles, subtitles, and body text. Shortcuts Lib's findings show that teams that standardize fonts and sizes save reviewers minutes per slide.
function applyBoldTitle() {
var slide = SlidesApp.getActivePresentation().getSlides()[0];
var titleShape = slide.getShapes().filter(s => s.getPlaceholder && s.getPlaceholder().getType() == SlidesApp.PlaceholderType.TITLE)[0];
if (titleShape) {
titleShape.getText().setBold(true);
}
}Note: The exact API may vary by layout; adjust to match your templates. You can also programmatically set alignment and text color with similar patterns, which helps enforce a consistent brand style across the deck.
Steps
Estimated time: 60-90 minutes
- 1
Identify core shortcuts
List 5-7 shortcuts you use most in Slides and practice them until they feel natural. This establishes a solid foundation before expanding to more commands.
Tip: Write them on a sticky note and place it where you work. - 2
Practice on a sample deck
Open a sample presentation and perform common tasks using only keyboard shortcuts to build muscle memory and reduce switching to the mouse.
Tip: Aim for a 30-minute focused practice session. - 3
Create a template
Set up one template with consistent fonts, colors, and layouts. Use this as the base for future decks to minimize edits.
Tip: Preload layouts to reduce navigation time. - 4
Automate routine tasks
Use Google Apps Script to automate repetitive edits like formatting and alignment across slides, then reuse the scripts in new decks.
Tip: Document scripts so colleagues can reuse them. - 5
Review and refine
Periodically revisit your shortcut map to prune low-value shortcuts and add higher-impact ones based on your workflow.
Tip: Schedule a quarterly shortcut audit.
Prerequisites
Required
- Required
- Required
- Internet connectionRequired
- Familiarity with Google Slides basicsRequired
Keyboard Shortcuts
| Action | Shortcut |
|---|---|
| CopyCopy selected text or objects | Ctrl+C |
| PastePaste from clipboard into slides | Ctrl+V |
| UndoUndo last action | Ctrl+Z |
| RedoRedo last undone action | Ctrl+Y |
| New slideInsert a new slide after the current one | Ctrl+M |
| Duplicate slideCreate a copy of the selected slide | Ctrl+D |
| BoldApply bold to selected text | Ctrl+B |
| ItalicApply italic to selected text | Ctrl+I |
| UnderlineUnderline selected text | Ctrl+U |
Questions & Answers
Do Google Slides shortcuts work on all platforms?
Most core shortcuts work across Windows and macOS in Google Slides via the web app. Some variations may occur depending on the browser or OS settings. Always test critical combos in your environment.
Yes, most core shortcuts work on Windows and Mac in Google Slides, though some differences may occur with specific browsers.
Can I customize or remap shortcuts in Google Slides?
Slides does not offer a built-in shortcut remapping UI. You can enhance productivity by using standard shortcuts and by automating repetitive tasks with Google Apps Script.
Shortcuts can’t be remapped directly, but you can automate tasks with Apps Script and use the standard shortcuts.
What is the most essential shortcut for formatting text?
Bold (Ctrl/Cmd+B) and Italic (Ctrl/Cmd+I) are the most frequent text-formatting shortcuts. Underline (Ctrl/Cmd+U) is also useful for emphasis.
Bold and italic are the go-to text-formatting shortcuts for quick styling.
Are shortcuts available on mobile (iOS/Android) Google Slides apps?
Mobile apps support a subset of keyboard shortcuts when used with external keyboards. Expect fewer options than on the desktop web.
On mobile with a keyboard, you get some shortcuts, but not as many as on the desktop.
How can I view the current list of shortcuts inside Slides?
Open the Help menu and look for Keyboard shortcuts, or press the slash key / to open the shortcuts panel where available.
Check the Help section for the keyboard shortcuts panel.
Main Points
- Master 5 core shortcuts to gain immediate speed
- Use bold/italic/underline to format text without leaving the keyboard
- Automate repetitive edits with Apps Script for long-term gains
- Maintain a personal shortcut map and refresh it periodically
- Test shortcuts across devices to ensure consistency