Eclipse

Editor

Jump to the editor window

F12

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)
Quick Load
General Hotkeys

F12


Firebug (Linux)
Open and close Firebug Panel
Managing Firebug

F12


Eclipse Helios (Windows)
Jump to Editor Window
Editor Window

F12


Firebug (MacOS)
Open and close Firebug Panel
Managing Firebug

F12


Microsoft Outlook 2010 (Windows)
Save Message as
Messages in Main View - Manage Messages

F12


Visual Studio 2015 (Windows)
Display symbol definition
Code Editor - IntelliSense and Code Helper

F12


Tally 9.0 (Windows)
Master Configurations, which will affect all companies in same data directory.
General Shortcuts

F12


Microsoft Outlook 2010 (Windows)
Save Message as
Messages in Compose View - Manage Messages

F12


Microsoft Excel 2011 (MacOS)
Display the Save As dialog box.
Function keys

F12


Visual Studio 2015 (Windows)
Display symbol definition
Coding - IntelliSense and Code Helper

F12


Adobe Illustrator CS5 (MacOS)
Revert
Function Keys

F12


Microsoft Outlook 2010 (Windows)
Save Message as
Calendar Shortcuts - Manage Messages

F12


Oracle SQL Developer 4 (Windows)
Rollback changes
Data Editor

F12


Microsoft Word 2007 (Windows)
Choose the Save As command (Microsoft Office Button ).
Function key reference: Function keys

F12


JetBrains Resharper 6 (Windows)
Go to next code issue (error, warning or suggestion)
Code analysis

F12


Smartplant Review (Windows)
Collision Detection
Function Keys

F12


