Eclipse

Indentions and comments

Comment / uncomment line or selection (add //)

Ctrl + /

All hotkeys for Eclipse

Managing files and projects
Create a new project with Wizard

Ctrl + N

Managing files and projects
Create a new project, file, class, etc.

Ctrl + Alt + N

Managing files and projects
. Open project, file, etc.

Alt + F then .

Managing files and projects
Open resource file, folder or project

Ctrl + ↑   Shift + R

Managing files and projects
Show and access file properties

Alt + ⤶ Enter

Running and debugging
Step into function

F5

Managing files and projects
Save currently open file

Ctrl + S

Managing files and projects
Save all open files

Ctrl + ↑   Shift + S

Managing files and projects
Close currently open file

Ctrl + W

Managing files and projects
Close all files

Ctrl + ↑   Shift + W

Editor
Jump to the editor window

F12

Editor
Switch to previous editor

Ctrl + Page Down

Editor
Switch to next editor

Ctrl + Page Up

Editor
Maximize or restore current editor window (also works with other windows)

Ctrl + M

Editor
Show the list of open editors

Ctrl + E

Editor
Show the list of open editors, but switch immediately when you release <keybs>Ctrl</keybs>

Ctrl + F6

Editor
Go to previous / next editor windows

Alt + ←  →

Editor
Open Editor Window Option menu

Alt + -

Editor
Show view menu

Ctrl + F10

Editor
n Show / hide line numbers

Ctrl + F10 then N

Editor
Show or hide the diff. column on the left (column that indicates changes since last save)

Ctrl + ↑   Shift + Q

Editor
Zoom in

Ctrl + ↑   Shift + +

Editor
Zoom out

Ctrl + ↑   Shift + -

Navigation in editor window
Jump to beginning of indention. Press twice to jump to beginning of the line

Home

Navigation in editor window
Jump to end of line

End

Navigation in editor window
Jump to beginning of source

Ctrl + Home

Navigation in editor window
Jump to end of source

Ctrl + End

Navigation in editor window
Jump one word to the left / right

Ctrl + ←  →

Navigation in editor window
Jump to previous / next method

Ctrl + ↑   Shift + ↑  ↓

Navigation in editor window
Jump to line number

Ctrl + L

Navigation in editor window
Jump to last edited location

Ctrl + Q

Navigation in editor window
Jump to previous / next compiler syntax warning or error

Ctrl + .

Navigation in editor window
Jump to previous / next compiler syntax warning or error

Ctrl + ,

Navigation in editor window
With a bracket selected: Jump to matching closing or opening bracket

Ctrl + ↑   Shift + P

Navigation in editor window
Collapse / expand current method or class

Ctrl + [

Navigation in editor window
Collapse / expand current method or class

Ctrl + ]

Navigation in editor window
Collapse / expand current method or class

Ctrl + Num -

Navigation in editor window
Collapse / expand all methods or classes

Ctrl + Num *

Navigation in editor window
Scroll editor without changing cursor position

Ctrl + ↑  ↓

Navigation in editor window
Previous sub-tab

Alt + Page Up

Navigation in editor window
Next sub-tab

Alt + Page Down

Selecting text
Expand selection by one character to the left or right

↑   Shift + ←  →

Selecting text
Expand selection to the next or previous word

Ctrl + ↑   Shift + ←  →

Selecting text
Expand selection by one line up or down

↑   Shift + ↑  ↓

Selecting text
Expand selection to end of line

↑   Shift + End

Selecting text
Expand eslection to beginning of line

↑   Shift + Home

Selecting text
Expand selection to current element

Alt + ↑   Shift +

Selecting text
Expand selection to previous or next element

Alt + ↑   Shift + ←  →

Selecting text
Reduce previously expanded selection by one step

Alt + ↑   Shift +

Editing text
Copy

Ctrl + C

Editing text
Cut

Ctrl + X

Editing text
Paste

Ctrl + V

Editing text
Undo last action

Ctrl + Z

Editing text
Redo last undone action

Ctrl + Y

Editing text
Delete line

Ctrl + D

Editing text
Move current line or selection up or down

Alt + ↑  ↓

Editing text
Duplicate current line or selection up or down

Ctrl + Alt + ↑  ↓

Editing text
Delete next word

Ctrl + Del

Editing text
Delete previous word

Ctrl + ⬅ Backspace

Editing text
Enter line below current line

↑   Shift + ⤶ Enter

Editing text
Enter line above current line

↑   Shift + Ctrl + ⤶ Enter

Editing text
Switch between insert and overwrite mode

Insert

Editing text
Convert selection to lowercase

↑   Shift + Ctrl + Y

Editing text
Convert selection to uppercase

↑   Shift + Ctrl + X

Search and replace
Open find and replace dialog box

Ctrl + F

Search and replace
Find previous occurence of the search term

Ctrl + K

Search and replace
Find next occurence of the search term

Ctrl + ↑   Shift + K

Search and replace
Search Workspace (Java search, Task search, and File search)

Ctrl + H

Search and replace
Incremental search forward

Ctrl + J

Search and replace
Incremental search backwards

Ctrl + ↑   Shift + J

Search and replace
Open a resource search dialog to find any class

Ctrl + ↑   Shift + O

Indentions and comments
Increase indent of selected text

⭾ Tab

Indentions and comments
Decrease indent of selected text

↑   Shift + ⭾ Tab

Indentions and comments
Correct indention of selected text or current line

Ctrl + I

Indentions and comments
Auto format all code in editor using code formatter

Ctrl + ↑   Shift + F

Indentions and comments
Comment / uncomment line or selection (add //)

Ctrl + /

Indentions and comments
Toggle comments

Ctrl + ↑   Shift + C

Indentions and comments
Add block comment arount selection (add /...*/)

Ctrl + ↑   Shift + /

Indentions and comments
Remove block comment

Ctrl + ↑   Shift + \

Indentions and comments
Add element comment (add /** ... */)

Alt + ↑   Shift + J

Editing source code
Open content assist (e.g. show available methods or field names)

Ctrl + Space

Editing source code
Open quick fix and quick assist

Ctrl + 1

Editing source code
Suggest word completion (after typing at least one letter). Press repeatedly until reaching correct name

Alt + /

Editing source code
Deactivate or activate Smart Insert Mode (automatic indention, automatic brackets, etc.)

Ctrl + ↑   Shift + Insert

Code information
Show code outline or structure

Ctrl + O

Code information
Open class, method, or variable information (show as tooltip text)

F2

Code information
Open declaration: Jump to Declaration of selected class, method, or parameter

F3

Code information
Open Type Hierarchy window for selected item

F4

Code information
Show or open Quick Type Hierarchy for selected item

Ctrl + T

Code information
Open type in hierarchy

Ctrl + ↑   Shift + T

Code information
Open call hierarchy

Ctrl + Alt + H

Code information
Find occurrences of expression in current file

Ctrl + ↑   Shift + U

Code information
Open declaration or implementation

Ctrl + Mouse movement

Refactoring
Rename selected element and all references

Alt + ↑   Shift + R

Refactoring
Move selected element to other class or file (with complete method or class selected)

Alt + ↑   Shift + V

Refactoring
Change method signature (with method name selected)

Alt + ↑   Shift + C

Refactoring
Extract selection to method

Alt + ↑   Shift + M

Refactoring
Extract local variable: Create and assign a variable from selected expression

Alt + ↑   Shift + L

Refactoring
Inline selected local variables, methods or constants when possible (replaces variable with its declarations/ assignment and puts it directly into the statements)

Alt + ↑   Shift + I

Running and debugging
Save and launch application

Ctrl + F11

Running and debugging
Debug

F11

Running and debugging
Next step (line by line)

F6

Running and debugging
Step out

F7

Running and debugging
Skip to next breakpoint

F8

Other
Switch forward between panels. Useful for switching back and forth between Package Explorer and Editor

Ctrl + F7

Other
Switch backward between panels. Useful for switching back and forth between Package Explorer and Editor

Ctrl + ↑   Shift + F7

Other
Print

Ctrl + P

Other
Open Eclipse help

F1

Other
Show context menu

↑   Shift + F10

Team (SVN Subversive)
Synchronize with repository

Ctrl + Alt + S

Team (SVN Subversive)
Commit

Ctrl + Alt + C

Team (SVN Subversive)
Update

Ctrl + Alt + U

Team (SVN Subversive)
Update to revision

Ctrl + Alt + D

Team (SVN Subversive)
Merge

Ctrl + Alt + E

Team (SVN Subversive)
Show properties

Ctrl + Alt + T

Team (SVN Subversive)
Add to svn:ignore

Ctrl + Alt + I

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

/


Emacs 23.2.1 (Linux)
Undo
Edit

Ctrl + _


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 /


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 + /


Thunderbird (Windows)
Increase / decrease text size (zoom)
Other Shortcuts

Ctrl ++/-


Firefox (MacOS)
General Browser Controls


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

Ctrl + /


Thunderbird (Linux)
Increase / decrease text size (zoom)
Other Shortcuts

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


Total Commander 8 (Windows)
Restore selection
Main Shortcuts

Num /


Tekla Structures 14.0 (Windows)
Toggle selection
General shortcuts

Ctrl


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

+ / -


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

/ on numeric keyboard


Adobe Illustrator CS5 (Windows)
To access Selection or Direction Selection tool (whichever was used last) at any time
Panel Shortcuts - Selecting and Moving

Ctrl


Open Office Impress (Linux)
Bring to forward / Send backwards
Normal View

Ctrl + + / Ctrl + -


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 + /


Opera (Linux)
Zoom in
Display

Ctrl + = / Shift + = / Ctrl + Shift + = / Ctrl + +


InDesign CS5 (MacOS)
Strikethrough
Working with Type

Shift + Command + /


Adobe Illustrator CS5 (Windows)
To access Selection or Direction Selection tool (whichever was used last) at any time
Additional Shortcuts - Selecting and Moving

Ctrl


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)
Interrupt speech (stop talking)
Reading Commands

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 + /


Sublime Text (Windows)
Zoom - increase/ decrease font size
Manage Sublime Window, Files and Tabs

Ctrl + / -


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.


FreeMind 0.9.0 (Windows)
Increase node font size
Node formatting commands

Ctrl + +


IntelliJ (Linux)
Comment/uncomment with line comment
Editing

Ctrl + /


NetBeans 8 (Windows)
Inspect members/hierarchy
Coding in Java

Ctrl / Alt + F12


IntelliJ (Linux)
Comment/uncomment with block comment
Editing

Ctrl + Shift + /


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

Ctrl + Shift + C / Ctrl + /


IntelliJ (Windows)
Comment/uncomment with line comment
Editing

Ctrl + /


IntelliJ (Windows)
Comment/uncomment with block comment
Editing

Ctrl + Shift + /


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 + /


Adobe Photoshop CS5 (Windows)
Change Cancel button to Default
Filter Gallery

Ctrl


Adobe Illustrator CS5 (Windows)
Switch to last-used selection tool (Selection tool, Direct Selection tool, or Group Selection tool)
Keys for selecting

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 /


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 + /


Adobe Photoshop CS5 (Windows)
Temporarily switch to Zoom In tool. (Doesn't work when Straighten tool is selected. If Crop tool is active, temporarily switches to Straighten tool.)
Camera Raw Dialog Box

Ctrl


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

/


Qt Creator (Windows)
Decrease / increase font size (or Ctrl+scroll)
Editor

Ctrl +-/ Ctrl + +


Adobe Photoshop CS5 (Windows)
Switch to Move tool (except when Hand, Slice, Path, Shape, or any Pen tool is selected)
Select and Move Objects

Ctrl


Qt Creator (MacOS)
Decrease / increase font size (or Ctrl+scroll)
Editor

Ctrl +-/ Ctrl + +


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


Adobe Photoshop CS5 (Windows)
Distort
Transform Selections, Selection Borders, and Paths

Ctrl


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 + /


Adobe Photoshop CS5 (Windows)
Switch from Path Selection, Pen, Add Anchor Point, Delete Anchor Point, or Convert Point tools, to Direct Selection tool
Edit Paths

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


Qt Creator (MacOS)
Zoom in / Zoom out
Image Viewer

Ctrl + + / Ctrl + -


Qt Creator (Windows)
Zoom in / Zoom out
Image Viewer

Ctrl + + / Ctrl + -


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 /


Adobe Acrobat Pro (Windows)
Temporarily zoom out (when Marquee Zoom tool is selected)
Tools

Ctrl


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


Adobe Photoshop CS5 (Windows)
Display the bounding box for transforming text when editing text, or activate Move tool if cursor is inside the bounding box
Select and Edit text

Ctrl


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/


Adobe Photoshop CS5 (Windows)
Toggle between Slice tool and Slice Selection tool
Slicing and Optimizing

Ctrl


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 After Effects CC (Windows)
Temporarily activate Selection Tool when a Pen Tool is selected
Activating Tools

Ctrl


Adobe After Effects CC (Windows)
In Shape Layer: Temporarily convert Selection Tool to Direct Selection Tool
Activating Tools

Ctrl


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

Command + /


Sonos Controller (Windows)
Increase/ decrease volume
22 Shortcuts for Sonos Controller (Windows)

Ctrl + + / -


Access 2016 (Windows)
Database Operation


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

Ctrl + /


Clink (Windows)
undo
BASH (GNU Readline) Line Editing

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 Illustrator CC (Windows)
Switch to last used selection tools
Selecting Shortcuts

Ctrl


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


Corel Painter 2017 (Windows)
Ajust Opacity
Brushes

Ctrl


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

+/-


InDesign CC (Windows)
Zoom in/Zoom out
Efficient Zoom & Pan

Ctrl + + / Ctrl + -


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


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

+