Jetbrains CLion (Windows)

Editing Shortcuts

Indent/unindent selected lines

Tab / Shift + Tab

All hotkeys for Jetbrains CLion (Windows)

Editing Shortcuts
Basic code completion (the name of any class, method or variable)

Ctrl + Spacebar

Editing Shortcuts
Smart code completion (filters the list of methods and variables by expected type)

Ctrl + Shift + Spacebar

Editing Shortcuts
Complete statement

Ctrl + Shift + Enter

Editing Shortcuts
Parameter info (within method call arguments)

Ctrl + P

Editing Shortcuts
Quick documentation lookup

Ctrl + Q

Editing Shortcuts
Brief Info

Ctrl + Mouse over code

Editing Shortcuts
Show descriptions of error or warning at caret

Ctrl + F1

Editing Shortcuts
Generate code... (Getters, Setters, Constructors, hashCode/equals, toString)

Alt + Insert

Editing Shortcuts
Override methods

Ctrl + O

Editing Shortcuts
Implement methods

Ctrl + I

Editing Shortcuts
Surround with… (if..else, try..catch, for, synchronized, etc.)

Ctrl + Alt + T

Editing Shortcuts
Comment/uncomment with line comment

Ctrl + /

Editing Shortcuts
Comment/uncomment with block comment

Ctrl + Shift + /

Editing Shortcuts
Select successively increasing code blocks

Ctrl + W

Editing Shortcuts
Decrease current selection to previous state

Ctrl + Shift + W

Editing Shortcuts
Show Intension actions and QuickFixes

Alt + Q

Editing Shortcuts
Reformat code

Ctrl + Alt + L

Editing Shortcuts
Optimize imports

Ctrl + Alt + O

Editing Shortcuts
Auto-indent line(s)

Ctrl + Alt + I

Editing Shortcuts
Indent/unindent selected lines

Tab / Shift + Tab

Editing Shortcuts
Cut current line or selected block to clipboard

Ctrl + X

Editing Shortcuts
Copy current line or selected block to clipboard

Ctrl + C

Editing Shortcuts
Paste from clipboard

Ctrl + V

Editing Shortcuts
Paste from recent buffers...

Ctrl + Shift + V

Editing Shortcuts
Duplicate current line or selected block

Ctrl + D

Editing Shortcuts
Delete line at caret

Ctrl + Y

Editing Shortcuts
Smart line join

Ctrl + Shift + J

Editing Shortcuts
Smart line split

Ctrl + Enter

Editing Shortcuts
Start new line

Shift + Enter

Editing Shortcuts
Toggle case for word at caret or selected block

Ctrl + Shift + U

Editing Shortcuts
Select till code block end/start