Visual Studio 2015 (Windows)
Display symbol definition
Code Snippets (Visual C# Scheme) - IntelliSense and Code Helper

F12


UltraEdit (Windows)
Save the active document as a new file
File Menu

F12


Adobe Illustrator CS5 (Windows)
Revert
Function Keys

F12


Oracle SQL Developer 4 (Windows)
Rollback
Worksheet

F12


AutoCAD 2012 (Windows)
Toggle dynamic input mode
Toggle Drawing Modes

F12


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

F12


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

F12


Texmaker 4.0.2 (Windows)
Make index
"Tools" menu

F12


Beyond Compare (Windows)
Save file as...
File Menu

F12


IntelliJ (Linux)
Go back to previous tool window
Navigation

F12


Microsoft Word 2013 (Windows)
Save document as
Manage Word Documents and View

F12


IntelliJ (Windows)
Go back to previous tool window
Navigation

F12


Axialis IconWorkshop (Windows)
Revert
File Menu

F12


FL Studio (Windows)
Close all windows
Window Navigation

F12


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

F12


Qt Creator (MacOS)
Reverse direction
Debugging

F12


Qt Creator (Windows)
Reverse direction
Debugging

F12


Notepad++ 6 (Windows)
Toggle Post-It Mode
View menu

F12


Adobe Photoshop CS5 (MacOS)
Revert
Function keys

F12


Autodesk Maya 2015 (Windows)
Select - UV
Making Selections

F12


Adobe Photoshop CC (Windows)
Revert to last saved state
Basic Shortcuts for Photoshop CC 2015 - File Basics

F12


Adobe Photoshop CC (MacOS)
Revert to last saved state
Basic Shortcuts for PhotoShop CC 2015 - File Basics

F12


Adobe Photoshop CS5 (Windows)
Revert
Function keys

F12


Adobe After Effects CC (Windows)
Switch between Workspaces
Panels, Viewers, Workspaces, and Windows

Shift + F10 / F11 / F12


Skype for Business (Lync) 2016 (Windows)
Save the IM conversation.
Instant Messaging

F12


FreeMeta (Windows)
View new software updates.
FreeMeta software all shortcut keys

F12


Adobe After Effects CC (MacOS)
Switch between Workspaces
Panels, Viewers, Workspaces, and Windows

Shift + F10 / F11 / F12


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

F12


Microsoft Outlook 2016 (Windows)
Save as (only in Mail)
Common Commands: Common To Most Views

F12


Access 2016 (Windows)
Open the Save As Box
Database Operation

F12


Microsoft Excel 2016 (Windows)
Save file as via standard save dialog box
Select Cells - Open and Save Workbooks

F12


Microsoft Edge Browser (Windows)
Open developer tools pane
General

F12


Safari Browser (MacOS)
Open developer tools
General Shortcuts (Browser)

F12


Microsoft Edge Browser (Windows)
Step over (on Debugger tab)
Developer Tools (the following shortcuts are only applicable within the Developer Tools section)

F12


Access 2010 (Windows)
Open the Save As dialog box
Manage Databases

F12


Autodesk Maya 2017 (Windows)
Select - UV
Making Selections

F12


Microsoft Excel 2016 (Windows)
Save file as via standard save dialog box
Format Cells - Open and Save Workbooks

F12


Adobe Photoshop CC (Windows)
Revert to last saved state
Manage Panels - File Basics

F12


Adobe Photoshop CC (MacOS)
Revert to last saved state
Manage Panels - File Basics

F12


Adobe After Effects CC (Windows)
Switch to 3D view 3 (defaults to Active Camera)
3D Layers

F12


Adobe After Effects CC (MacOS)
Switch to 3D view 3 (defaults to Active Camera)
3D Layers

F12


Adobe Illustrator CC (MacOS)
Revert
Function Key Shortcuts

F12


Adobe Illustrator CC (Windows)
Revert
Function Key Shortcuts

F12


Hexagon 2 (MacOS)
Smoothed Solid and Edges Display
Select,Interface and Display Shortcuts

F12


Nuke 10 (Windows)
Clear buffer and cache
2D Viewer

F12


Hexagon 2 (Windows)
Smoothed Solid and Edges Display
Select,Interface and Display Shortcuts

F12


Nuke 10 (MacOS)
Clear buffer and cache
2D Viewer

F12


Nuke 10 (Linux)
Clear buffer and cache
2D Viewer

F12


Microsoft Excel 2016 (Windows)
Save file as via standard save dialog box
Formulas - Open and Save Workbooks

F12


Nuke 10 (Windows)
Clear buffers
Node Graph

F12


Nuke 10 (Linux)
Clear buffers
Node Graph

F12


Nuke 10 (MacOS)
Clear buffers
Node Graph

F12


ArchiCAD 20 (Windows)
Create Sun Study
Images

F12


ArchiCAD 20 (MacOS)
Create Sun Study
Images

F12


Windows Movie Maker (Windows)
Save a project with a new name
On timeline

F12


Microsoft Word 2016 (Windows)
Save Document
General Operation

Ctrl + S / F12


Microsoft Excel 2016 (Windows)
Save file as via standard save dialog box
Manage Workbooks - Open and Save Workbooks

F12


Microsoft Projects 2016 (Windows)
Display the Save As dialog box.
Working with dialog boxes

F12


Age of Empires (Windows)
Save the game
Game Commands

F12


Microsoft Word 2016 (Windows)
Choose the Save As command (Microsoft Office Button ).
All Function Key Shortcuts

F12


AutoCad Architecture 2017 (Windows)
Dynamic input
Function Keys

F12


AutoCAD 2016 (Windows)
Toggles Dynamic Input
General

F12


Microsoft Excel 2016 (Windows)
Save file as via standard save dialog box
Excel Auto Tables and Data Forms - Open and Save Workbooks

F12


Call of Duty (Windows)
Screenshot
General Game Controls

F12


Act! CRM (Windows)
Save a copy/create an empty copy of database
Activity Shortcuts

F12


JetBrains RubyMine (Windows)
Go back to Previous Tool Window
General Shortcuts

F12


JetBrains RubyMine (MacOS)
Go back to Previous Tool Window
General Shortcuts

F12


JetBrains RubyMine (Linux)
Go back to Previous Tool Window
General Shortcuts

F12


JetBrains AppCode (MacOS)
Go back to Previous Tool Window
General Shortcuts

F12


Mac OS Sierra 10.12 (MacOS)
Eject removable media, such as an optical disc.
Start Up and Boot Options

F12 / Eject


JetBrains PyCharm (Windows)
Go back to Previous Tool Window
Navigation

F12


IntelliJ (MacOS)
Go back to Previous tool window
Navigation Shortcuts

F12


JetBrains AppCode (MacOS)
Go back to Previous Tool Window
Navigation Controls

F12


Adobe Dreamweaver (Windows)
Real-time Preview in Primary Browser
Preview

F12


Blender 3D (Windows)
Start Rendering from Active Camera
Universal

F12


Daz 3D Carrara 8 (Windows)
Save As
Application - File

F12


Steinberg Cubase 9 (Windows)
VST performance
Devices Catagory

F12


Steinberg Cubase 9 (MacOS)
VST performance
Devices Catagory

F12


Daz 3D Carrara 8 (Windows)
Save As
Spline Modeler - File

F12


Corel WordPerfect X8 (Windows)
Create Table
63 Shortcuts for Corel WordPerfect X8 (Windows)

F12


Corel Draw X8 (Windows)
Open outline pen dialog
Outline Pen

F12


Corel Quattro Pro X8 (Windows)
Open Dialog Box specific to Object selected
Object Keys

F12


Edius (Windows)
Print to tape
General

F12


Daz 3D Carrara 8 (Windows)
Save As
Vertex Modeler - File

F12


Corel Quattro Pro X8 (Windows)
Display Properties of Active Cell/Cells
Function Keys

F12


Microsoft Excel 2016 (MacOS)
Display the Save As dialog
The following table provides the function key shortcuts for Excel 2016 for Mac*

F12


Final Fantasy XV (Windows)
Target nearest NPC or object
Targeting

F12


Chief Architect (Windows)
Floor Tools - Rebuild Walls/Floors/Ceilings
Floor Tools

F12


Kingsoft Writer 2016 (Windows)
Diaplay Save As Dialog Box
Display Various Objects and Dialog Box

F12


Chief Architect (MacOS)
Floor Tools - Rebuild Walls/Floors/Ceilings
Floor Tools

F12


Adobe Captivate 2017 (Windows)
Preview the project in a web browser (SWF)
Function Key Shortcuts

F12


Adobe Captivate 2017 (MacOS)
Preview project in browser
Recording

F12


Adobe Captivate 2017 (Windows)
Preview project in browser
Recording

F12


Kingsoft Spreadsheets 2016 (Windows)
Displays the Save As dialog box to save the file with a different name, type or location
Other Shortcuts

F12


Adobe Captivate 2017 (Windows)
Toggle mouse capture
Recording

F12


MetaTrader MT4 (Windows)
Move Chart by One Bar to Left
Function Key Shortcuts

F12


FxPro (Windows)
Full Screen Toggle
General Shortcuts

F12


Brackets (Windows)
Show Developer Tools
99 Shortcuts for Brackets (Windows)

F12


PotPlayer (Windows)
File Navigator
Function Key Shortcuts

F12


XYplorer (Windows)
Show Info Panel
Function key Shortcuts

F12


Jetbrains CLion (Windows)
Go back to previous tool window
Navigation Shortcuts

F12


Pegasus Mail (Web Application)
Switch to a monospaced view of the message (does not work in HTML or text/enriched messages)
Message Reader

F12


Xamarin Studio (MonoDevelop) (Windows)
Go to Declaration
Navigation Shortcuts

F12


Pegasus Mail (Web Application)
Edit message flags...
Grouped views

F12


GOM Player (Windows)
Open - ODD (CD/DVD)
Playback Control

F12


MPS 2017 (Windows)
Activate the last focused tool window
Navigation between IDE Components

F12


Libreoffice Writer (Windows)
Numbering on
Function Keys

F12


Delphi 10 (Windows)
Toggle between code view and design view
193 Shortcuts for Delphi 10 (Windows)

F12


Soundforge (Windows)
Play or Stop the contents of the data window in default mode
Navigation and Playback

F12 / Spacebar


ProRealTime (Windows)
Personal Template 12
Templates

F12


Visual Studio Code (Windows)
Go to Definition
Rich Language Editing

F12


CrazyTalk 8 (Windows)
Click the Preview button in Puppeteering Panel
Timeline Editing

F12


CrazyTalk 8 (Windows)
Click the Preview button in Puppeteering Panel
Puppeteering Panel

F12


CityEngine (Windows)
Show/hide models
48 Shortcuts for CityEngine (Windows)

F12


CityEngine (MacOS)
Show/hide models
48 Shortcuts for CityEngine (MacOS)

F12


Synfig (Windows)
Canvas Options (Grid size, etc.)
73 Shortcuts for Synfig (Windows)

F12


Rhino (Windows)
Dig Click
Default Shortcuts

F12


Tableau (Windows)
Reverts workbook to last saved state
General

F12


OpenSCAD (MacOS)
Thrown Together
Function Shortcuts

F12


CodeLite 10 (Windows)
Toggle current block folding
Editor

F12


Alphacam (Windows)
Snap to Parallel
Geometry Creation

F12


Exact Audio Copy
Metadata options
File menu

F12


Vivaldi
Developer tools
Window

F12


Gigabyte Aorus motherboard
Capture the current screen as an image and save it to your USB drive
Classic BIOS setup

F12


CuteFTP (Windows)
Hide or display individual log window
General

F12


CuteFTP (MacOS)
Hide or display individual log window
72 Shortcuts for CuteFTP (MacOS)

F12


HyperWorks (Windows)
Mesh
24 Shortcuts for HyperWorks (Windows)

F12


FlashFXP (Web Application)
Opens a new copy of FlashFXP
54 Shortcuts for FlashFXP (Web Application)

F12


winIDEA
BrowseGotoDefinition
Browse

F12


PSPad (Windows)
Save As... - Save open file as file
File

F12


Roblox Studio
Record a video
General

F12


Roblox
Record video
Misc

F12


dbForge SQL Complete
Enables to go to definition
General

F12


Comodo IceDragon (Windows)
Toggle Developer Tools
Tools

F12


Ableton Live 9 (Windows)
Toggle Device/Clip View
Showing and Hiding Results

Shift + Tab / F12


Inkscape (Windows)
Toggle dialogs - This temporarily hides all open dialogs; another F12 shows them again
Dialog

F12


Ableton Live 9 (MacOS)
Toggle Device/Clip View
Showing and Hiding Results

Shift + Tab / F12


Inkscape (MacOS)
Toggle dialogs
Dialogs

F12


Open Rails 0.6.2
Logger
Debug

F12


Xyplorer
Full Screen
Other Shortcuts

F12


DaVinci Resolve 15 (Mac)
Place on top
Edit menu

F12


DaVinci Resolve 14 (Windows)
Place On Top Edit
Edit

F12


DaVinci Resolve 14 (MacOS)
Place On Top Edit
Edit

F12


Spintires (PC)
Save screenshot (to appdata directory)
Misc

F12


Ulead PhotoImpact 8 (Windows)
Opens the Component Designer dialog box
Web Menu

F12


DaVinci Resolve 14 (Windows)
Place On Top
Edit

F12


DaVinci Resolve 14 (MacOS)
Place On Top
Edit

F12


Target 3001! (Windows)
Compute Airwires New(layout)
Function key Shortcuts

F12


Cobalt (Windows)
Track
70 Shortcuts for Cobalt (Windows)

F12


Assetto Corsa
(Steam related) Screenshot
In-game

F12


Deponia
Load a quicksave if exist
General

F12


WavePad Sound Editor (Windows)
Play fast speed
Play Operations

F12


WavPad Sound Editor (MacOS)
Play fast speed
Play Operations

F12


gEDA (Linux)
Enter lock mode
Other Important Shortcuts

F12


Battlezone 98 Redux
Select weapon
Weapons

F12


Europa Universalis IV
Steam screenshot
General

F12


MyPaint (Windows)
Reset view
Show View Menu

F12


Oracle RightNow
Save as
Editing records

F12


AVS Audio Editor (Windows)
Opens the About window
Miscellaneous

F12


BricsCAD (Windows)
Toggles the Quad display
Function Key Shortcuts

F12


BricsCAD (Linux)
Toggles the Quad display
Function Key Shortcuts

F12


Altium Designer (Windows)
Toggle Filter panel on/off
Common Schematic and PCB Editor Shortcuts

F12


BricsCAD (MacOS)
Toggles the Quad display
Function Key Shortcuts

F12


MuseScore (Windows)
Navigator
Display Shortcuts

F12


MuseScore (MacOS)
Navigator
Display Shortcuts

F12


KiCad 5.0.2
Switch to modern toolset with software graphics (fall-back)
GerbView

F12


TopSolid (Windows)
Display/Hide The Floating Icon Bars
Part Clamping

F12


SuperMemo (Windows)
Sleep and Learning Timeline
129 Shortcuts for SuperMemo (Windows)

F12


Aspire (Windows)
Toggle toolpath tab on
General Shortcuts

F12


Aspire (Windows)
Toggle Toolpath Tab on
Tab Navigation

F12


VCarve Pro (Windows)
Toggle Toolpath Tab on
General Shortcuts

F12


VCarve Pro (Windows)
Toggle Toolpath Tab on
Tab Navigation

F12


Kingdom Come: Deliverance
Take screenshot
Other

F12


Ableton Live 10
Toggle Device/Clip View
Showing and hiding views

F12


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

F12


KeyCreator (Windows)
Skip/Done in Function
Miscellaneous Shortcuts

F12 / End / Ctrl + Right Click


VisualBoyAdvance-M
Capture
General controls

F12


AVImark
Logout
General

F12


Tableau
Revert workbook to last saved state
Managing workbooks, sheets, and files (Tableau Desktop)

F12


Samsung TV
Change the channel
General

F12


AutoCAD
Toggle dynamic input mode
Toggle Drawing Modes

F12


Tibia
Magic shield
Action bar

F12


RPG Maker
Start a Play Test
Editor

F12


Old School RuneScape (OSRS)
Switch to the music tab
General

F12


ZoomText
Toggle voice
ZoomText Keyboard

F12


UiPath Studio
Stops the execution of the current workflow, in both normal and debug mode
Workflow execution

F12


Adobe Illustrator
Revert
Function keys

F12


Kerbal Space Program
Aerodynamic Forces Overlay
System/UI Commands

F12


Adobe Illustrator (Mac)
Revert
Function keys

F12


PyCharm 2018.2
Activate the last focused tool window.
Navigation Between IDE Components

F12


PaintShop Pro 2018
Save as
Single key shorcuts

F12


Nuke
Clear Buffers
Node graph

F12


Diablo
Auto Send messages during auto play
General

F12


Bluebeam Revu
Show start page tab
Miscellaneous

F12


StarCraft 2
Help
Interface

F12


CorelDRAW Graphics Suite 2018
Outline Pen...
General

F12


Logo Accounting
Export to Excel wizard
General

F12


Metapad
Calculate size
File menu

F12


Adobe Photoshop CC
Revert
Using function keys

F12


Inkscape
Toggle dialogs
Toggle visibility

F12


Microsoft FrontPage
Preview the current page in a Web browser.
Access and use views

F12


Virtual DJ 2018
Sampler 12 play_stop
General

F12


Microsoft Paint
Save the picture as a new file
Function keys

F12


MyPaint
Reset View (zoom, mirror, rotation)
View

F12


Oracle EBS Forms
Count query
General

F12


E-Sword
Next Bible verse
General

F12


Warcraft III
Toggle Chat Menu on/off
Menu commands

F12


Clipboard Master
Change display mode: red frames or darkened
Screenshots

F12


World of Warcraft
Backpack
Panels

F12


WavePad
Play Fast Speed
Play Operations

F12


Microsoft Word 2016
Choose the Save As command
Function key reference

F12


Microsoft Visual Studio 2017 (Most used shortcuts)
Edit.GoToDefinition
Edit

F12


Microsoft Visual Studio 2017 (All shortcuts)
TestExplorer.OpenTest
Test Explorer

F12


Counter Strike: Global Offensive
Take a screenshot
Miscellaneous

F12


IntelliJ IDEA (macOS)
Go back to previous tool window
Navigation

F12


IntelliJ IDEA (Windows, Linux)
Go back to previous tool window
Navigation

F12


PSPad
Save As...
File

F12


Comodo IceDragon
Toggle Developer Tools
Tools

F12


WinHex
Backup manager
File menu

F12


Brackets
Show Developer Tools
General

F12


WriteMonkey
Show / Toggle / Hide right pane modules
General

F12


WordPerfect X8
Create Table
General

F12


Zim
Toggle checkbox item to 'OK'
General

F12


LibreOffice Calc
Groups the selected data range
Function keys

F12


LibreOffice Writer
Numbering on
Function keys

F12


WinNc
Compression
General

F12


Qt Creator
Reverse direction
Debugging

F12


Sumatra PDF
Show / hide bookmarks (table of contents)
Viewing state

F12


Delphi
Toggle between code view and design view
General

F12


Guitar Pro
Preferences
General

F12


Maxthon
URL keys
Others

F12


WPS Office
Displays the Save As dialog box to save the file with a different name, type or location
General

F12


League of Legends
Take a screenshot
General

F12


Visual Studio Code (Mac)
Go to Definition
Rich languages editing

F12


Blender
Render current frame
General

F12


Visual Studio Code (Linux)
Go to Definition
Rich languages editing

F12


Visual Studio Code (Windows)
Go to Definition
Rich languages editing

F12


Chrome DevTools
Open whatever panel you used last
Opening DevTools

F12


Windows Movie Maker
Save a project with a new name
Timeline

F12


IrfanView
Paint dialog
Tools and dialogs

F12


Outlook 2016 and Outlook 2013
Save as (only in Mail view)
Commands in most views

F12


PeaZip
Extract all to...
Functional keys

F12


CoffeeCup HTML Editor
Split screen preview
View

F12


Firefox Quantum
Toggle developer tools
Tools

F12


Microsoft Excel 2016
Displays the Save As dialog box
Function keys

F12


Notepad++
Toggle post-it mode
View menu

F12


GOM Player
Open ODD (CD/DVD)
Playback control

F12


SQL Server Management Studio (SSMS)
Displays the definition for the selected symbol
Search

F12


Windows Calculator
Select QWORD
Programmer mode

F12


Uplay
Take a screenshot
General

F12


Steam
Take a screenshot
During game

F12


Overwatch
Spectate F12
Spectate

F12


Wordpad
Save the document as a new file
General

F12


HeidiSQL
Save SQL to a text file
SQL

F12


Microsoft Edge
Open F12 developer tools
Newer shortcuts

F12


Notepad2
Select syntax scheme
Syntax scheme, font

F12


Opera
Quickly edit most popular preferences
Preferences

F12


Internet Explorer (Windows)
Open Developer Tools.
The Rest

F12


Microsoft Outlook 2007 (Windows)
Save as.
Shortcuts for all Outlook 2007 Items

F12


Microsoft Excel 2007 (Windows)
Displays the Save As dialog box.
Function keys in Excel 2007

F12


IrfanView 4.42 (Windows)
Paint dialog
Tools and Dialogs

F12


Adobe After Effects CS5 (MacOS)
Switch to 3D view 3 (defaults to Active Camera)
3D Layers

F12


Adobe After Effects CS5 (Windows)
Switch to 3D view 3 (defaults to Active Camera)
3D Layers

F12


Microsoft Word 2010 (Windows)
Save document as
Manage Word Documents

F12


Scrivener 1.9.9
Preferences
Tools

F12