Eclipse

Running and debugging

Step out

F7

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


Civilization V (Windows)
Notification Log
General Hotkeys

F7


Microsoft OneNote 2010 (Windows)
Check spelling.
Various Other OneNote Shortcuts - The Rest

f7


Microsoft Projects 2010 (Windows)
Start Spellcheck
Access Projects 2010 Features

F7


Android Emulator (Windows)
Power Button
Other Device Keys

F7


Firefox (MacOS)
Caret Browsing
Navigation Controls

F7


Firefox (Linux)
Turn caret mode on or off (navigation with keyboard)
Inside Webpages

F7


Firefox (Windows)
Turn caret mode on or off (navigation with keyboard)
Inside Webpages

F7


Eclipse Helios (Windows)
Step out
Run and Debug

F7


Thunderbird (Windows)
Caret browsing (select text with keyboard)
Other Shortcuts

F7


Thunderbird (MacOS)
Caret browsing (select text with keyboard)
Other Shortcuts

F7


Thunderbird (Linux)
Caret browsing (select text with keyboard)
Other Shortcuts

F7


Tally 9.0 (Windows)
Select Journal Voucher
General Shortcuts

F7


SharpDevelop 4.0 (Windows)
Toggle breakpoint
Debugging

F7


Access 2010 (Windows)
Open the Visual Basic Editor from a selected property in the property sheet for a form or report
Manage Access Features - Design View

F7


Zune (Windows)
Mute sound
Playing Songs

F7


Dolphin File Manager 1.7 (Linux)
View Folders Panel
15 Shortcuts for Dolphin File Manager 1.7 (Linux)

F7


Total Commander 8 (Windows)
Create directory
Main Shortcuts

F7


Inpage (Windows)
To view 100% Zoom of text
For changing zoom or view

F7


Microsoft Excel 2011 (MacOS)
Check spelling
Function keys

F7


Microsoft PowerPoint 2003 (Windows)
Spelling and Grammar check
40 Shortcuts for Microsoft PowerPoint 2003 (Windows)

F7


Notepad++ 5 (Windows)
Search results window
Search

F7


Open Office Impress (Linux)
Spellcheck
Function Keys

F7


Adobe Illustrator CS5 (MacOS)
Show/hide Layers panel
Function Keys

F7


Tekla Structures 14.0 (Windows)
Snap to any position
General shortcuts

F7


MyLifeOrganized (Windows)
Expand entire outline or To-Do list
Navigating To-Do Lists

F7


Access 2010 (Windows)
Check spelling
Manage Access Features - Other Shortcuts

F7


Evernote (Windows)
Start spell-checking
Main Application Shortcuts - Managing Evernote

F7


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

F7


Microsoft Word 2007 (Windows)
Choose the Spelling command (Review tab).
Function key reference: Function keys

F7


Smartplant Review (Windows)
Frame Show Motion
Function Keys

F7


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

F7


Oracle SQL Developer 4 (Windows)
Step Into/ Step Out
Debug

F7 / Shift + F7


Oracle SQL Developer 4 (Windows)
Go to Next/ Previous Message
Navigate

Alt + F8 / F7


UltraEdit (Windows)
Insert time/date at cursor
Edit Menu

F7


Access 2010 (Windows)
Open the Visual Basic Editor from a selected property in the property sheet for a form or report
Working with Text and Data - Design View

F7


Adobe Illustrator CS5 (Windows)
Show/hide Layers panel
Function Keys

F7


Android Emulator (Linux)
Power Button
Other Device Keys

F7


AutoCAD 2012 (Windows)
Toggle grid mode
Toggle Drawing Modes

F7


Visual Studio 2015 (Windows)
Toggle between Design and Code behind pages
For HTML Pages

F7


Avid Media Composer 7 (Windows)
Adds a Blue locator to the clip
Capturing

F7


Avid Media Composer 7 (MacOS)
Adds a Blue locator to the clip
Capturing

F7


Texmaker 4.0.2 (Windows)
View Pdf
"Tools" menu

F7


Access 2010 (Windows)
Check spelling
Working with Text and Data - Other Shortcuts

F7


IntelliJ (Linux)
Step into
Debugging

F7


IntelliJ (Windows)
Step into
Debugging

F7