Ctrl + Shift + ] / [

Editing Shortcuts
Delete to word end

Ctrl + Delete

Editing Shortcuts
Delete to word start

Ctrl + Backspace

Editing Shortcuts
Expand/collapse code block

Ctrl + NumPad + / -

Editing Shortcuts
Expand all / collapse all

Ctrl + Alt + NumPad + / -

Editing Shortcuts
Close active editor tab

Ctrl + F4

Editing Shortcuts
Place caret in Multiple Location

Alt + Shift + Click

Editing Shortcuts
Restore Single Caret Mode

Esc

Editing Shortcuts
Add/Delete Next Occurance of Current Word to Selection

Alt + G / Alt + Shift + G

Find and Replace
Search everywhere

Double Shift

Find and Replace
Find

Ctrl + F

Find and Replace
Find next/Find previous

F3 / Shift + F3

Find and Replace
Replace

Ctrl + R

Find and Replace
Find in path

Ctrl + Shift + F

Find and Replace
Replace in path

Ctrl + Shift + R

Compile and Run
Build Project

Ctrl + F9

Compile and Run
Select configuration and run

Alt + Shift + F10

Compile and Run
Select configuration and debug

Alt + Shift + F9

Compile and Run
Run

Shift + F10

Compile and Run
Debug

Shift + F9

Debugging
Step over

F8

Debugging
Step into

F7

Debugging
Step out

Shift + F8

Debugging
Run to cursor

Alt + F9

Debugging
Evaluate expression

Alt + F8

Debugging
Resume program

F9

Debugging
Toggle breakpoint

Ctrl + F8

Debugging
View breakpoints

Ctrl + Shift + F8

Live Templates
Surround with Live Template

Ctrl + Alt + J

Live Templates
Insert Live Template

Ctrl + J

Live Templates
Indexed for( ; ; ) loop

for

Live Templates
Iterate range(C++11)

iter

Live Templates
Iterate using Begin/End Member Functions

itit

Live Templates
In CMake include directions with Boost

incboost

Live Templates
In CMake create New Function Definitor

function

Navigation Shortcuts
Go to class

Ctrl + N

Navigation Shortcuts
Go to file

Ctrl + Shift + N

Navigation Shortcuts
Go to symbol

Ctrl + Alt + Shift + N

Navigation Shortcuts
Go to next/previous editor tab

Alt + Right Arrow / Left Arrow

Navigation Shortcuts
Go back to previous tool window

F12

Navigation Shortcuts
Go to editor (from tool window)

Esc

Navigation Shortcuts
Hide active or last active window

Shift + Esc

Navigation Shortcuts
Close active run/messages/find/... tab

Ctrl + Shift + F4

Navigation Shortcuts
Go to line

Ctrl + G

Navigation Shortcuts
Recent files popup

Ctrl + E

Navigation Shortcuts
Navigate backward / navigate forward

Ctrl + Alt + Left Arrow / Right Arrow

Navigation Shortcuts
Navigate to last edit location

Ctrl + Shift + Backspace

Navigation Shortcuts
Select current file or symbol in any view

Alt + F1

Navigation Shortcuts
Go to declaration

Ctrl + B

Navigation Shortcuts
Go to implementation(s)

Ctrl + Alt + B

Navigation Shortcuts
Go to related Symbol(Header/Source File)

Ctrl + Alt + Home

Navigation Shortcuts
Open quick definition lookup

Ctrl + Shift + I

Navigation Shortcuts
Go to type declaration

Ctrl + Shift + B

Navigation Shortcuts
Go to super-method/super-class

Ctrl + U

Navigation Shortcuts
Go to previous/next method

Alt + Up Arrow / Down Arrow

Navigation Shortcuts
Move to code block end / move to code start

Ctrl + ] / [

Navigation Shortcuts
File structure popup

Ctrl + F12

Navigation Shortcuts
Type hierarchy

Ctrl + H

Navigation Shortcuts
Call hierarchy

Ctrl + Alt + H

Navigation Shortcuts
Next/previous highlighted error

F2 / Shift + F2

Navigation Shortcuts
Toggle bookmark

F11

Navigation Shortcuts
Toggle bookmark with mnemonic

Ctrl + F11

Navigation Shortcuts
Go to numbered bookmark

Ctrl + 0 ... 9

Navigation Shortcuts
Show bookmarks

Shift + F11

General
Open corresponding tool window

Alt + 0 ... 9

General
Inspect current file with current profile

Alt + Shift + I

General
Quick switch current scheme

Ctrl + `

General
Edit Application Settings

Ctrl + Alt + S

General
Hide All Tool Windows

Ctrl + Shift + F12

General
Add to Favourites

Alt + Shift + F

Usage Search
Find Usage

Alt + F7

Usage Search
Find Usages in File

Ctrl + F7

Usage Search
Highlight Usages in File

Ctrl + Shift + F7

Usage Search
Show Usages

Ctrl + Alt + F7

VCS/Local History
Commit Project to VCS

Ctrl + K

VCS/Local History
Update Project from VCS

Ctrl + T

VCS/Local History
View Recent Changes

Alt + Shift + C

VCS/Local History
VCS Quick Popup

Alt + `

Refactoring
Refactor This

Ctrl + Alt + Shift + T

Refactoring
Copy

F5

Refactoring
Move

F6

Refactoring
safe Delete

Alt + Delete

Refactoring
Rename

Shift + F6

Refactoring
Change Signature

Ctrl + F6

Refactoring
Extract Function

Ctrl + Alt + M

Refactoring
Inline

Ctrl + Alt + N

Refactoring
Introduce parameter

Ctrl + Alt + P

Refactoring
Introduce Variable

Ctrl + Alt + V

Refactoring
Introduce Constant

Ctrl + Alt + C

Refactoring
Introduce Define

Ctrl + Alt + D

Similar combinations for other applications


Microsoft Outlook 2010 (Windows)
Cycle forward / backward between screen elements (Navigation Pane, Message List, Search, Reading Pane)
Messages in Main View - Main Window

Tab / Shift + Tab


Microsoft OneNote 2010 (Windows)
Increase indent by one level in right-to-left text.
Various Other OneNote Shortcuts - Special language settings

tab


Microsoft OneNote 2010 (Windows)
Decrease indent by one level in right-to-left text.
Various Other OneNote Shortcuts - Special language settings

shift + tab


Adobe Photoshop CS5 (MacOS)
Show/Hide all panels
Photoshop CS5 Panels - All Panels

Tab


Adobe Photoshop CS5 (MacOS)
Show/Hide all panels except the toolbox and options bar
Photoshop CS5 Panels - All Panels

Shift + Tab


Adobe Photoshop CS5 (Windows)
Show/Hide all panels
Photoshop CS5 Panels - All Panels

Tab


Adobe Photoshop CS5 (Windows)
Show/Hide all panels except the toolbox and options bar
Photoshop CS5 Panels - All Panels

Shift + Tab


Microsoft Outlook 2010 (Windows)
Cycle forward / cycle backward between Screen Elements (e.g. Navigation Pane, Message List, Search, Reading Pane)
Messages in Main View - Message List and Single Messages

Tab / Shift + Tab


Microsoft Projects 2010 (Windows)
With active selection: move to the right / move to the left
Navigate Gantt Chart and Select Tasks

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Move active cell right / left in a selection.
Work with Data Selections - Manage Active Selections

Tab / Shift + Tab


Google Chrome (Windows)
Edit next / edit previous property
Manage Chrome DevTools - Styles Panel

Tab / Shift + Tab


Firebug (Windows)
Jump to next / jump to previous field
CSS-Panel

Tab / Shift + Tab


Microsoft Windows 7 (Windows)
Switch focus forward/ backward between Address bar, Search Bar, Toolbar, Navigation Pane, and File List (Default is usually File List)
Managing 'Windows' in Windows 7 - Basics

Tab / Shift + Tab


Remember the Milk (Web Application)
Save input and move to next input field
Selection

tab


Firebug (Linux)
Jump to next / jump to previous field
CSS-Panel

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Complete a cell entry and move to the right / to the left in the selection.
Work with Data Selections - Edit Inside Cells

Tab / Shift + Tab


Adobe Photoshop CS4 (MacOS)
Cycle through controls on right from top (Extract, Liquify, and Pattern Maker)
Shortcut Keys for working with Extract, Liquify, and Pattern Maker

Tab


Adobe Photoshop CS4 (MacOS)
Cycle through controls on right from bottom (Extract, Liquify, and Pattern Maker)
Shortcut Keys for working with Extract, Liquify, and Pattern Maker

Shift + Tab


Thunderbird (Windows)
Switch focus between Folders Pane and Message List Pane
Navigate Messages

F6 / Tab / Shift + Tab


Firebug (MacOS)
Jump to next / jump to previous field
CSS-Panel

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Cycle between To, Cc, Subject, and Message Body
Messages in Main View - Manage Messages

Tab


Thunderbird (Linux)
Switch focus between Folders Pane and Message List Pane
Navigate Messages

F6 / Tab / Shift + Tab


Thunderbird (MacOS)
Switch focus between Folders Pane and Message List Pane
Navigate Messages

F6 / Tab / Shift + Tab


Microsoft Projects 2010 (Windows)
Select the next item / previous item
Navigate Projects Help

Tab / Shift + Tab


Eclipse Helios (Windows)
Increase / decrease indent of selected text
Indentions and Comments

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Select next/ select previous appointment in Calendar View
Messages in Main View - Create and Manage Appointments

Tab / Shift + Tab


Google Mail (Windows)
Increase / Decrease Indent
Tasks in Gmail

Tab / Shift + Tab


Access 2010 (Windows)
Toggle the focus forward between controls in the wizard
Manage Access Features - Wizards

Tab


Firefox (Linux)
Jump to next / jump to previous link
Inside Webpages

Tab / Shift + Tab


Firefox (Windows)
Jump to next / jump to previous link
Inside Webpages

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Jump to next / previous input field
Messages in Main View - Create and Manage Appointments

Tab / Shift + Tab


Google Mail (Windows)
Jump forward / jump backwards between input fields
Control Main Browser Window (General Browser Shortcuts)

Tab / Shift + Tab


Firefox (MacOS)
Move Focus to Next Actionable Item
Navigation Controls

Tab


Google Chrome (Linux)
Edit next / edit previous property
Manage Chrome DevTools - Styles Panel

Tab / Shift + Tab


Firefox (MacOS)
Move Focus to Previous Actionable Item
Navigation Controls

Shift + Tab


Microsoft OneNote 2010 (Windows)
Create a table by adding a second column to already typed text.Create another column in a table with a single row.
Creating and Manipulating OneNote Tables

tab


Access 2010 (Windows)
Move to the next / switch to previous option or option group
Manage Access Features - Dialog Boxes

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Select next/ select previous appointment
Messages in Main View - Navigate Calendar

Tab / Shift + Tab


Access 2010 (Windows)
Move to the upper Field List pane from the lower pane
Manage Access Features - Field List Pane

Shift + Tab


Microsoft Outlook 2010 (Windows)
Cycle forward / backward between screen elements (Navigation Pane, Message List, Search, Reading Pane)
Messages in Compose View - Main Window

Tab / Shift + Tab


Access 2010 (Windows)
Move to the lower Field List pane from the upper pane
Manage Access Features - Field List Pane

Tab


Microsoft Windows 7 (Windows)
Switch focus forward/ backward between Address bar, Search Bar, Toolbar, Navigation Pane, and File List (Default is usually File List)
Windows Explorer - Basics

Tab / Shift + Tab


Access 2010 (Windows)
Select next field / select previous field
Manage Access Features - Select and move Fields or Columns

Tab / Shift + Tab


SharpDevelop 4.0 (Windows)
Increase / decrease indent
Coding Shortcuts

Tab / Shift + Tab


Microsoft OneNote 2010 (Windows)
Increase / decrease indent by one level.
Working with Outlines

tab / shift + tab


Google Chrome (Windows)
Jump to next / previous link
Browse within Webpages

Tab / Shift + Tab with focus on webpage


Microsoft Outlook 2010 (Windows)
Cycle forward / cycle backward between Screen Elements (e.g. Navigation Pane, Message List, Search, Reading Pane)
Messages in Compose View - Message List and Single Messages

Tab / Shift + Tab


Notepad++ 5 (Windows)
Increase line indent
Edit - Indent

Tab


Notepad++ 5 (Windows)
Decrease line indent
Edit - Indent

Shift + Tab


Microsoft Excel 2010 (Windows)
Move to the next / previous option.
Work with Data Selections - Dialog Boxes

Tab / Shift + Tab


Firefox (Linux)
Jump to next or previous form element
Forms

Tab / Shift + Tab


Firefox (Windows)
Jump to next or previous form element
Forms

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Cycle between To, Cc, Subject, and Message Body
Messages in Compose View - Manage Messages

Tab


Adobe Photoshop CS5 (MacOS)
Cycle through controls on right from top
Photoshop CS5 Panels - Extract and Pattern Maker

Tab


Microsoft Word 2007 (Windows)
Select the next cell's contents.
Edit and move text and graphics: Select text and graphics in a table

Tab


Adobe Photoshop CS5 (MacOS)
Cycle through controls on right from bottom
Photoshop CS5 Panels - Extract and Pattern Maker

Shift + Tab


Microsoft Word 2007 (Windows)
Select the preceding cell's contents.
Edit and move text and graphics: Select text and graphics in a table

Shift + Tab


Notepad++ 5 (Windows)
Increase line indent
Search - Indent

Tab


Notepad++ 5 (Windows)
Decrease line indent
Search - Indent

Shift + Tab


Access 2010 (Windows)
Move to next / move to previous field in current record
Manage Access Features - Navigate in Datasheet, Subdatasheet, and Form View

Tab / Shift + Tab


Adobe Photoshop CS5 (Windows)
Cycle through controls on right from top
Photoshop CS5 Panels - Extract and Pattern Maker

Tab


Adobe Photoshop CS5 (Windows)
Cycle through controls on right from bottom
Photoshop CS5 Panels - Extract and Pattern Maker

Shift + Tab


Microsoft Excel 2010 (Windows)
Move active cell right / left in a selection.
Insert and Edit Data - Manage Active Selections

Tab / Shift + Tab


Microsoft Word 2007 (Windows)
One cell to the left (in a table)
Edit and move text and graphics: Move through your document

Shift + Tab


Microsoft Word 2007 (Windows)
One cell to the right (in a table)
Edit and move text and graphics: Move through your document

Tab


Google Chrome (Linux)
Jump to next / previous link
Browse within Webpages

Tab / Shift + Tab with focus on webpage


Access 2010 (Windows)
Move from table title bar to table title bar, or from cell to cell inside a table
Manage Access Features - Database Diagram

Tab


Access 2010 (Windows)
Move forward / backwards among tables, views, functions, or join line.
Manage Access Features - Query Designer

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Select next/ select previous appointment in Calendar View
Messages in Compose View - Create and Manage Appointments

Tab / Shift + Tab


Access 2010 (Windows)
Move to the right / to the left
Manage Access Features - Pivot Table

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Complete a cell entry and move to the right / to the left in the selection.
Insert and Edit Data - Edit Inside Cells

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Jump to next / previous input field
Messages in Compose View - Create and Manage Appointments

Tab / Shift + Tab


Microsoft Word 2007 (Windows)
To the next cell in a row
Edit and move text and graphics: Move around in a table

Tab


Microsoft Word 2007 (Windows)
To the previous cell in a row
Edit and move text and graphics: Move around in a table

Shift + Tab


Microsoft Windows 7 (Windows)
Switch focus forward/ backward between Address bar, Search Bar, Toolbar, Navigation Pane, and File List (Default is usually File List)
Windows Admin - Basics

Tab / Shift + Tab


Adobe Photoshop CS5 (MacOS)
Show/Hide all panels
Extract and Pattern Maker (plug-in) - All Panels

Tab


Adobe Photoshop CS5 (MacOS)
Show/Hide all panels except the toolbox and options bar
Extract and Pattern Maker (plug-in) - All Panels

Shift + Tab


Microsoft Outlook 2010 (Windows)
Select next/ select previous appointment
Messages in Compose View - Navigate Calendar

Tab / Shift + Tab


Google Docs (MacOS)
Increase paragraph indentation
Edit Documents

Tab


Google Docs (MacOS)
Decrease paragraph indentation
Edit Documents

Shift + Tab


Google Docs (Windows)
Increase paragraph indentation
Edit Documents

Tab


Google Docs (Windows)
Decrease paragraph indentation
Edit Documents

Shift + Tab


Adobe Photoshop CS5 (Windows)
Show/Hide all panels
Extract and Pattern Maker (plug-in) - All Panels

Tab


Adobe Photoshop CS5 (Windows)
Show/Hide all panels except the toolbox and options bar
Extract and Pattern Maker (plug-in) - All Panels

Shift + Tab


Microsoft Excel 2011 (MacOS)
Move between unlocked cells on a protected sheet
Moving and scrolling in a sheet or workbook

Tab


Tekla Structures 14.0 (Windows)
Next position / Previous position
General shortcuts

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Cycle forward / backward between screen elements (Navigation Pane, Message List, Search, Reading Pane)
Calendar Shortcuts - Main Window

Tab / Shift + Tab


Microsoft Excel 2011 (MacOS)
Complete a cell entry and move to the right in the selection
Entering data on a sheet

Tab


Microsoft Excel 2011 (MacOS)
Complete a cell entry and move to the left in the selection
Entering data on a sheet

Shift + Tab


Total Commander 8 (Windows)
Switch between left and right file list
Main Shortcuts

Tab


Total Commander 8 (Windows)
Switch between current file list and separate tree (if enabled)
Main Shortcuts

Shift + Tab


Microsoft Outlook 2010 (Windows)
Cycle forward / cycle backward between Screen Elements (e.g. Navigation Pane, Message List, Search, Reading Pane)
Calendar Shortcuts - Message List and Single Messages

Tab / Shift + Tab


Mindjet Mindmanager 2012 (Windows)
previous or next (often same as arrows)
Moving the blue box

Tab / Shift + Tab


Microsoft Windows 8 (Windows)
Switch focus forward/ backward between Address bar, Search Bar, Toolbar, Navigation Pane, and File List (Default is usually File List)
Windows Explorer - Basics

Tab / Shift + Tab


Access 2010 (Windows)
Go to next / go to previous text or hyperlink
Manage Access Features - Help Window

Tab / Shift + Tab


Open Office Impress (Linux)
Select objects in the order in which they were created.
Select and Move Elements

Tab


Open Office Impress (Linux)
Select objects in the reverse order in which they were created.
Select and Move Elements

Shift + Tab


Opera (Linux)
Cycle forwards focus within active context
Focus

Tab


Opera (Linux)
Cycle backwardss focus within active context
Focus

Shift + Tab


Microsoft Outlook 2010 (Windows)
Cycle between To, Cc, Subject, and Message Body
Calendar Shortcuts - Manage Messages

Tab


Microsoft Windows 7 (Windows)
Switch focus forward/ backward between Address bar, Search Bar, Toolbar, Navigation Pane, and File List (Default is usually File List)
Ease of Access and Magnifier - Basics

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Move to the next / previous option.
Insert and Edit Data - Dialog Boxes

Tab / Shift + Tab


Photoshop Lightroom 4 (Windows)
Show/hide side panels
Working with Panels

Tab


Photoshop Lightroom 4 (Windows)
Show/hide all panels
Working with Panels

Shift + Tab


Access 2010 (Windows)
Toggle the focus forward between controls in the wizard
Working with Text and Data - Wizards

Tab


Photoshop Lightroom 4 (MacOS)
Show/hide side panels
Working with Panels

Tab


Photoshop Lightroom 4 (MacOS)
Show/hide all panels
Working with Panels

Shift + Tab


Access 2010 (Windows)
Move to the next / switch to previous option or option group
Working with Text and Data - Dialog Boxes

Tab / Shift + Tab


InDesign CS5 (MacOS)
Move to next/previous cell
Working with Tables

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Select next/ select previous appointment in Calendar View
Calendar Shortcuts - Create and Manage Appointments

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Jump to next / previous input field
Calendar Shortcuts - Create and Manage Appointments

Tab / Shift + Tab


Evernote (MacOS)
Increase List Level / Decrease List Level
Note Editor

Shift + ⌘ + Tab / Shift + Tab


Microsoft Excel 2011 (MacOS)
Move from left to right within the selection, or move down one cell if only one column is selected
Working with a selection

Tab


Access 2010 (Windows)
Move to the upper Field List pane from the lower pane
Working with Text and Data - Field List Pane

Shift + Tab


Microsoft Excel 2011 (MacOS)
Move from right to left within the selection, or move up one cell if only one column is selected
Working with a selection

Shift + Tab


Access 2010 (Windows)
Move to the lower Field List pane from the upper pane
Working with Text and Data - Field List Pane

Tab


Microsoft Excel 2010 (Windows)
Move active cell right / left in a selection.
Format Data - Manage Active Selections

Tab / Shift + Tab


Access 2010 (Windows)
Select next field / select previous field
Working with Text and Data - Select and move Fields or Columns

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Select next/ select previous appointment
Calendar Shortcuts - Navigate Calendar

Tab / Shift + Tab


Opera (Linux)
Go to next element in form
Form

Tab


Opera (Linux)
Go to previous element in form
Form

Shift + Tab


Microsoft Excel 2010 (Windows)
Complete a cell entry and move to the right / to the left in the selection.
Format Data - Edit Inside Cells

Tab / Shift + Tab


Microsoft PowerPoint 2010 (Windows)
Go to the first or next hyperlink on a slide.
Show PowerPoint Presentation with Shortcuts

Tab


Microsoft PowerPoint 2010 (Windows)
Go to the last or previous hyperlink on a slide.
Show PowerPoint Presentation with Shortcuts

Shift + Tab


Microsoft Excel 2011 (MacOS)
Move to the next field / previous field that you can edit in the record
Data forms

Tab / Shift + Tab


Jaws 11.0 (Windows)
Next Link (Shift + Tab for previous
Navigation in HTML (Internet browsing)

Tab


Adobe Photoshop CS5 (MacOS)
Cycle through controls on right from top
Extract and Pattern Maker (plug-in) - Extract and Pattern Maker

Tab


Adobe Photoshop CS5 (MacOS)
Cycle through controls on right from bottom
Extract and Pattern Maker (plug-in) - Extract and Pattern Maker

Shift + Tab


Adobe Photoshop CS4 (MacOS)
Show/Hide all panels
Shortcut Keys for using panels

Tab


Adobe Photoshop CS4 (MacOS)
Show/Hide all panels except the toolbox and options bar
Shortcut Keys for using panels

Shift + Tab


Microsoft Excel 2011 (MacOS)
When a toolbar is active, select the next button or menu on the toolbar
Toolbars

Tab


Microsoft PowerPoint 2010 (Windows)
Select an object (with an object selected).
Work with Text and Objects

Tab / Shift + tab until the object you want is selected


Microsoft Excel 2011 (MacOS)
When a toolbar is active, select the previous button or menu on the toolbar
Toolbars

Shift + Tab


Access 2010 (Windows)
Move to next / move to previous field in current record
Working with Text and Data - Navigate in Datasheet, Subdatasheet, and Form View

Tab / Shift + Tab


Adobe Photoshop CS5 (Windows)
Cycle through controls on right from top
Extract and Pattern Maker (plug-in) - Extract and Pattern Maker

Tab


Adobe Photoshop CS5 (Windows)
Cycle through controls on right from bottom
Extract and Pattern Maker (plug-in) - Extract and Pattern Maker

Shift + Tab


Microsoft Windows 7 (Windows)
Move forward / move backwards through options
Dialog Boxes

Tab / Shift + Tab


Microsoft Windows 7 (Windows)
Move between links
Windows Help

Tab


Access 2010 (Windows)
Move from table title bar to table title bar, or from cell to cell inside a table
Working with Text and Data - Database Diagram

Tab


Microsoft Excel 2011 (MacOS)
Move to the next text box
Dialog boxes

Tab


Microsoft Excel 2011 (MacOS)
Move to the previous text box
Dialog boxes

Shift + Tab


Access 2010 (Windows)
Move forward / backwards among tables, views, functions, or join line.
Working with Text and Data - Query Designer

Tab / Shift + Tab


Access 2010 (Windows)
Move to the right / to the left
Working with Text and Data - Pivot Table

Tab / Shift + Tab


Microsoft Outlook 2010 (Windows)
Switch between Navigation Pane, Tasks list, and To-Do Bar
Tasks Shortcuts

Shift + Tab


Microsoft PowerPoint 2010 (Windows)
Move to the next cell in table.
Basic Text Navigation and Formatting

Tab


Microsoft PowerPoint 2010 (Windows)
Move to the preceding cell in table.
Basic Text Navigation and Formatting

Shift + Tab


InDesign CS5 (MacOS)
Apply value and select next value
Panels

Tab


InDesign CS5 (MacOS)
Show/Hide all panels, Toolbox, and Control panel (with no insertion point)
Panels

Tab


InDesign CS5 (MacOS)
Show/Hide all panels except the Toolbox and Control panel (docked or not)
Panels

Shift + Tab


Microsoft Outlook 2010 (Windows)
Move to next / move to previous field
Business Card View

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Move to the next / previous option.
Format Data - Dialog Boxes

Tab / Shift + Tab


Avid Media Composer 7 (MacOS)
Moves from one active slider to next (In Effect Editor)
Effect Mode

Tab


Avid Media Composer 7 (Windows)
Moves from one active slider to next (In Effect Editor)
Effect Mode

Tab


Adobe Illustrator CS5 (MacOS)
Show/Hide all panels
Panel Shortcuts

Tab


Adobe Illustrator CS5 (MacOS)
Show/Hide all panels except the Tools panel and Control panel
Panel Shortcuts

Shift + Tab


IntelliJ (Linux)
Indent/unindent selected lines
Editing

Tab / Shift + Tab


Microsoft PowerPoint 2010 (Windows)
Move between options or areas in the dialog box.
Manage Open and Save As dialog boxes

Tab


IntelliJ (Windows)
Indent/unindent selected lines
Editing

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Move active cell right / left in a selection.
Formulas and Names - Manage Active Selections

Tab / Shift + Tab


Microsoft PowerPoint 2010 (Windows)
Move to the next cell.
Move around in Tables

Tab


Microsoft PowerPoint 2010 (Windows)
Move to the preceding cell.
Move around in Tables

Shift + Tab


Access 2010 (Windows)
Go to next / go to previous text or hyperlink
Working with Text and Data - Help Window

Tab / Shift + Tab


Adobe Photoshop CS5 (MacOS)
Cycle through controls on right from top
Liquify

Tab


Adobe Photoshop CS5 (MacOS)
Cycle through controls on right from bottom
Liquify

Shift + Tab


Microsoft Excel 2010 (Windows)
Complete a cell entry and move to the right / to the left in the selection.
Formulas and Names - Edit Inside Cells

Tab / Shift + Tab


iTunes (Windows)
Select the next control
With full keyboard navigation enabled

Tab


Access 2010 (Windows)
Toggle the focus forward between controls in the wizard
Working with Access Views - Wizards

Tab


HoneyView 5.03 (Windows)
File/EXIF Info
Change Image View

Tab


Microsoft PowerPoint 2010 (Windows)
Move to the next option or option group.
Work with Dialog Boxes

Tab


Microsoft PowerPoint 2010 (Windows)
Move to the previous option or option group.
Work with Dialog Boxes

Shift + Tab


Adobe Photoshop CS5 (Windows)
Cycle through controls on right from top
Liquify

Tab


Adobe Photoshop CS5 (Windows)
Cycle through controls on right from bottom
Liquify

Shift + Tab


Access 2010 (Windows)
Move to the next / switch to previous option or option group
Working with Access Views - Dialog Boxes

Tab / Shift + Tab


Microsoft Excel 2013 (Windows)
Move one cell to the right / to the left in a worksheet
Navigate Worksheets

Tab / Shift + Tab


Gwenview (Linux)
When multiple images are displayed in View Mode, this switched to the image to the right of the currently selected image.
30 Shortcuts for Gwenview (Linux)

Tab


Access 2010 (Windows)
Move to the upper Field List pane from the lower pane
Working with Access Views - Field List Pane

Shift + Tab


Gwenview (Linux)
When multiple images are displayed in View Mode, this switched to the image to the left of the currently selected image.
30 Shortcuts for Gwenview (Linux)

Shift + Tab


Access 2010 (Windows)
Move to the lower Field List pane from the upper pane
Working with Access Views - Field List Pane

Tab


Access 2010 (Windows)
Select next field / select previous field
Working with Access Views - Select and move Fields or Columns

Tab / Shift + Tab


Microsoft PowerPoint 2010 (Windows)
Switch the keyboard focus within the Selection pane between tree view and the Show All and Hide All buttons.
Work with the Selection pane.

Tab / Shift + Tab


Audacity 2 (Windows)
Move to and open next label
Edit Menu

Tab


Audacity 2 (Windows)
Move to and open previous label
Edit Menu

Shift + Tab


Virtual DJ (Windows)
Select on active deck
All Shortcuts

Tab


FileMaker Pro (MacOS)
Select an object on the layout
Layout Mode Shortcuts - Select and Modify Objects

Tab / Shift + Tab repeatedly until the desired object is selected.


FileMaker Pro (Windows)
Select an object
Layout Mode Shortcuts - Select and Modify Objects

Tab / Shift + Tab repeatedly until the desired object is selected


Microsoft Excel 2013 (Windows)
Move active cell right / left in a selection
Navigate Inside Selected Text Blocks

Tab / Shift + Tab


FL Studio (Windows)
Cycle nested windows
Window Navigation

Tab


Microsoft Excel 2013 (Windows)
Complete a cell entry and move to the right / to the left in the selection
Edit Content of Cells

Tab / Shift + Tab


Adobe Illustrator CS5 (Windows)
Show/Hide all panels
Panel Shortcuts

Tab


Microsoft Excel 2010 (Windows)
Move to the next / previous option.
Formulas and Names - Dialog Boxes

Tab / Shift + Tab


Adobe Illustrator CS5 (Windows)
Show/Hide all panels except the Tools panel and Control panel
Panel Shortcuts

Shift + Tab


Access 2010 (Windows)
Move to next / move to previous field in current record
Working with Access Views - Navigate in Datasheet, Subdatasheet, and Form View

Tab / Shift + Tab


Presonus Studio One (Windows)
Focus next
Navigation

Tab


Presonus Studio One (Windows)
Focus previous
Navigation

Shift + Tab


Access 2010 (Windows)
Move from table title bar to table title bar, or from cell to cell inside a table
Working with Access Views - Database Diagram

Tab


Adobe Acrobat Pro (Windows)
Navigate to the next panel and panel control within an open Task pane
Navigation - Navigating task panes

Tab


Access 2010 (Windows)
Move forward / backwards among tables, views, functions, or join line.
Working with Access Views - Query Designer

Tab / Shift + Tab


Adobe Acrobat Pro (Windows)
Navigate to the previous panel and panel control within an open Task pane
Navigation - Navigating task panes

Shift + Tab


Access 2010 (Windows)
Move to the right / to the left
Working with Access Views - Pivot Table

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Move active cell right / left in a selection.
The Rest - Manage Active Selections

Tab / Shift + Tab


Adobe Acrobat Pro (Windows)
Navigate to the next item in the active panel in the Create New Action, Edit Action, Create Custom Tool, or the Edit Custom Tool dialog boxes
Navigation - Navigating task panes

Tab


Adobe Acrobat Pro (Windows)
Navigate to the previous item in the active panel in the Create New Action, Edit Action, Create Custom Tool, or the Edit Custom Tool dialog boxes
Navigation - Navigating task panes

Shift + Tab


Adobe Acrobat Pro (Windows)
Move among the elements of the active navigation panel
Navigation - Navigation panels

Tab


Adobe Acrobat Pro (Windows)
Move focus to the next link within a pane
Navigation - Navigating the Help window

Tab


Adobe Acrobat Pro (Windows)
Move focus to the previous link within a pane
Navigation - Navigating the Help window

Shift + Tab


Microsoft Excel 2010 (Windows)
Complete a cell entry and move to the right / to the left in the selection.
The Rest - Edit Inside Cells

Tab / Shift + Tab


Adobe Acrobat Pro (Windows)
Move focus to next comment or form field
Comments

Tab


Adobe Acrobat Pro (Windows)
Move focus to previous comment or form field
Comments

Shift + Tab


FileMaker Pro (MacOS)
Switch between the relationships graph and the zoom controls
Layout Mode Shortcuts - Select and Arrange Table and Relationship

Tab


Adobe Acrobat Pro (Windows)
Navigate through the other controls in the top bar - Home, Tools, Document
Navigation

Arrow Right / Arrow Left / Tab / Shift + Tab


Microsoft Word 2013 (Windows)
In Navigation Pane: Move through Navigation Pane options
Ribbons and Navigation Pane

Tab / Shift + Tab


Adobe Acrobat Pro (Windows)
Move focus to next comment, link, or form field in the document pane
Navigation

Tab


Microsoft Word 2013 (Windows)
Jump to (and select) next / previous table cell
Tables

Tab / Shift + Tab


Adobe Acrobat Pro (Windows)
Move focus to previous comment, link, or form field in the document pane
Navigation

Shift + Tab


Windows 10 Command Prompt (Windows)
Autocomplete Folder or File Name
Enter and Manipulate Text

Tab


Adobe Acrobat Pro (Windows)
Move forward or backward among the current column header selected for sorting, the current row with focus, and the Go Back button if in a folder
PDF Portfolios

Tab / Shift + Tab


Microsoft Word 2013 (Windows)
Promote / Demote a paragraph (or Alt+Shift+Arrow Left/Arrow Right)
Outline View

Tab / Shift + Tab


FileMaker Pro (Windows)
Move the selection from the relationships graph to the command buttons and proceed from left to right
Layout Mode Shortcuts - Relationships Graph

Tab


FileMaker Pro (Windows)
Move the selection through the command buttons from right to left and to the relationships graph from the Add Table command
Layout Mode Shortcuts - Relationships Graph

Shift + Tab


Access 2010 (Windows)
Go to next / go to previous text or hyperlink
Working with Access Views - Help Window

Tab / Shift + Tab


FileMaker Pro (MacOS)
Select an object on the layout
Text Shortcuts - Select and Modify Objects

Tab / Shift + Tab repeatedly until the desired object is selected.


FileMaker Pro (Windows)
Select an object
Text Shortcuts - Select and Modify Objects

Tab / Shift + Tab repeatedly until the desired object is selected


Sonar 2015 (Windows)
Go to next audio transient or MIDI note in selected tracks (or current track if there is no selection)
Track View

Tab


Sonar 2015 (Windows)
Go to previous audio transient or MIDI note in selected tracks (or current track if there is no selection)
Track View

Shift + Tab


Microsoft Excel 2013 (Windows)
Move to the next / previous option
Dialog Boxes

Tab / Shift + Tab


Microsoft Windows 10 (Windows)
Move forward / move backwards through options
Windows Dialog Boxes

Tab / Shift + Tab


Access 2010 (Windows)
Toggle the focus forward between controls in the wizard
The Rest - Wizards

Tab


Microsoft Excel 2013 (Windows)
Move to the next / previous field which can be edited
Data Forms

Tab / Shift + Tab


Access 2010 (Windows)
Move to the next / switch to previous option or option group
The Rest - Dialog Boxes

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Move to the next / previous option.
The Rest - Dialog Boxes

Tab / Shift + Tab


Access 2010 (Windows)
Move to the upper Field List pane from the lower pane
The Rest - Field List Pane

Shift + Tab


Microsoft Excel 2010 (Windows)
Move one cell to the right / to the left in a worksheet.
Navigate Inside Worksheets

Tab / Shift + Tab


Access 2010 (Windows)
Move to the lower Field List pane from the upper pane
The Rest - Field List Pane

Tab


Access 2010 (Windows)
Select next field / select previous field
The Rest - Select and move Fields or Columns

Tab / Shift + Tab


Photoshop Lightroom CC (Windows)
Show/ hide side panels
Panel Shortcuts

Tab


Photoshop Lightroom CC (Windows)
Show/ hide all panels
Panel Shortcuts

Shift + Tab


Photoshop Lightroom CC (MacOS)
Show/ hide side panels
Panel Shortcuts

Tab


Photoshop Lightroom CC (MacOS)
Show/ hide all panels
Panel Shortcuts

Shift + Tab


GTDNext.com (Windows)
Indent (create sub-task)
Center Pane Shortcuts

Tab


GTDNext.com (Windows)
Outdent
Center Pane Shortcuts

Shift + Tab


Camtasia 2 (MacOS)
Next caption / previous caption
Timeline & Editing

Tab


Quickbooks Online (Web Application)
Calculate the Result
Calculate Amounts and Rates

Tab


Quickbooks Online (Windows)
Calculate the Result
Calculate Amounts and Rates

Tab


Quickbooks Online (Web Application)
Go forward / go backwards
Navigate Form Fields and Manage Drop-down Lists

Tab / Shift + Tab


Quickbooks Online (Windows)
Go forward / go backwards
Navigate Form Fields and Manage Drop-down Lists

Tab / Shift + Tab


Quickbooks Online (Web Application)
Select item and move to next field
Navigate Form Fields and Manage Drop-down Lists

Tab


Quickbooks Online (Windows)
Select item and move to next field
Navigate Form Fields and Manage Drop-down Lists

Tab


Microsoft Outlook 2016 (Windows)
Move between the Outlook window, the smaller panes in the Folder Pane, the Reading Pane, and the sections in the To-Do Bar
Basic Navigation

Tab


Quickbooks Online (Web Application)
Select the transaction type field in a new transaction row
Selecting Transactions in Account Registers

Shift + Tab


Quickbooks Online (Windows)
Select the transaction type field in a new transaction row
Selecting Transactions in Account Registers

Shift + Tab


Quickbooks Online (Web Application)
Select transaction and move to next field
Selecting Transactions in Account Registers

Tab


Quickbooks Online (Windows)
Select transaction and move to next field
Selecting Transactions in Account Registers

Tab


FileMaker Pro (MacOS)
Switch between the relationships graph and the zoom controls
Text Shortcuts - Select and Arrange Table and Relationship

Tab


Google Mail (MacOS)
Increase / Decrease Indent
Tasks in Gmail

Tab / Shift + Tab


Clink (Windows)
completion
Clink Commands

Tab


Google Mail (MacOS)
Jump forward / jump backwards between input fields
Control Main Browser Window (General Browser Shortcuts)

Tab / Shift + Tab


Microsoft Excel 2010 (Windows)
Move to the next / previous field which can be edited.
Data Forms

Tab / Shift + Tab


Skype for Business (Lync) 2016 (Windows)
With slide in focus - Access controls (Prev arrow, Next arrow, Thumbnails, and Notes)
PowerPoint Sharing

Tab


Adobe After Effects CC (Windows)
Open Composition Mini-Flowchart for active Composition
Compositions and Work Area

Tab


Access 2010 (Windows)
Move to next / move to previous field in current record
The Rest - Navigate in Datasheet, Subdatasheet, and Form View

Tab / Shift + Tab


Nirvana (Web Application)
For Focus
Rapid Entry

Tab / E


Microsoft OneNote 2016 (Windows)
Create able by adding a second column to already typed text.Create another column in table with a single row.
OneNote Tables

Tab


Adobe After Effects CC (MacOS)
Open Composition Mini-Flowchart for active Composition
Compositions and Work Area

Tab


Access 2016 (Windows)
Move to next cell
Database Operation

Tab


FileMaker Pro (Windows)
Move the selection from the relationships graph to the command buttons and proceed from left to right
Text Shortcuts - Relationships Graph

Tab


FileMaker Pro (MacOS)
Select an object on the layout
Database Management Shortcuts - Select and Modify Objects

Tab / Shift + Tab repeatedly until the desired object is selected.


FileMaker Pro (Windows)
Move the selection through the command buttons from right to left and to the relationships graph from the Add Table command
Text Shortcuts - Relationships Graph

Shift + Tab


Access 2010 (Windows)
Move from table title bar to table title bar, or from cell to cell inside a table
The Rest - Database Diagram

Tab


Adobe Photoshop CC (Windows)
Show/Hide all panels
Basic Shortcuts for Photoshop CC 2015 - Shortcuts for all Panels

Tab


Adobe Photoshop CC (Windows)
Show/Hide all panels except the toolbox and options bar
Basic Shortcuts for Photoshop CC 2015 - Shortcuts for all Panels

Shift + Tab


Access 2010 (Windows)
Move forward / backwards among tables, views, functions, or join line.
The Rest - Query Designer

Tab / Shift + Tab


Microsoft OneNote 2016 (Windows)
Increase/ decrease indent by one level
Outlines

Tab / Shift + Tab


FileMaker Pro (Windows)
Select an object
Database Management Shortcuts - Select and Modify Objects

Tab / Shift + Tab repeatedly until the desired object is selected


Adobe Photoshop CC (MacOS)
Show/Hide all panels
Basic Shortcuts for PhotoShop CC 2015 - Shortcuts for all Panels

Tab


Access 2010 (Windows)
Move to the right / to the left
The Rest - Pivot Table

Tab / Shift + Tab


Adobe Photoshop CC (MacOS)
Show/Hide all panels except the toolbox and options bar
Basic Shortcuts for PhotoShop CC 2015 - Shortcuts for all Panels

Shift + Tab


Microsoft PowerPoint 2016 (Windows)
To next object
Navigation Operation

Shift + Tab


Microsoft PowerPoint 2016 (Windows)
To previous object
Navigation Operation

Tab


Microsoft Excel 2016 (Windows)
Move to the next/ previous field which can be edited
Select Cells - Data Forms

Tab / Shift + Tab


Plex (Windows)
Exit main menu
Graphics(Audio/Video) Control

H / Tab


Plex (MacOS)
Exit main menu
Graphics(Audio/Video) Control

H / Tab


Corel VideoStudio X9.5 (Windows)
Select Scrubber/Trim handle
Navigation/Direction Shortcuts

Tab


Access 2010 (Windows)
Go to next / go to previous text or hyperlink
The Rest - Help Window

Tab / Shift + Tab


Apple Keynote (MacOS)
Complete a cell entry and move the selection right
Chart data editor

Tab


FileMaker Pro (MacOS)
Switch between the relationships graph and the zoom controls
Database Management Shortcuts - Select and Arrange Table and Relationship

Tab


Apple Keynote (MacOS)
Complete a cell entry and move the selection left
Chart data editor

Shift + Tab


FileMaker Pro (Windows)
Move the selection from the relationships graph to the command buttons and proceed from left to right
Database Management Shortcuts - Relationships Graph

Tab


Apple Keynote (MacOS)
Select next cell
Tables

Tab


FileMaker Pro (Windows)
Move the selection through the command buttons from right to left and to the relationships graph from the Add Table command
Database Management Shortcuts - Relationships Graph

Shift + Tab


Apple Keynote (MacOS)
Selected Previous cell
Tables

Shift + Tab


Microsoft Excel 2016 (Windows)
Move to the next/ previous field which can be edited
Format Cells - Data Forms

Tab / Shift + Tab


Apple Keynote (MacOS)
Next object
Objects on Canvas

Tab


FileMaker Pro (MacOS)
Move to next object / move to previous object (field, button, or tab)
Navigation and Window Display

Tab / Shift + Tab


Apple Keynote (MacOS)
Previous object
Objects on Canvas

Shift + Tab


Adobe Illustrator CC (MacOS)
Show/hide panel
Panel Shortcuts

Tab


Adobe Illustrator CC (MacOS)
Show/hide panels except Tools and Control
Panel Shortcuts

Shift + Tab


Adobe Illustrator CC (Windows)
Show/hide panel
Panel Shortcuts

Tab


Adobe Illustrator CC (Windows)
Show/hide panels except Tools and Control
Panel Shortcuts

Shift + Tab


FileMaker Pro (Windows)
Go to next object / previous object (field, button, or tab)
Navigation and Window Display

Tab / Shift + Tab


Apple Numbers (MacOS)
Select next cell
Table Editing

Tab


Apple Numbers (MacOS)
Select previous cell
Table Editing

Shift + Tab


Microsoft Outlook 2016 (Windows)
Move to the next/previous field and control (in an open card)
View: Business Cards/Address cards

Tab / Shift + Tab


Nuke 10 (Windows)
Toggle 2D/3D
2D Viewer

Tab


Nuke 10 (MacOS)
Toggle 2D/3D
2D Viewer

Tab


Nuke 10 (Linux)
Toggle 2D/3D
2D Viewer

Tab


Anime Studio (Windows)
Select connected points
General Shortcuts

Tab


Nuke 10 (Windows)
Next control in properties
Panel Properties

Tab


Adobe Photoshop CC (Windows)
Show/Hide all panels
Manage Panels - Shortcuts for all Panels

Tab


Adobe Photoshop CC (Windows)
Show/Hide all panels except the toolbox and options bar
Manage Panels - Shortcuts for all Panels

Shift + Tab


Nuke 10 (Windows)
Move to previous control in properties
Panel Properties

Shift + Tab


Nuke 10 (MacOS)
Next control in properties
Panel Properties

Tab


Nuke 10 (Linux)
Next control in properties
Panel Properties

Tab


Microsoft Outlook 2016 (Windows)
Select the previous appointment
View: Calendar - Day/Week/Month

Shift + Tab


Nuke 10 (MacOS)
Move to previous control in properties
Panel Properties

Shift + Tab


Nuke 10 (Linux)
Move to previous control in properties
Panel Properties

Shift + Tab


Adobe Photoshop CC (MacOS)
Show/Hide all panels
Manage Panels - Shortcuts for all Panels

Tab


Adobe Photoshop CC (MacOS)
Show/Hide all panels except the toolbox and options bar
Manage Panels - Shortcuts for all Panels

Shift + Tab


Nuke 10 (Windows)
Increase Indentation
Script Editor

Tab


Finale (MacOS)
Move between primary/secondary handles
Smart Shape Tool

Tab


Nuke 10 (Windows)
Decrease Indentation
Script Editor

Shift + Tab


Nuke 10 (Linux)
Increase Indentation
Script Editor

Tab


Nuke 10 (MacOS)
Increase Indentation
Script Editor

Tab


Nuke 10 (Linux)
Decrease Indentation
Script Editor

Shift + Tab


Nuke 10 (MacOS)
Decrease Indentation
Script Editor

Shift + Tab


Finale (Windows)
Move between primary/secondary handles
Smart Shape Tool

Tab


Microsoft Excel 2016 (Windows)
Move to the next/ previous field which can be edited
Formulas - Data Forms

Tab / Shift + Tab


Nuke 10 (Windows)
Tab node search menu
Node Graph

Tab


Nuke 10 (Linux)
Tab node search menu
Node Graph

Tab


Nuke 10 (MacOS)
Tab node search menu
Node Graph

Tab


Zoho Sheet (Windows)
Move to next cell in row
Navigate

Tab


Dynamics CRM 2015 (Windows)
Move to the next option, option group, or field
Form Keyboard Shortcuts

Tab


Zoho Sheet (Windows)
Move to previous cell in row
Navigate

Shift + Tab


Dynamics CRM 2015 (Windows)
Move to the previous option, option group, or field
Form Keyboard Shortcuts

Shift + Tab


Zoho Sheet (Windows)
Navigate to the next object
Shortcuts for Objects (Images,charts,buttons etc)

Tab


Zoho Sheet (Windows)
Navigate to the previous object
Shortcuts for Objects (Images,charts,buttons etc)

Shift + Tab


Dynamics GP 2015 (Windows)
Move to next field
Window Navigation Shortcuts

Tab


Dynamics GP 2015 (Windows)
Move to previous field
Window Navigation Shortcuts

Shift + Tab


Anime Studio (MacOS)
Select connected points
General Shortcuts

Tab


Dynamics CRM 2015 (Windows)
Move to another field or command
Form Keyboard Shortcuts

Tab


Dynamics GP 2015 (Windows)
Move to next field
Tools Shortcuts

Tab


Dynamics GP 2015 (Windows)
Move to previous field
Tools Shortcuts

Shift + Tab


Dynamics NAV 2015 (Windows)
Move to the Previous field
Page View and Review

Shift + Tab


Dynamics SL 2015 (Windows)
Move to the next option, option group, or field
Navigation in forms

Tab


Dynamics SL 2015 (Windows)
Move to the previous option, option group, or field
Navigation in forms

Shift + Tab


Zoho Sheet (MacOS)
Move to next cell in row
Navigate

Tab


Zoho Sheet (MacOS)
Move to previous cell in row
Navigate

Shift + Tab


Microsoft Word 2016 (Windows)
To next object
Navigation Operation

Shift + Tab


Zoho Sheet (MacOS)
Navigate to the next object
Shortcuts for Objects (Images,charts,buttons etc)

Tab


Microsoft Word 2016 (Windows)
To previous object
Navigation Operation

Tab


Zoho Sheet (MacOS)
Navigate to the previous object
Shortcuts for Objects (Images,charts,buttons etc)

Shift + Tab


Dynamics SL 2015 (Windows)
Move to next field
Grid/View Shortcuts

Tab / Right Arrow