IntelliJ (Windows)

Editing

Comment/uncomment with block comment

Ctrl + Shift + /

All hotkeys for IntelliJ (Windows)

Productivity
To quickly open any class.

Ctrl + N

Productivity
To quickly open any file.

Ctrl + Shift + N

Productivity
Toggle tools (maximize/minimize code window).

Ctrl + Shift + F12

Productivity
Code completion.

Ctrl + Space

Productivity
To find all places where a particular class, method or variable is used in the whole project by positioning the caret at the symbol's name or at its usage in code.

Alt + F7

Productivity
To quickly see the documentation for the class or method used at the editor's caret.

Crtl + P

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

Ctrl + Space

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

Ctrl + Shift + Space

Editing
Complete statement

Ctrl + Shift + Enter

Editing
Parameter info (within method call arguments)

Ctrl + P

Editing
Quick documentation lookup

Ctrl + Q

Editing
External Doc

Shift + F1

Editing
Brief Info

Ctrl + mouse over code

Editing
Show descriptions of error or warning at caret

Ctrl + F1

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

Alt + Insert

Editing
Override methods

Ctrl + O

Editing
Implement methods

Ctrl + I

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

Ctrl + Alt + T

Editing
Comment/uncomment with line comment

Ctrl + /

Editing
Comment/uncomment with block comment

Ctrl + Shift + /

Editing
Select successively increasing code blocks

Ctrl + W

Editing
Decrease current selection to previous state

Ctrl + Shift + W

Editing
Context info

Alt + Q

Editing
Show intention actions and quick-fixes

Alt + Enter

Editing
Reformat code

Ctrl + Alt + L

Editing
Optimize imports

Ctrl + Alt + O

Editing
Auto-indent line(s)

Ctrl + Alt + I

Editing
Indent/unindent selected lines

Tab / Shift + Tab

Editing
Cut current line or selected block to clipboard

Ctrl + X / Shift + Delete

Editing
Copy current line or selected block to clipboard

Ctrl + C / Ctrl + Insert

Editing
Paste from clipboard

Ctrl + V / Shift + Insert

Editing
Paste from recent buffers...

Ctrl + Shift + V

Editing
Duplicate current line or selected block

Ctrl + D

Editing
Delete line at caret

Ctrl + Y

Editing
Smart line join

Ctrl + Shift + J

Editing
Smart line split

Ctrl + Enter

Editing
Start new line

Shift + Enter

Editing
Toggle case for word at caret or selected block

Ctrl + Shift + U

Editing
Select till code block end/start