Beyond Compare (Windows)
Compare to...
Actions Menu

F7


Directory Opus (Windows)
Viewer pane
Lister Menu

F7


NetBeans 8 (Windows)
Step into/over
Debugging

F7 / F8


Beyond Compare (Windows)
Align with...
Edit Menu

F7


FL Studio (Windows)
Toggle Piano Roll
Window Navigation

F7


Access 2010 (Windows)
Open the Visual Basic Editor from a selected property in the property sheet for a form or report
Working with Access Views - Design View

F7


Presonus Studio One (Windows)
Show effects
View Menu

F7


Axialis IconWorkshop (Windows)
Customize Windows icons...
Edit Menu

F7


Adobe Flash Professional (Windows)
Add Blank Keyframe
Frames

F7


Comsol 5 (Windows)
Build the selected node in the geometry and mesh branches, compute the selected study step, or compute the selected node in the solver sequence
Build and Compute

F7


Comsol 5 (Linux)
Build the selected node in the geometry and mesh branches, compute the selected study step, or compute the selected node in the solver sequence
Build and Compute

F7


Comsol 5 (MacOS)
Build the selected node in the geometry and mesh branches, compute the selected study step, or compute the selected node in the solver sequence
Build and Compute

F7


Microsoft Excel 2013 (Windows)
Display the Spelling dialog box
Various Excel Features

F7


Windows 10 Command Prompt (Windows)
Show history of previous commands
Recall Commands

F7


Microsoft Word 2013 (Windows)
Choose the Spelling command (Review tab).
Review Documents

F7


Access 2010 (Windows)
Check spelling
Working with Access Views - Other Shortcuts

F7


Notepad++ 6 (Windows)
Switch to Search results window (was Activate sub view before v5.2)
Search menu

F7


uTorrent (Windows)
Show Category List
21 Shortcuts for uTorrent (Windows)

F7


uTorrent (Linux)
Show Category List
21 Shortcuts for uTorrent (Linux)

F7


Adobe Photoshop CS5 (MacOS)
Show/Hide Layers panel
Function keys

F7


uTorrent (MacOS)
Show Category List
21 Shortcuts for uTorrent (MacOS)

F7


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

F7


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

F7


Adobe Photoshop CS5 (Windows)
Show/Hide Layers panel
Function keys

F7


Microsoft Excel 2010 (Windows)
Display the Spelling dialog box.
Various Excel Features

F7


Access 2010 (Windows)
Open the Visual Basic Editor from a selected property in the property sheet for a form or report
The Rest - Design View

F7


Microsoft Outlook 2016 (Windows)
Check spelling
Common Commands: Common To Most Views

F7


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

F7


Microsoft Edge Browser (Windows)
Toggle caret browsing
Navigation

F7


Adobe After Effects CC (Windows)
Take Snapshot
Previews

Shift + F5 / F6 / F7 / F8


Adobe Photoshop CC (MacOS)
Toggle Layers Window
Basic Shortcuts for PhotoShop CC 2015 - Windows Basics

F7


Adobe After Effects CC (Windows)
Display Snapshot in active Viewer
Previews

F5 / F6 / F7 / F8


Adobe After Effects CC (Windows)
Purge snapshot
Previews

Ctrl + Shift + F5 / F6 / F7 / F8


Access 2016 (Windows)
Open VB Editor/Open the choose builder dialog box
Windows/Content Switching/Navigation

F7


Adobe After Effects CC (MacOS)
Take Snapshot
Previews

Shift + F5 / F6 / F7 / F8


Adobe After Effects CC (MacOS)
Display Snapshot in active Viewer
Previews

F5 / F6 / F7 / F8


Adobe After Effects CC (MacOS)
Purge snapshot
Previews

Command + Shift + F5 / F6 / F7 / F8


Access 2016 (Windows)
Check Spelling
Design/Content Operation(on selected control)

F7


Microsoft OneNote 2016 (Windows)
Check spelling
The Rest

F7


Microsoft PowerPoint 2016 (Windows)
Spelling Checker
Edit and General Text Operations

F7


Access 2010 (Windows)
Check spelling
The Rest - Other Shortcuts

F7


InDesign CC (Windows)
Layers
Panels

F7


InDesign CC (MacOS)
Layers
Panels

F7


Nuke 10 (Windows)
Render selected comp container
Timeline

F7


Adobe Illustrator CC (MacOS)
Show/hide layers panel
Function Key Shortcuts

F7


Nuke 10 (MacOS)
Render selected comp container
Timeline

F7


Adobe Illustrator CC (Windows)
Show/hide layers panel
Function Key Shortcuts

F7


Nuke 10 (Linux)
Render selected comp container
Timeline

F7


Hexagon 2 (MacOS)
Normal Interface
Select,Interface and Display Shortcuts

F7


Hexagon 2 (Windows)
Normal Interface
Select,Interface and Display Shortcuts

F7


Adobe Photoshop CC (Windows)
Toggle Layers Window
Manage Panels - Windows Basics

F7


Adobe Photoshop CC (MacOS)
Toggle Layers Window
Manage Panels - Windows Basics

F7


FileMaker Pro (MacOS)
Step Out command
Script Debugger (Pro Advanced Only)

F7


CINEMA 4D (Windows)
Stop
Animation Timeline

F7


FileMaker Pro (Windows)
Step Out command
Script Debugger (Pro Advanced Only)

F7


ArchiCAD 20 (Windows)
Clean Walls & Beam Intersections
Options

F7


ArchiCAD 20 (MacOS)
Clean Walls & Beam Intersections
Options

F7


Dynamics NAV 2015 (Windows)
Display Statistics
Function Key Shortcuts

F7


Microsoft Word 2016 (Windows)
Spelling Checker
Text Editing/Graphics editing Operations

F7


Dynamics SL 2015 (Windows)
Inserts today’s date in a date field
Function Key Shortcuts

F7


Dynamics AX 2015 (Windows)
Compile an application object
Working with AOT

F7


Autodesk Inventor 2017 (Windows)
Slice graphics
Function Key

F7


Microsoft Word 2016 (Windows)
Choose the Spelling command (Review tab).
All Function Key Shortcuts

F7


Autodesk Revit Architecture (Windows)
Spelling
Function Keys

F7


CyberLink PhotoDirector 8 (Windows)
Switch to viewer only mode in photo viewer window
Workspace

F7


AutoCad Architecture 2017 (Windows)
Grid mode
Function Keys

F7


AutoCAD 2016 (Windows)
Toggles GRIDMODE
General

F7


Apple Motion (MacOS)
Show/hide the HUD
Window Menu

F7


Silhouette Studio (MacOS)
Spelling
Edit

F7


Silhouette Studio (Windows)
Spelling
Edit

F7


Adobe Flash Professional (MacOS)
Add Blank Keyframe
Frames

F7


Act! CRM (Windows)
Task List
View Shortcuts

F7


GTA V Cheats (Windows)
Switch to Traver
General Shortcuts

F7


IntelliJ (MacOS)
Step Into
Debugging Shortcuts

F7


JetBrains PyCharm (Windows)
Step Into
Debugging

F7


Microsoft Excel 2016 (Windows)
Display the spelling dialog box
The Rest

F7


Adobe Flash Builder (Windows)
Step Return/Exit current function
24 Shortcuts for Adobe Flash Builder (Windows)

F7


JetBrains RubyMine (MacOS)
Step Into
Debugging

F7


Adobe Flash Builder (MacOS)
Step Return/Exit current function
24 Shortcuts for Adobe Flash Builder (MacOS)

F7


JetBrains RubyMine (Windows)
Step Into
Debugging

F7


JetBrains RubyMine (Linux)
Step Into
Debugging

F7


JetBrains PyCharm (MacOS)
Step Into
Debugging

F7


JetBrains AppCode (MacOS)
Step Into
Debugging Shortcuts

F7


JetBrains PhpStorm (Windows)
Step Into
Debugging

F7


JetBrains PhpStorm (MacOS)
Step Into
Debugging

F7


Blender 3D (Windows)
Display Object Context
Universal

F7


Adobe RoboHelp (Windows)
Spell checking
General Shortcuts

F7


JetBrains PhpStorm (Linux)
Step Into
Debugging

F7


Adobe Dreamweaver (Windows)
Search
Windows

F7


Microsoft Excel 2016 (MacOS)
Check spelling
Frequently used shortcuts

F7