Ctrl + Shift + ] / [

Editing
Delete to word end

Ctrl + Delete

Editing
Delete to word start

Ctrl + Backspace

Editing
Expand/collapse code block

Ctrl + NumPad plus / -

Editing
Expand all / collapse all

Ctrl + Shift + NumPad plus / -

Editing
Close active editor tab

Ctrl + F4

Editing
Find usages / Find usages in file

Alt + F7 / Ctrl + F7

Editing
Highlight usages in file

Ctrl + Shift + F7

Editing
Show usages

Ctrl + Alt + F7

Editing
Copy

F5

Editing
Move

F6

Editing
Safe Delete

Alt + Delete

Editing
Rename

Shift + F6

Editing
Change Signature

Ctrl + F6

Editing
Inline

Ctrl + Alt + N

Editing
Extract Method

Ctrl + Alt + M

Editing
Extract Variable

Ctrl + Alt + V

Editing
Extract Field

Ctrl + Alt + F

Editing
Extract Constant

Ctrl + Alt + C

Editing
Extract Parameter

Ctrl + Alt + P

Search/Replace
Search everywhere

Double Shift

Search/Replace
Find

Ctrl + F

Search/Replace
Find next / Find previous

F3 / Shift + F3

Search/Replace
Replace

Ctrl + R

Search/Replace
Find in path

Ctrl + Shift + F

Search/Replace
Replace in path

Ctrl + Shift + R

Search/Replace
Search structurally (Ultimate Edition only)

Ctrl + Shift + S

Search/Replace
Replace structurally (Ultimate Edition only)

Ctrl + Shift + M

Compile and Run
Make project (compile modifed and dependent)

Ctrl + F9

Compile and Run
Compile selected file, package or module

Ctrl + Shift + 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

Compile and Run
Run context configuration from editor

Ctrl + Shift + F10

Debugging
Commit project to VCS

Ctrl + K

Debugging
Update project from VCS

Ctrl + T

Debugging
View recent changes

Alt + Shift + C

Debugging
‘VCS’ quick popup

Alt + `

Debugging
Step over

F8

Debugging
Step into

F7

Debugging
Smart step into

Shift + 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
Iteration according to Java SDK 1.5 style

Ctrl + J - iter

Live Templates
Check object type with instanceof and downcast it

Ctrl + J - inst

Live Templates
Iterate Collection / Iterate elements of java.util.Collection

Ctrl + J - itco

Live Templates
Iterate Itterator / IIterate elements of java.util.Iterator

Ctrl + J - itit

Live Templates
Iterate List / Iterate elements of java.util.List

Ctrl + J - itli

Live Templates
Public static final

Ctrl + J - psf

Live Templates
throw new

Ctrl + J - thr

Navigation
Go to class

Ctrl + N

Navigation
Go to file

Ctrl + Shift + N

Navigation
Go to symbol

Ctrl + Alt + Shift + N

Navigation
Go to next/previous editor tab

Alt + Right/Left

Navigation
Go back to previous tool window

F12

Navigation
Go to editor (from tool window)

Esc

Navigation
Hide active or last active window

Shift + Esc

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

Ctrl + Shift + F4

Navigation
Go to line

Ctrl + G

Navigation
Recent files popup

Ctrl + E

Navigation
Navigate backward / navigate forward

Ctrl + Alt + Arrow Left / Arrow Right

Navigation
Navigate to last edit location

Ctrl + Shift + Backspace

Navigation
Select current file or symbol in any view

Alt + F1

Navigation
Go to declaration

Ctrl + B / Ctrl + Click

Navigation
Go to implementation(s)

Ctrl + Alt + B

Navigation
Open quick definition lookup

Ctrl + Shift + I

Navigation
Go to type declaration

Ctrl + Shift + B

Navigation
Go to super-method/super-class

Ctrl + U

Navigation
Go to previous/next method

Alt + Arrow Up / Arrow Down

Navigation
Move to code block end / move to code start

Ctrl + ] / [

Navigation
File structure popup

Ctrl + F12

Navigation
Type hierarchy

Ctrl + H

Navigation
Method hierarchy

Ctrl + Shift + H

Navigation
Call hierarchy

Ctrl + Alt + H

Navigation
Next/previous highlighted error

F2 / Shift + F2

Navigation
Edit source / View source

F4 / Ctrl + Enter

Navigation
Show navigation bar

Alt + Home

Navigation
Toggle bookmark

F11

Navigation
Toggle bookmark with mnemonic

Ctrl + F11

Navigation
Go to numbered bookmark

Ctrl + 0 ... 9

Navigation
Show bookmarks

Shift + F11

General
Open corresponding tool window

Alt + 0 ... 9

General
Save all

Ctrl + S

General
Synchronize

Ctrl + Alt + Y

General
Toggle maximizing editor

Ctrl + Shift + F12

General
Add to Favorites

Alt + Shift + F

General
Inspect current file with current profile

Alt + Shift + I

General
Quick switch current scheme

Ctrl + `

General
Open Settings dialog

Ctrl + Alt + S

General
Open Project Structure dialog

Ctrl + Alt + Shift + S

General
Find Action

Ctrl + Shift + A

General
Switch between tabs and tool window

Ctrl + Tab

General
Create new scratch file

Ctrl + Shift + Alt + Insert

Multiple Selection
Add/remove a selection

Alt + Shift +Mouse Click

Multiple Selection
Select the next occurrence

Alt + J

Multiple Selection
Unselect the next occurrence

Shift + Alt + J

Multiple Selection
Select all occurrences

Shift + Ctrl + Alt + J

Multiple Selection
Remove all selections

Esc

Similar combinations for other applications


VLC Media Player (Windows)
Most used


Google Calendar (Web Application)
Navigation


Dropbox (Web Application)
Search
16 Shortcuts for Dropbox (Web Application)

/


Google Calendar (Web Application)
Focus the search box
Application

/


Eclipse Helios (Windows)
Zoom text in/ out
Editor Window

Ctrl + Shift + + / -


Google Mail (Windows)
Mark as important + or remove -
Main Window - Manage Message List

+ / -


Remember the Milk (Web Application)
Place the cursor in the search box
Navigation

ctrl + shift + /


Google Chrome (Windows)
Comment a line or selected text
Manage Chrome DevTools - Sources Panel

Ctrl + /


Remember the Milk (Web Application)
Zoom in/zoom out
Locations

+ / -


Microsoft OneNote 2010 (Windows)
Apply or remove numbered list formatting from the selected paragraph.
Specific OneNote Shortcuts for Selecting, Editing, and Formatting

ctrl + /


Google Chrome (Windows)
Toggle comment
Manage Chrome DevTools - Code Editor

Ctrl + /


Eclipse Helios (Windows)
Duplicate current line or selection up or down
Edit Text

Ctrl + Alt + Arrow Up / Ctrl + Alt + Arrow Down /


Google Mail (Windows)
Increase / decrease the font size of all or some text
Format Text in Messages

Ctrl + Shift + + / -


Eclipse Helios (Windows)
Comment / uncomment line or selection ( adds '//' )
Indentions and Comments

Ctrl + /


Eclipse Helios (Windows)
Add Block Comment around selection ( adds '/... */' )
Indentions and Comments

Ctrl + Shift + /


Eclipse Helios (Windows)
Propose word completion (after typing at least one letter). Repeatedly press alt+/ until reaching correct name
Editing Source Code

Alt + /


Firefox (MacOS)
Page Manipulation


Google Chrome (Linux)
Comment a line or selected text
Manage Chrome DevTools - Sources Panel

Ctrl + /


Firefox (MacOS)
General Browser Controls


Google Chrome (Linux)
Toggle comment
Manage Chrome DevTools - Code Editor

Ctrl + /


Firefox (Linux)
Show / hide Add-On Bar (holding add-ons)
Firefox Features

Ctrl + /


Firefox (Windows)
Show / hide Add-On Bar (holding add-ons)
Firefox Features

Ctrl + /


Firefox (MacOS)
Search Bar


Firefox (MacOS)
Quick Find Text
Page Search

/


Google Chrome (Linux)
View Webpages


Phoenix Viewer (Windows)
Unlink
Build

Ctrl + Shift +


Total Commander 8 (Windows)
Restore selection
Main Shortcuts

Num /


Open Office Impress (Linux)
Zoom in / Zoome out
Normal View

+ / -


Open Office Impress (Linux)
Zoom in on current selection.
Normal View

/ on numeric keyboard


InDesign CS5 (MacOS)
Apply No Color
Tools

/


Adobe Illustrator CS5 (MacOS)
Add Anchor Point tool
Selecting Tools

+


Oracle SQL Developer 4 (Windows)
Toggle Line Comment
Code Editor

Ctrl + /


Opera (Linux)
Search for text in page (with Advanced Shortcuts on)
Find

. / , / / / Shift + /


Sublime Text (Windows)
Toggle Comment line
Cool Text Manipulation

Ctrl + /


Sublime Text (Windows)
Toggle Comment block
Cool Text Manipulation

Ctrl + Shift + /


InDesign CS5 (MacOS)
Strikethrough
Working with Type

Shift + Command + /


Microsoft Windows 7 (Windows)
Managing 'Windows' in Windows 7


Microsoft Excel 2011 (MacOS)
Select the current array, which is the array that the active cell belongs to
Selecting cells, columns, or rows

Ctrl + /


Jaws 11.0 (Windows)
Left-click (with JAWS cursor enabled)
Cursor and Mouse commands

Numpad /


InDesign CS5 (MacOS)
Recompose all stories
Working with Type

Option + Command + /


InDesign CS5 (MacOS)
Update missing font list
Navigating Through and Editing Text

Command + Option + Shift + /


Adobe Photoshop CS4 (MacOS)
Shortcut Keys for using the Adjustments panel


Photoshop Lightroom 4 (Windows)
Deselect active photo
Comparing photos in the Library module

/


Adobe Illustrator CS5 (MacOS)
Select no stroke/fill mode
Painting Objects

/


Adobe Illustrator CS5 (Windows)
Add Anchor Point tool
Selecting Tools

+


Adobe Illustrator CS5 (MacOS)
Add new fill
Painting Objects

+ /


Adobe Illustrator CS5 (MacOS)
Add new stroke
Painting Objects

+ Option + /


Visual Studio 2015 (Windows)
Put cursor in the find/command box in toolbar
Tool Windows

Ctrl + /


Microsoft Windows 7 (Windows)
11.


Photoshop Lightroom 4 (MacOS)
Deselect active photo
Comparing photos in the Library module

/


CATIA V5 (Windows)
38 Shortcuts for CATIA V5 (Windows)

Alt + Shift + Arrow Right /


CATIA V5 (Windows)
1.


IntelliJ (Linux)
Comment/uncomment with line comment
Editing

Ctrl + /


IntelliJ (Linux)
Comment/uncomment with block comment
Editing

Ctrl + Shift + /


NetBeans 8 (Windows)
Add/remove comment lines
Coding in Java

Ctrl + Shift + C / Ctrl + /


iTunes (MacOS)
Go to the next page / go to previous page in iTunes Store
iTunes Store shortcuts

+ /


Youtube Player (Windows)
Focus on Youtube Search Bar
Gain Control of Youtube Video

/


iTunes (MacOS)
Go to the previous or next pane in the Get Info or Preferences window
File and Window

Shift + + /


Photoshop Lightroom 4 (Windows)
Switch between local adjustment brush A and B
Develop Module

/


Windows Remote Desktop (Windows)
Entering Remote Desktop


Avid Media Composer 7 (MacOS)
Displays the entire Sequence in the Timeline Window.
Timeline

Conmmand+ /


Windows Remote Desktop (Windows)
Using Shortcuts in Remote Desktop


Avid Media Composer 7 (Windows)
Displays the entire Sequence in the Timeline Window.
Timeline

Ctrl + /


Youtube Player (Windows)
Increase / decrease CC font size (works in Chrome, not in Firefox)
Video Control

+ / -


Photoshop Lightroom 4 (MacOS)
Switch between local adjustment brush A and B
Develop Module

/


Adobe Photoshop CS5 (MacOS)
Create a floating selection from the current selection
Vanishing Point


HoneyView 5.03 (Windows)
Zoom in / zoom out
Zooming

+/-


HoneyView 5.03 (Windows)
Zoom Control
Zooming

/


Notepad2 (Windows)
Reset zoom
View Menu

Ctrl + / , Ctrl + NumPad /


Windows Run Commands (Windows)
System File Checker Utility


Adobe Illustrator CS5 (Windows)
Select no stroke/fill mode
Painting Objects

/


Adobe Illustrator CS5 (Windows)
Add new fill
Painting Objects

Ctrl + /


Adobe Illustrator CS5 (Windows)
Add new stroke
Painting Objects

Ctrl + Alt + /


Photoshop Lightroom 4 (Windows)
Display current module shortcuts
Using Help

Ctrl + /


Photoshop Lightroom 4 (Windows)
Go to current module Help
Using Help

Ctrl + Alt + /


FL Studio (Windows)
Previous bar (Song mode)
Record / Playback / Transport

NumPad /


FL Studio (Windows)
Jump 4 bars back (Song mode)
Record / Playback / Transport

Ctrl + NumPad /


Microsoft Excel 2013 (Windows)
Insert Cell/Row/Column Menu
Edit Complete Cells

Ctrl + Shift + +


Presonus Studio One (Windows)
Loop active
Transport Menu

NumPad /


Photoshop Lightroom 4 (MacOS)
Display current module shortcuts
Using Help

+ /


Photoshop Lightroom 4 (MacOS)
Go to current module Help
Using Help

+ Option + Shift + /


Pro Tools (Windows)
Automation - Write to current
Edit Menu

Ctrl + /


Pro Tools (Windows)
Automation - Write to all enabled
Edit Menu

Ctrl + Alt + /


Pro Tools (Windows)
Automation - Trim to current
Edit Menu

Ctrl + Shift + /


Pro Tools (Windows)
Automation - Trim to all enabled
Edit Menu

Ctrl + Alt + Shift + /


Pro Tools (Windows)
Automation - Glide to current
Edit Menu

Alt + /


Pro Tools (Windows)
Automation - Glide to all enabled
Edit Menu

Alt + Shift + /


FL Studio (Windows)
Jump to next/previous song marker (if present)
Playlist Action

Alt + NumPad * / /


FL Studio (Windows)
Jump to next/previous song marker (if present) and select until next song marker (if present) or until song end
Playlist Action

Ctrl + Alt + NumPad * / /


Pro Tools (MacOS)
Automation - Write to current
Edit Menu

+ /


Pro Tools (MacOS)
Automation - Write to all enabled
Edit Menu

+ Option + /


Pro Tools (MacOS)
Automation - Trim to current
Edit Menu

+ Shift + /


Pro Tools (MacOS)
Automation - Trim to all enabled
Edit Menu

+ Option + Shift + /


Pro Tools (MacOS)
Automation - Glide to current
Edit Menu

Option + /


Pro Tools (MacOS)
Automation - Glide to all enabled
Edit Menu

Option + Shift + /


Twitter (Web Application)
Search
Actions

/


Adobe Acrobat Pro (Windows)
Collapse selected bookmark
Navigation - Navigation panels

/


Pro Tools (Windows)
Link timeline and edit selection
Options Menu

Shift + /


FL Studio (Windows)
Note: Some keyboard modifiers apply only to Draw mode
Piano Roll Action


Qt Creator (Windows)
Toggle comment for selection
Editor

Ctrl + /


Autodesk Maya 2015 (Windows)
Increase manipulator size / Decrease manipulator size
General Tools

+ /-


Qt Creator (MacOS)
Toggle comment for selection
Editor

Ctrl + /


Atom (text editor) 1.0 (Linux)
Toggle comment line
Editing Lines

Ctrl + /


Atom (text editor) 1.0 (Windows)
Toggle comment line
Editing Lines

Ctrl + /


Pro Tools (MacOS)
Link timeline and edit selection
Options Menu

Shift + /


Atom (text editor) 1.0 (Linux)
Fold / unfold code
Code Folding

Ctrl + Alt + /


Atom (text editor) 1.0 (Windows)
Fold / unfold code
Code Folding

Ctrl + Alt + /


Pro Tools (Windows)
Selection Counter Select
Numeric Keypad Shortcuts

NumPad /


Atom (text editor) 1.0 (Linux)
Use Regex in search
Find and Replace

Ctrl + Alt + /


Google Drive (Web Application)
Search your Drive
Application Actions

/


Microsoft Word 2013 (Windows)
Hide or display character formatting
Outline View

/ key on the numeric keypad


Atom (text editor) 1.0 (Windows)
Use Regex in search
Find and Replace

Ctrl + Alt + /


Pro Tools (Windows)
Link Timeline and Edit Selection
Numeric Keypad Shortcuts

Shift NumPad /


Google Chrome (MacOS)
Switch to the previous tab/ next tab in browsing history for tab
Manage Tabs

Command + [ / Command + ] /


Qt Creator (MacOS)
Version Control


Qt Creator (Windows)
Version Control


Autodesk Maya 2015 (Windows)
Increases / Decreases Division Levels for Smooth Mesh Preview or Subdiv Proxy.
Modeling

Page Up /


Notepad++ 6 (Windows)
Restore the original size from zoom
View menu

Ctrl +Keypad/


Autodesk Maya 2015 (Windows)
Switch to pick color mode (press and release)
Painting Operation

/


Quickbooks Online (Web Application)
Next Day / Previous Day
Enter Dates

+ / -


Quickbooks Online (Windows)
Next Day / Previous Day
Enter Dates

+ / -


Google Play Music (Web Application)
Search
General

/


Autodesk Maya 2015 (Windows)
Change the size of the manipulator
Tool and Action

+/-


Microsoft OneNote 2016 (Windows)
Apply numbered list
Format

Ctrl + /


Quickbooks Online (Web Application)
Add / Substract
Calculate Amounts and Rates

+/-


Quickbooks Online (Windows)
Add / Substract
Calculate Amounts and Rates

+/-


Quickbooks Online (Web Application)
Increase / Decrease Ref Number
Reference Number Fields (Ref # Fields)

+ / -


Quickbooks Online (Windows)
Increase / Decrease Ref Number
Reference Number Fields (Ref # Fields)

+ / -


Sway 2016 (Windows)
Start or continue a numbered list
Text and Content Formatting

Ctrl + /


Adobe Photoshop CC (Windows)
Lock Layers
Basic Shortcuts for Photoshop CC 2015 - Layers Basics

Ctrl + /


Adobe Photoshop CC (MacOS)
Lock Layers
Basic Shortcuts for PhotoShop CC 2015 - Layers Basics

Command + /


Access 2016 (Windows)
Database Operation


Google Slides (Windows)
Show common keyboard shortcut
General Slides Shortcuts

Ctrl + /


Android Studio (Windows)
Line Comment or Uncomment
General Shortcuts

Ctrl + /


Google Slides (Windows)
Search menus
General Slides Shortcuts

Alt + /


Android Studio (Windows)
Block Comment or Uncomment
General Shortcuts

Ctrl + Shift + /


Adobe After Effects CC (MacOS)
Toggle Mercury Transmit video preview
Previews

/ on numeric keypad


Autodesk Maya 2017 (Windows)
Increase manipulator size / Decrease manipulator size
General Tools

+ /-


Adobe After Effects CC (Windows)
Zoom to 100% in Composition, Layer, or Footage Panel
Views

/


Adobe After Effects CC (Windows)
Zoom to fit in Composition, Layer, or Footage Panel
Views

Shift + /


Corel VideoStudio X9.5 (Windows)
Zoom in/Zoom out
Edit Tab Operations

+ / -


Adobe After Effects CC (Windows)
Zoom up to 100% to fit in Composition, Layer, or Footage Panel
Views

Alt + /


Corel VideoStudio X9.5 (Windows)
Edit Tab Operations


Adobe After Effects CC (MacOS)
Zoom to 100% in Composition, Layer, or Footage Panel
Views

/


Microsoft PowerPoint 2016 (Windows)
Navigation Operation


Photoshop Lightroom CC (MacOS)
Deselect active photo
Comparing Photos in the Library Module

/


Adobe After Effects CC (MacOS)
Zoom to fit in Composition, Layer, or Footage Panel
Views

Shift + /


Adobe After Effects CC (MacOS)
Zoom up to 100% to fit in Composition, Layer, or Footage Panel
Views

Option + /


Photoshop Lightroom CC (Windows)
Deselect active photo
Comparing Photos in the Library Module

/


Plex (Windows)
Increse/Decrese Volume
Graphics(Audio/Video) Control

+ / -


Adobe After Effects CC (Windows)
Add selected items to most recently activated Composition
Footage

Ctrl + /


Adobe After Effects CC (Windows)
Replace selected source Footage for selected Layers with Footage item selected in Project Panel
Footage

Ctrl + Alt + /


Plex (MacOS)
Increse/Decrese Volume
Graphics(Audio/Video) Control

+ / -


Adobe After Effects CC (MacOS)
Add selected items to most recently activated Composition
Footage

Command + /


Adobe After Effects CC (MacOS)
Replace selected source Footage for selected Layers with Footage item selected in Project Panel
Footage

Command + Option + /


Adobe Premiere CC (Windows)
Duplicate
General Shortcuts

Ctrl + Shift + /


Adobe Premiere CC (Windows)
General Shortcuts


Adobe Premiere CC (MacOS)
Duplicate
General Shortcuts

Shift + Command + /


Adobe Illustrator CC (MacOS)
Drawing Shortcuts


Adobe Premiere CC (MacOS)
Bin
General Shortcuts

Command + /


Adobe Illustrator CC (Windows)
Drawing Shortcuts


Adobe Photoshop CC (Windows)
Toggle lock transparency for target layer, or last applied lock
Basic Shortcuts for Photoshop CC 2015 - Layers Panel

/


Apple Keynote (MacOS)
General Shortcuts


Plex (MacOS)
Control By Apple Remote


Autodesk Maya 2017 (Windows)
Increases / Decreases Division Levels for Smooth Mesh Preview or Subdiv Proxy.
Modeling

Page Up /


Adobe Photoshop CC (MacOS)
Toggle lock transparency for target layer, or last applied lock
Basic Shortcuts for PhotoShop CC 2015 - Layers Panel

/


Corel Painter 2017 (MacOS)
Brushes


Adobe Audition CC (Windows)
Rename selected marker
Marker/Tool/Clip Shortcuts

/


Adobe Illustrator CC (MacOS)
Add/Delete anchor point tool
Selectiong Tool

+ / -


Adobe Premiere CC (Windows)
Mark selection
Marker Operation

/


Adobe Audition CC (MacOS)
Rename selected marker
Marker/Tool/Clip Shortcuts

/


Adobe Illustrator CC (Windows)
Add/Delete anchor point tool
Selectiong Tool

+ / -


Safari Browser (MacOS)
Menu Shortcuts


Corel Painter 2017 (Windows)
Brushes


Adobe Premiere CC (MacOS)
Clipping Shortcuts


Autodesk Maya 2017 (Windows)
Switch to pick color mode (press and release)
Painting Operation

/


Apple Keynote (MacOS)
Chart data editor


Adobe Premiere CC (MacOS)
Mark selection
Marker Operation

/


Adobe Premiere CC (Windows)
Marker Operation


Corel Painter 2017 (MacOS)
Canvas


Corel Painter 2017 (MacOS)
Layout Grid
Toolbox commands

/


Corel Painter 2017 (Windows)
Canvas


Photoshop Lightroom CC (Windows)
Switch between local adjustment brush A and B
Develop Module

/


Adobe Premiere CC (MacOS)
Marker Operation


Photoshop Lightroom CC (MacOS)
Switch between local adjustment brush A and B
Develop Module

/


Corel Painter 2017 (Windows)
Layout Grid
Toolbox commands

/


FileMaker Pro (MacOS)
Open Help
General Shortcuts

Command + /


Nuke 10 (Windows)
Zoom in/Zoom out
Timeline Viewer

+ / -


Autodesk Maya 2017 (Windows)
Change the size of the manipulator
Tool and Action

+/-


Nuke 10 (MacOS)
Zoom in/Zoom out
Timeline Viewer

+ / -


Nuke 10 (Linux)
Zoom in/Zoom out
Timeline Viewer

+ / -


InDesign CC (Windows)
Click Technique


Adobe After Effects CC (MacOS)
Increase / decrease Z Rotation of Layers by 1°
Modify Layer Properties

+ / - on numeric keypad


InDesign CC (MacOS)
Click Technique


Adobe Illustrator CC (MacOS)
Select no stroke/fill mode
Painting Objects

/


Adobe Illustrator CC (MacOS)
Add new fill
Painting Objects

Command + /


Adobe Premiere CC (Windows)
Tools Shortcuts


Adobe Illustrator CC (MacOS)
Add new stroke
Painting Objects

Command + Option + /


Adobe Illustrator CC (Windows)
Select no stroke/fill mode
Painting Objects

/


Finale (MacOS)
File Menu


Adobe Illustrator CC (Windows)
Add new fill
Painting Objects

Ctrl + /


Adobe Illustrator CC (Windows)
Add new stroke
Painting Objects

Ctrl + Alt + /


Adobe Illustrator CC (MacOS)
Panel Shortcuts


Nuke 10 (Windows)
Timeline Viewer


Adobe Illustrator CC (Windows)
Panel Shortcuts


Nuke 10 (MacOS)
Timeline Viewer


Adobe Premiere CC (MacOS)
Tools Shortcuts


Nuke 10 (Linux)
Timeline Viewer


Finale (Windows)
File Menu


Corel Painter 2017 (MacOS)
Navigation Shortcuts


Apple Keynote (MacOS)
Objects on Canvas


Adobe Photoshop CC (Windows)
Lock Layers
Manage Panels - Layers Basics

Ctrl + /


Nuke 10 (Windows)
Timeline


Nuke 10 (Windows)
Zoom in/Zoom out
2D Viewer

+ / -


Nuke 10 (MacOS)
Timeline


Corel Painter 2017 (Windows)
Navigation Shortcuts


Finale (MacOS)
Utility Menu


Nuke 10 (Linux)
Timeline


Adobe Illustrator CC (MacOS)
Function Key Shortcuts


Nuke 10 (MacOS)
Zoom in/Zoom out
2D Viewer

+ / -


Nuke 10 (Linux)
Zoom in/Zoom out
2D Viewer

+ / -


Adobe Photoshop CC (MacOS)
Lock Layers
Manage Panels - Layers Basics

Command + /


Adobe Illustrator CC (Windows)
Function Key Shortcuts


Photoshop Lightroom CC (Windows)
Display current module shortcuts
Help

Ctrl + /


Photoshop Lightroom CC (MacOS)
Display current module shortcuts
Help

Command + /


Finale (MacOS)
View Menu


Photoshop Lightroom CC (Windows)
Go to current module Help
Help

Ctrl + Alt + /


Nuke 10 (Windows)
2D Viewer


Photoshop Lightroom CC (MacOS)
Go to current module Help
Help

Command + Option + Shift + /


Finale (Windows)
Utility Menu


Finale (MacOS)
Windows Menu


Nuke 10 (MacOS)
2D Viewer


Apple Keynote (MacOS)
Go to next slide(Slide Switcher)
Slideshow

+


Nuke 10 (Linux)
2D Viewer


Hexagon 2 (MacOS)
Selection,Tools and Manipulators Shortcuts


3D Coat (MacOS)
File Menu


3D Coat (MacOS)
File Menu


Apple Keynote (MacOS)
Slideshow


Nuke 10 (Windows)
3D Viewer


Finale (MacOS)
Playback and General Shortcuts


Nuke 10 (Windows)
Search by class/node name
Panel Properties

/


Finale (Windows)
View Menu


Hexagon 2 (Windows)
Selection,Tools and Manipulators Shortcuts


3D Coat (MacOS)
View Menu


Nuke 10 (MacOS)
3D Viewer


InDesign CC (Windows)
Layout Menu Shortcuts


Nuke 10 (Linux)
3D Viewer


Nuke 10 (MacOS)
Search by class/node name
Panel Properties

/


Finale (Windows)
Windows Menu


Hexagon 2 (MacOS)
Increment Field
View Shortcuts

+


Nuke 10 (Windows)
Panel Properties


Apple Keynote (MacOS)
Playing Movies


Nuke 10 (Linux)
Search by class/node name
Panel Properties

/


InDesign CC (MacOS)
Layout Menu Shortcuts


CINEMA 4D (Windows)
Zoom In/Out
Picture Viewer

+/-


InDesign CC (Windows)
Type Menu Shortcuts


Hexagon 2 (MacOS)
View Shortcuts


IMVU (Windows)
Tools


Nuke 10 (MacOS)
Panel Properties


IMVU (MacOS)
Tools


Finale (MacOS)
Last Viewed Part
Navigation Shortcuts

Command + Option + /


3D Coat (MacOS)
View Menu


Nuke 10 (Linux)
Panel Properties


Finale (MacOS)
Navigation Shortcuts


Hexagon 2 (Windows)
Increment Field
View Shortcuts(Numeric Pad)

+


InDesign CC (MacOS)
Type Menu Shortcuts


Finale (Windows)
Playback and General Shortcuts


Hexagon 2 (Windows)
View Shortcuts(Numeric Pad)


Nuke 10 (Windows)
Curve Editor


3D Coat (MacOS)
Freeze border
Freeze Operations

Command + /


3D Coat (Windows)
File Menu


Finale (Windows)
Last Viewed Part
Navigation Shortcuts

Ctrl + Alt + /


3D Coat (Windows)
File Menu


Finale (Windows)
Navigation Shortcuts


Nuke 10 (Linux)
Curve Editor


Nuke 10 (MacOS)
Curve Editor


Finale (MacOS)
Expression Tool


Anime Studio (Windows)
Bones shortcuts


Adobe After Effects CC (Windows)
Momentarily activate Eraser Tool with Last Stroke Only option
Paint Tools

Ctrl + Shift


ArchiCAD 20 (Windows)
Edit Commands(Text)


Nuke 10 (Windows)
RotoPaint


Nuke 10 (Windows)
Search by node
Node Graph

/


3D Coat (Windows)
View Menu


Finale (MacOS)
Lyrics Tool


3D Coat (MacOS)
Splines


InDesign CC (Windows)
View Menu Shortcuts


Nuke 10 (Linux)
RotoPaint


3D Coat (MacOS)
Expand hidden area
HIde Operations

+


ArchiCAD 20 (MacOS)
Edit Commands(Text)


Nuke 10 (Linux)
Search by node
Node Graph

/


Hexagon 2 (MacOS)
General Shortcuts


3D Coat (MacOS)
HIde Operations


Nuke 10 (MacOS)
RotoPaint


Finale (Windows)
Expression Tool


InDesign CC (MacOS)
View Menu Shortcuts


InDesign CC (Windows)
Add/Delete anchor point tool
Tools

+ / -


3D Coat (MacOS)
Smoothing


Nuke 10 (MacOS)
Search by node
Node Graph

/


3D Coat (MacOS)
Increase Opacity of Specularity
Specularity

/


3D Coat (Windows)
Freeze border
Freeze Operations

Ctrl + NumPad /


Hexagon 2 (Windows)
General Shortcuts


InDesign CC (MacOS)
Add/Delete anchor point tool
Tools

+ / -


Finale (Windows)
Lyrics Tool


Adobe After Effects CC (Windows)
Add active Composition or selected items to render queue
Saving, Exporting, and Rendering

Ctrl + Shift + /


Nuke 10 (Windows)
Node Graph


ArchiCAD 20 (Windows)
Image 3D Engines and Models


iMovie (MacOS)
Play the selection
Play video

/


Nuke 10 (Linux)
Node Graph


3D Coat (Windows)
Splines


ArchiCAD 20 (Windows)
Teamwork


Nuke 10 (MacOS)
Node Graph


3D Coat (Windows)
HIde Operations


ArchiCAD 20 (Windows)
Zoom In
Display Menu

Ctrl + /


3D Coat (Windows)
Smoothing


ArchiCAD 20 (Windows)
Zoom Out
Display Menu

Ctrl + Shift + /


3D Coat (Windows)
Increase Opacity of Specularity
Specularity

/


ArchiCAD 20 (MacOS)
Image 3D Engines and Models


Adobe Photoshop CC (Windows)
Toggle lock transparency for target layer, or last applied lock
Manage Panels - Layers Panel

/


Adobe After Effects CC (MacOS)
Add active Composition or selected items to render queue
Saving, Exporting, and Rendering

Command + Shift + /


Adobe Photoshop CC (MacOS)
Toggle lock transparency for target layer, or last applied lock
Manage Panels - Layers Panel

/


iMovie (MacOS)
Open the precision editor
Video edit

Command + /


Windows Movie Maker (Windows)
Expand the Video track when it is selected in the timeline
On timeline

+


Zoho Sheet (Windows)
Select the range of array formula cells surrounding a cell
Formula related shortcuts

Ctrl + /


ArchiCAD 20 (Windows)
Zoom in/Zoom out
Actions

+ / -


3D Coat (Windows)
Increase Degree
Sliders Setting

+


ArchiCAD 20 (Windows)
Actions


Anime Studio (MacOS)
Bones shortcuts


ArchiCAD 20 (MacOS)
Teamwork


Wondershare Editor (Windows)
Stop
Preview

Ctrl + /


Windows Movie Maker (Windows)
Navigation


ArchiCAD 20 (MacOS)
Zoom In
Display Menu

Command + /


ArchiCAD 20 (MacOS)
Zoom Out
Display Menu

Command + Shift + /


Zoho Sheet (MacOS)
Select the range of array formula cells surrounding a cell
Formula related shortcuts

Command + /


Apple Mail (MacOS)
Receive Message


Dynamics GP 2015 (Windows)
Window Specific Keyboard Shortcuts


AutoCAD 2016 (MacOS)
Displays Help
Toggles

Fn + F1 or Cmd + /


Zoho Show (Windows)
File Operations


ArchiCAD 20 (MacOS)
Zoom in/Zoom out
Actions

+ / -


ArchiCAD 20 (MacOS)
Actions


Age of Empires (Windows)
Build gate
Villager Build

B + /


Zoho Show (Windows)
Strikethrough toggle for selection
Formatting Shortcuts

Ctrl + /


Zoho Show (MacOS)
File Operations


AutoCAD 2016 (MacOS)
Launches the online help (browser).
Toggle General Features

Cmd + /


Autodesk Inventor 2017 (Windows)
User work axes visibility
View

Alt + /


Adobe Photoshop CC (Windows)
Cycle through point on the curve
Curves Dialog Box

+/-


Autodesk Inventor 2017 (Windows)
Origin axes visibility
View

Ctrl + /


Zoho Show (MacOS)
Strikethrough toggle for selection
Formatting Shortcuts

Command + /


Battlefield 12 (Windows)
Spotting


Apple Motion (MacOS)
Show overlays
View Menu

Command + /


Adobe Photoshop CC (MacOS)
Cycle through point on the curve
Curves Dialog Box

+/-


Apple Motion (MacOS)
Show 3D overlays
View Menu

Option + Command + /