Microsoft Hotmail (Web Application)
Check Spelling
14 Shortcuts for Microsoft Hotmail (Web Application)

F7


Steinberg Cubase 9 (Windows)
Open sound browser
Media

F7


Steinberg Cubase 9 (MacOS)
Open sound browser
Media

F7


Corel Designer X7 (Windows)
Zoom to Page
Zoom

F7


Corel Ventura 10 (Windows)
Previous Dialog
Zoom and View

F7


Corel Draw X8 (Windows)
Ellipse tool
Toolbox Tool Selection

F7


Opera (MacOS)
Activate panels for keyboard navigation
Panel

F7


Opera (Windows)
Activate panels for keyboard navigation
Panel

F7


Corel Quattro Pro X8 (Windows)
Refresh Output of Previous Notebook Query
Function Keys

F7


Microsoft Word 2016 (MacOS)
Open the Spelling and Grammar dialog box
Function key shortcuts

F7


Corel Quattro Pro X8 (Windows)
Open Writing Tools Dialog Box
Excel Compatibility Keys

F7


Microsoft Excel 2016 (MacOS)
Check spelling
The following table provides the function key shortcuts for Excel 2016 for Mac*

F7


Kingsoft Spreadsheets 2016 (Windows)
Display Spelling Check Dialog Box
Display Various Objects

F7


Flock (Windows)
Caret browsing
General

F7


Adobe Captivate 2017 (MacOS)
Perform a spelling and grammar check
Function Key Shortcuts

F7


Adobe Captivate 2017 (Windows)
Perform a spelling and grammar check
Function Key Shortcuts

F7


Kingsoft Writer 2016 (Windows)
Spelling Check Dialog Box
Display Various Objects and Dialog Box

F7


Chief Architect (Windows)
Swap Views
Other Shortcuts

F7


Adobe Captivate 2017 (Windows)
Stop panning
Recording

F7


Chief Architect (MacOS)
Swap Views
Other Shortcuts

F7


Primevera P6 P6 (Windows)
Spell Checking
General Shortcuts

F7


MetaTrader MT4 (Windows)
Call the properties Window of the expert atched to their chart window in order to Change Settings
Function Key Shortcuts

F7


WinSCP 5 (Windows)
Create new folder
File Management

F7


Brackets (Windows)
Sort Lines
99 Shortcuts for Brackets (Windows)

F7


PotPlayer (Windows)
Equalizer Settings
Function Key Shortcuts

F7


XYplorer (Windows)
Go to Previous Location
Function key Shortcuts

F7


Flock (MacOS)
Caret browsing
45 Shortcuts for Flock (MacOS)

F7


Forte (Windows)
Spelling
Composition Window

F7


MediaMonkey (Windows)
Show Library node (collapsed)
Standard Keyboard Shortcuts

F7 / Alt + Home


Jetbrains CLion (Windows)
Step into
Debugging

F7


CA Client Automation (Windows)
Trace Into
Debug Menu

F7


Groove Music (Windows)
Mute/Unmute Volume
Music Play

F7


Pegasus Mail (Web Application)
Switch to the Attachments view
Message Reader

F7


MPS 2017 (Windows)
Step to the next executed line See Stepping Through the Program
Running and Debugging

F7


Delphi 10 (Windows)
Debugger step into
193 Shortcuts for Delphi 10 (Windows)

F7


Xamarin Studio (MonoDevelop) (Windows)
Build
Project

F7


Libreoffice Writer (Windows)
Spellcheck
Function Keys

F7


Titanium (MacOS)
Step Return
Run/Debug

F7


iClone 7 (Windows)
Show/Hide Visual Settings Panel
OnScreen Display

F7


GOM Player (Windows)
Control Panel
Windows

F7


Soundforge (Windows)
Generate MIDI timecode
Navigation and Playback

F7


DrawPlus (Windows)
Target (Draw in Front)
Tools Shortcuts

F7


Pencil2D (Windows)
Add Frame
57 Shortcuts for Pencil2D (Windows)

F7


Rhino (Windows)
Grid > ShowGrid > ShowGridAxes
Default Shortcuts

F7


Vegas Pro 14 (Windows)
Generate MIDI timecode
Playback,Recording and Preview

F7


Cabinet Vision (Windows)
Opens CAD Options
Getting Different Program Quickly

F7


Alphacam (Windows)
Snap to Mid Point
Geometry Creation

F7


RStudio (Windows)
Check spelling
Source

F7


RStudio (MacOS)
Check spelling
Source

F7


ForkLift 3
Create a new folder
Commander style

F7


Titanium (Windows)
Step Return
Run/Debug

F7


Solidworks 2019
Spell check
Commands

F7


Zwift (PC and macOS)
"I’m toast"
Function

F7


Smite (MacOS)
Vote to Not Surrender
Other Controls

F7


Smite (Windows)
Vote to Not Surrender
Other Controls

F7


Gigabyte Aorus motherboard
Load the optimized BIOS default settings for the current submenus
Classic BIOS setup

F7


Vivaldi
Focus panel
View

F7


progeCAD (Windows)
Turns the reference grid on and off
51 Shortcuts for progeCAD (Windows)

F7


winIDEA
Compile / assemble all modified project files and link to an executable file
Project

F7


Miscreated
Emote: Thumbs up
Emote

F7


HyperWorks (Windows)
Node Edit :Align
24 Shortcuts for HyperWorks (Windows)

F7


Ansys Mechanical (Windows)
Executes Zoom to Fit Options
Graphics Actions

F7


FlashFXP (Web Application)
Open Edit Custom Commands dialog.
54 Shortcuts for FlashFXP (Web Application)

F7


Geany (MacOS)
Switch to Search Bar
Finding text,Selecting text

F7


Sitecore CMS
Subscribe to the RSS feed for the selected item
Content Editor

F7


Geany (Windows)
Switch to Search Bar
Finding text,Selecting text

F7


Geany (Linux)
Switch to Search Bar
Finding text,Selecting text

F7


CodeLite 10 (Windows)
Step over a code block
Debug

F7


TurboCAD (Windows)
Select next object in back order
171 Shortcuts for TurboCAD (Windows)

F7


progeCAD (Windows)
Turns the reference grid on and off
Function Key Shortcuts

F7


Mastercam (Windows)
Show Modify menu
53 Shortcuts for Mastercam (Windows)

F7


Xyplorer
Jump back and forth between this and the previous page
Other Shortcuts

F7


VariCAD (Windows)
Set 2D Cursor
Hot Keys

F7


Place Anywhere (Fallout 4 mod)
Lock / unlock hightlighted object selection. While selection locked, no other object will be hightlighted, when your move your aim on it
General

F7


Ulead PhotoImpact 8 (Windows)
Launches the Acquire scanner process without post processing
File Menu

F7


PSPad (Windows)
Spell Check
Tools

F7


FEKO (Windows)
Stop
Script Editor

F7


FEKO (Linux)
Stop
Script Editor

F7


Comodo IceDragon (Windows)
Caret Browsing
Miscellaneous

F7


Modo (Windows)
Graph Editor
Floating Windows

F7


Modo (MacOS)
Graph Editor
Floating Windows

F7


Wordfast Pro (Windows)
Spell Check
100 Shortcuts for Wordfast Pro (Windows)

F7


Wordfast Pro (MacOS)
Spell Check
100 Shortcuts for Wordfast Pro (MacOS)

F7


Cobalt (Windows)
Group
70 Shortcuts for Cobalt (Windows)

F7 / Alt + G


Target 3001! (Windows)
Zoom Image Full Size
Function key Shortcuts

F7


Roblox Studio
Start server and client
Testing and Publishing

F7


RStudio (Mac)
Check Spelling
Source

F7


gEDA (Linux)
Enter buffer mode
Other Important Shortcuts

F7


RStudio
Check Spelling
Source

F7


Assetto Corsa
FPS mode
Showroom

F7


Oracle RightNow
Spell check
Editing records

F7


BricsCAD (Windows)
Toggles the display of the grid
Function Key Shortcuts

F7


BricsCAD (Linux)
Toggles the display of the grid
Function Key Shortcuts

F7


BricsCAD (MacOS)
Toggles the display of the grid
Function Key Shortcuts

F7


Banner 9 (Windows, Mac)
Search/Open Filter Query
Windows shortcuts

F7


KiCad 5.0.2
Switch to Inner layer 3
Pcbnew

F7


DraftSight (Windows)
Turns Grid display On/Off
37 Shortcuts for DraftSight (Windows)

F7


SuperMemo (Windows)
Spell Check
129 Shortcuts for SuperMemo (Windows)

F7


Pharaoh
Set to 640x480 resolution
General

F7


MyLibreOfficeMediaFKeys (Linux)
Stop
MediaPlayerFKeys

F7


FlexiSign Pro 8.1 (Windows)
Spell Check
Text Shortcuts

F7


FlexiSign Pro 8.1 (MacOS)
Spell Check
Text Shortcuts

F7


PRTG Network Monitor
Context menu > Tools > Custom tool command (if available)
Enterprise console

F7


KeyCreator (Windows)
Menu Button 7
Miscellaneous Shortcuts

F7


Tableau
Switch in and out of Presentation Mode
Managing workbooks, sheets, and files (Tableau Desktop)

F7


American Truck Simulator
Route Advisor: Information about orders
Interface controllers

F7


AVImark
Remove
Information search / Library

F7


DayZ
Point (Experimental branch)
Communication

F7


RimWorld
Opens the History tab
User interface

F7


Samsung TV
Display list of available channels
General

F7


Altium Designer (Windows)
Step into the current source line
Embedded Software Editor (.c]then[.asm) Shortcuts

F7


Altium Designer (Windows)
Run simulationthenstepping into procedures/functions
VHDL Editor Shortcuts

F7


AutoCAD
Toggle grid mode
Toggle Drawing Modes

F7


Altium Designer (Windows)
Step into the current source line
Scripting Editor Shortcuts

F7


Lacerte
Check spelling
Letter Editor

F7


Siemens NX
Rotate
View > Popup

F7


Tibia
(Attack) Death strike
Action bar

F7


RPG Maker
Region layer
Editor

F7


Adobe Lightroom Classic (Mac)
Show/hide left panels
Working with panels

F7


Adobe Lightroom Classic
Show/hide left panels
Working with panels

F7


PyCharm 2018.2
Navigate to the next difference in view.
Navigation Between IDE Components

F7


UiPath Studio
Runs the currently opened workflow in debug mode
Debugging

F7


Old School RuneScape (OSRS)
Switch to the Clan Chat tab
General

F7


Evernote for Windows
Check Spelling
Note Editor

F7


ZoomText
Decrease speaking rate
ZoomText Keyboard

F7


ePSXe
Enable Xenogeras trick
General

F7


Adobe Illustrator
Show/hide Layers panel
Function keys

F7


Adobe Illustrator (Mac)
Show/hide Layers panel
Function keys

F7


Bluebeam Revu
Spell check
Markup & editing

F7


PaintShop Pro 2018
Histogram
Single key shorcuts

F7


ProgeCAD
Grid
General

F7


Call of Duty: Black Ops 4
Accept party invite
Interface

F7


AI War Classic
(hold)  Show enemy ships only
Minimap

F7


CorelDRAW Graphics Suite 2018
Ellipse
General

F7


Diablo II
Sets or uses left / right mouse button skills
General

F7


Diablo
Highlight spells in spell book and press F5 - F8 to assign hotkey. Once the hotkey is assigned, the key will prepare that specific spell
General

F7


Magic: The Gathering Online
Place all like triggers on the stack automatically
General

F7


Nuke
Render selected Write nodes
Node graph

F7


World of Tanks
Help!
Misc

F7


Adobe Photoshop CC
Show/Hide Layers panel
Using function keys

F7


Heroes of the Storm
Go to saved camera location
General

F7


BSPlayer
Increase post processing
Misc

F7


Microsoft FrontPage
Check spelling on a Web page.
Work with and manage Web pages

F7


Metapad
Long format
Insert date/time

F7


Euro Truck Simulator 2
Route Advisor: Information about orders
Interface controls

F7


Virtual DJ 2018
Sampler 7 play_stop
General

F7


LightWave 3D
Layers panel
Modeler: General

F7


TextRoom
MiniFlo
General

F7


Oracle EBS Forms
Clear block
General

F7


PDF-XChange Editor
Start spell checking
General

F7


E-Sword
Spell Check Editors only
General

F7


Dota 2
Opens a window showing experiences graphs of Radiant and Dire
Spectator & replay controls

F7


Riffstation Desktop
Pitch down (-1 semitone)
General

F7


Microsoft Word 2016
Choose the Spelling command (Review tab)
Function key reference

F7


IntelliJ IDEA (Windows, Linux)
Step into
Debugging

F7


IntelliJ IDEA (macOS)
Step into
Debugging

F7


Ditto
Create a New Group and place the currently selected Clips in that Group
General

F7


Apple iBooks
(if you’ve assigned them in the Styles drawer) Apply a paragraph, character, or list style
Format text

F7


Microsoft Visual Studio 2017 (Most used shortcuts)
[Settings Designer] View.ViewCode
View

F7


Grand Theft Auto V
Switch to Trevor
General

F7


GoldWave
Pause
Main Window

F7


NetBeans
Step into
Debugging

F7


LibreOffice Impress
Spellcheck
Function keys

F7


LibreOffice Basic IDE
Add watch for the variable at the cursor
General

F7


Comodo IceDragon
Caret Browsing
Miscellaneous

F7


PSPad
Spell Check
Tools

F7


LibreOffice Draw
Checks spelling
Function keys for drawings

F7


LibreOffice Base
Add table or query
Query design

F7


Brackets
Sort Lines
General

F7


WriteMonkey
Toggle spell checking on / off
General

F7


WinHex
Text display only
View

F7


LibreOffice Writer
Spellcheck
Function keys

F7


LibreOffice Calc
Checks spelling in the current sheet
Function keys

F7


Microsoft Visual Studio 2017 (All shortcuts)
View.ViewCode
Settings Designer

F7


Tekla Structures 20
Snap to any position
General

F7


REAPER
Screenset: Load window set #01
Section: Main

F7


WinNc
Create directory / Mkdir / Make Dir
General

F7


Maple
Spellcheck
Menu accelerators

F7


Multi Commander
File Tools - Create Folder
File Manager

F7


Midnight Commander
Make directory.
Function keys

F7


Clementine
Stop
Playback

F7


Delphi
Debugger step into
General

F7


The Bat!
Message Finder
Invoking tools

F7


FileMaker
Step Out command
FileMaker Pro Advanced: Script Debugger

F7


Guitar Pro
Stylesheet
General

F7


Maxthon
URL keys
Others

F7


WinMerge
Go to previous difference
Comparing files

F7


WPS Office
Displays the Spelling dialog box to check spelling in the active worksheet or selected range
General

F7


MediaMonkey
Show library node (collapsed)
General

F7


SQL Server Management Studio (SSMS)
Apply filter
Replication Conflict Viewer

F7


Xcode
Step Into
Product menu

F7


IrfanView
Move file
Copy, paste and select

F7


Outlook.com
Check spelling
Compose

F7


Microsoft Excel 2016
Opens the Spelling dialog box to check spelling in the active worksheet or selected range
Function keys

F7


Microsoft Access 2016
Check spelling
Miscellaneous keyboard shortcuts

F7


7-Zip
Create new folder
File menu

F7


PeaZip
Add to bookmarks
Navigation

F7


Microsoft Internet Explorer 11
Start Caret Browsing
Browsing

F7


Outlook 2016 and Outlook 2013
Check spelling
Commands in most views

F7


Paint.NET
Show / hide layers window
Options in the View menu

F7


Windows 3.1
Move
Menu features

F7


WinSCP
Create new folder
Selected files

F7


Notepad++
Switch to search results window
Search menu

F7


Firefox Quantum
Caret browsing
Miscellaneous

F7


uTorrent
Show category list
General

F7


Opera
Activate panels for keyboard navigation
Panel keys: Activation

F7


Mozilla Thunderbird
Toggle Caret browsing (select text with keyboard)
Managing messages

F7


Portal 2
Quick load
Miscellaneous

F7


Microsoft Movies and TV
Mute the sound
General

F7


Microsoft Groove
Mute volume
General

F7


GOM Player
Control panel
Windows

F7


Windows Media Player 11
Mute and unmute the volume
Play music with shortucts

F7


Android Studio
Step into
Debugging

F7


Windows Calculator
Select OCT
Programmer mode

F7


Overwatch
Spectate 7
Spectate

F7


Total Commander
Create directory
File manipulation

F7