MPS 2017 (Windows)

Search

Navigate to the next/previous occurrence of a selected word in the editor

F3 / Shift + F3

All hotkeys for MPS 2017 (Windows)

Advanced Editing
Comment/uncomment current line or selected block with line comments

Ctrl + /

Advanced Editing
Comment/uncomment code with block comments

Ctrl + Shift + /

Advanced Editing
Show the Highlighting level pop-up window to configure highlighting in the current file

Ctrl + Shift + Alt + H

Advanced Editing
Show parameters of the method call at the caret

Ctrl + P

Advanced Editing
Show the current method or class declaration when it is not visible

Alt + Q

Advanced Editing
Show an error or warning description at the caret

Ctrl + F1

Advanced Editing
Open browser with the documentation for the selected item

Shift + F1

Advanced Editing
Override base class methods in the current class

Ctrl + O

Advanced Editing
Surround selected code fragment with if, do, tags or other constructs

Ctrl + Alt + T

Advanced Editing
Code completion for any class, method or variable

Ctrl + Spacebar

Advanced Editing
Code Completion filtering the lookup list basing on expected type

Ctrl + Shift + Spacebar

Advanced Editing
Goes through the names of classes, methods, keywords and variables in the current visibility scope

Alt + /

Advanced Editing
Show a pop-up list of starting with a specified prefix

Ctrl + J

Advanced Editing
Surround the selection with one of the templates

Ctrl + Alt + J

Advanced Editing
In templates: move the caret to the next template variable

Tab

Advanced Editing
In templates: move the caret to the previous template variable

Shift + Tab

Basic Editing
Delete a character to the left of the caret

Backspace

Basic Editing
Undo last operation

Ctrl + Z

Basic Editing
Redo last undone operation

Ctrl + Shift + Z

Basic Editing
Cut a current line or a selected code block to the Clipboard

Ctrl + X

Basic Editing
Copy a current line or a selected code block to the Clipboard

Ctrl + C

Basic Editing
Paste from the Clipboard to the caret location

Ctrl + V

Basic Editing
Paste selected entry from the Clipboard to the caret location

Ctrl + Shift + V

Basic Editing
Move the caret one line up

Up Arrow

Basic Editing
Move the caret one line up selecting the text

Shift + Up Arrow

Basic Editing
Move the caret one line down

Down Arrow

Basic Editing
Move the caret one line down selecting the text

Shift + Down Arrow

Basic Editing
Move the caret one character to the left

Left Arrow

Basic Editing
Move the caret one character to the left selecting the text

Shift + Left Arrow

Basic Editing
Move the caret one character to the right

Right Arrow

Basic Editing
Move the caret one character to the right selecting the text

Shift + Right Arrow

Basic Editing
Move the caret down to the page bottom

Ctrl + PgDn

Basic Editing
Move the caret down to the page bottom, selecting the text

Ctrl + Shift + PgDn

Basic Editing
Move the caret up to the page top

Ctrl + PgUp

Basic Editing
Move the caret up to the page bottom, selecting the text

Ctrl + Shift + PgUp

Basic Editing
Move the caret one Page down

PgDn

Basic Editing
Move the caret one Page down, selecting the text

Shift + PgDn

Basic Editing
Move the caret one Page up

PgUp

Basic Editing
Move the caret one Page up, selecting the text

Shift + PgUp

Basic Editing
Scroll the text one line down

Ctrl + Down Arrow

Basic Editing
Scroll a line at caret to the center of the screen

Ctrl + M

Basic Editing
Scroll the text one line up

Ctrl + Up Arrow

Basic Editing
Move the caret to the end of line

End

Basic Editing
Move the caret to the end of line, selecting the text

Shift + End

Basic Editing
Move the caret to the beginning of line

Home

Basic Editing
Move the caret to the beginning of line, selecting the text

Shift + Home

Basic Editing
Move the caret to the next word

Ctrl + Right Arrow

Basic Editing
Move the caret to the next word, selecting it

Ctrl + Shift + Right Arrow

Basic Editing
Move the caret to the previous word

Ctrl + Left Arrow

Basic Editing
Move the caret to the previous word, selecting it

Ctrl + Shift + Left Arrow

Basic Editing
Move the caret to the end of text

Ctrl + End

Basic Editing
Move the caret to the end of text, selecting it

Ctrl + Shift + End

Basic Editing
Move the caret to the beginning of text

Ctrl + Home

Basic Editing
Move the caret to the beginning of text, selecting it

Ctrl + Shift + Home

Basic Editing
Select the entire text opened in the editor

Ctrl + A

Basic Editing
Delete the line where the caret is currently located

Ctrl + Y

Basic Editing
Delete the word starting from the current caret location up to the word end

Ctrl + Delete

Basic Editing
Delete the word starting from the current caret location up to the word start

Ctrl + Backspace

Basic Editing
Toggle insert/overwrite modes

Insert

Basic Editing
Duplicate selected block or the line at the caret

Ctrl + D

Basic Editing
Toggle case of the selected text block

Ctrl + Shift + U

Basic Editing
Move the caret to the current code block end, highlighting the block limits

Ctrl + ]

Basic Editing
Move the caret to the current code block end, selecting the code beginning from the initial caret location

Ctrl + Shift + ]

Basic Editing
Move the caret to the current code block start, highlighting the block limits

Ctrl + [

Basic Editing
Move the caret to the current code block start, selecting the code beginning from the initial caret location

Ctrl + Shift + [

Basic Editing
Start a new line after the current one positioning the caret in accordance with the current indentation level

Shift + Enter

Basic Editing
Start a new line before the current one

Ctrl + Alt + Enter

Basic Editing
Concatenate the selected lines into one or concatenate the line where the caret is currently located with the next line

Ctrl + Shift + J

Basic Editing
Split the selected line at the point where the caret is located, leaving the caret at the end of the first line

Ctrl + Enter

Basic Editing
Select successively increasing code blocks starting from the current caret location

Ctrl + W

Basic Editing
Remove sequentially the selection made by the action

Ctrl + Shift + W

Basic Editing
Move the selected block to the next indentation level

Tab

Basic Editing
Move the selected block to the previous indentation level

Shift + Tab

Basic Editing
Indent the current line or selected block according to the General settings

Ctrl + Alt + I

Code Folding
Expand the current collapsed fragment

Ctrl + NumPad +

Code Folding
Collapse the current folding region

Ctrl + NumPad -

Code Folding
Expand the current folded fragment and all the subordinate collapsed folding regions within that fragment

Ctrl + Alt + NumPad +

Code Folding
Collapse the current folding region and all the subordinate folding regions within it

Ctrl + Alt + NumPad -

Code Folding
Expand all collapsed fragments within the selection, or, if nothing is selected, expand all the collapsed fragments in the current file

Ctrl + Shift + NumPad +

Code Folding
Collapse all folding regions within the selection, or, if nothing is selected, collapse all the folding regions in the current file

Ctrl + Shift + NumPad -

Code Folding
Expand the current fragment and all the nested fragments up to the specified level

Ctrl + NumPad 1..5

Code Folding
Expand all the collapsed fragments in the file up to the specified nesting level

Ctrl + Shift + NumPad 1..5

Code Folding
Collapse the selected fragment and create a custom folding region for it to make it "foldable" / Expand the current fragment and remove the corresponding custom folding region to make the fragment "unfoldable"

Ctrl + .

Running and Debugging
Run a program

Shift + F10

Running and Debugging
Quickly select run/debug configuration and run or edit it

Shift + Alt + F10

Running and Debugging
Repeat execution with the same settings, with the same tab of the Run tool window having the focus

Ctrl + F5

Running and Debugging
Repeat execution with the same settings, with the same tab of the editor having the focus

Shift + F10

Running and Debugging
Debug a program

Shift + F9

Running and Debugging
Quickly select run/debug configuration and debug or edit it

Shift + Alt + F9

Running and Debugging
Step to the next line in the current file See Stepping Through the Program

F8

Running and Debugging
Step to the next executed line See Stepping Through the Program

F7

Running and Debugging
Select the method to step in, if the current line contains multiple method call expressions See Choosing a Method to Step Into

Shift + F7

Running and Debugging
Step to a first executed line after returning from the current method See Stepping Through the Program

Shift + F8

Running and Debugging
Run until the next line in this method or file, skipping the methods referenced at the current execution point and ignoring breakpoints See Stepping Through the Program

Shift + Alt + F8

Running and Debugging
Steps into the method called in the current execution point even if this method is to be skipped See Stepping Through the Program

Shift + Alt + F7

Running and Debugging
Run to the line where the caret is located See Stepping Through the Program

Alt + F9

Running and Debugging
Run to the line where the caret is located, ignoring breakpoints See Stepping Through the Program

Ctrl + Alt + F9

Running and Debugging
Resume program execution

F9

Running and Debugging
Terminate a debugging session

Shift + F2

Running and Debugging
Evaluate an arbitrary expression

Alt + F8

Running and Debugging
Evaluate an arbitrary expression without calling Evaluate Expression dialog

Ctrl + Alt + F8

Running and Debugging
Toggle breakpoint at the current line

Ctrl + F8

Running and Debugging
View/manage all breakpoints

Ctrl + Shift + F8

General Shortcuts
Close an active tab in a tool window (for example, Find tool window)

Ctrl + Shift + F4

General Shortcuts
Close an active editor

Ctrl + F4

General Shortcuts
Open an editor for the selected item or items and give focus to the last opened file

F4

General Shortcuts
Export contents of a tool window to a text file This feature applies to the Version Control Tool Window, Messages Tool Window, and other tool windows that provide the export button  on the window toolbar

Alt + O

General Shortcuts
Create a new class, file or directory See Populating Modules

Alt + Insert

General Shortcuts
Save all files and settings

Ctrl + S

General Shortcuts
When several tabs are open in the editor or a view, open the next tab to the right (or first tab if the current one is the last)

Alt + Right Arrow

General Shortcuts
When several tabs are open in the editor or a view, open the next tab to the left (or last tab if the current one is the first)

Alt + Left Arrow

General Shortcuts
Display intention actions (if any) for the code where the caret is currently located, or the selected GUI component in a form

Alt + Enter

General Shortcuts
Detect all externally changed files and reload them from disk

Ctrl + Alt + Y

Search
Initiate text search

Ctrl + F

Search
Initiate text search and replace

Ctrl + R

Search
Navigate to the next/previous occurrence of a selected word in the editor

F3 / Shift + F3

Search
Search in the editor for the word where the caret is currently located

Ctrl + F3

Search
Initiate text search

Ctrl + F

Search
Initiate search for a text string in the specified scope

Ctrl + Shift + F

Search
Initiate search and replace in the specified scope

Ctrl + Shift + R

Search
Initiate search for usages of the selected symbol in the specified scope

Alt + F7

Search
Initiate search for usages of the selected symbol in the current file

Ctrl + F7

Search
Highlight usages of a symbol at caret

Ctrl + Shift + F7

Search
Show usages of a symbol at caret in a pop-up window Use list of found usages to jump to the desired location

Ctrl + Alt + F7

Search
Find an action, bypassing menus See Finding Actions

Ctrl + Shift + A

Navigation between Bookmarks
Navigate to a numbered bookmark with the corresponding number

Ctrl + Specified Number

Navigation between Bookmarks
Turn anonymous bookmark on or off

F11

Navigation between Bookmarks
Turn bookmark with mnemonic on or off

Ctrl + F11

Navigation between Bookmarks
Open Bookmarks dialog to manage existing bookmarks and navigate between them

Shift + F11

Navigation between IDE Components
Move focus from the current file, class, method or reference to a data source, to a view suggested in the Select Target pop-up menu Refer to Navigating Between IDE Components

Alt + F1

Navigation between IDE Components
Collapse all nodes in a tree view

Ctrl + NumPad -

Navigation between IDE Components
Expand all nodes in a tree view

Ctrl + NumPad +

Navigation between IDE Components
Navigate between files opened in the editor, and tool windows

Ctrl + Tab

Navigation between IDE Components
Open a tool window with the specified number

Alt + Number

Navigation between IDE Components
Hide the currently active tool window

Shift + Esc

Navigation between IDE Components
Activate the last focused tool window

F12

Navigation between Source Code
Display the Structure pop-up window for quick navigation through the current file

Ctrl + F12

Navigation between Source Code
Move focus from the current file, class, method or reference to a data source table to a view suggested in the Select Target pop-up menu See Navigating Between IDE Components

Alt + F1

Navigation between Source Code
Show the list of recently opened files

Ctrl + E

Navigation between Source Code
Show the list of recently updated files

Ctrl + Shift + E

Navigation between Source Code
Browse hierarchy for the selected class class

Ctrl + H

Navigation between Source Code
Navigate directly to a class in project by specifying its name in a pop-up dialog box

Ctrl + N

Navigation between Source Code
Navigate directly to a file in project by specifying its name in a pop-up dialog box

Ctrl + Shift + N

Navigation between Source Code
Show the list of recently opened files

Ctrl + E

Navigation between Source Code
Show the list of recently updated files

Ctrl + Shift + E

Navigation between Source Code
Navigate to any line in the current file by specifying its number

Ctrl + G

Navigation between Source Code
Navigate to declaration of a symbol at caret

Ctrl + B

Navigation between Source Code
Navigate to implementation of the item at caret

Ctrl + Alt + B

Navigation between Source Code
Navigate to a type declaration of a symbol at caret, the symbol being a variable or a method call

Ctrl + Shift + B

Navigation between Source Code
Navigate to a super method declaration of a method under the caret

Ctrl + U

Navigation between Source Code
Navigate to a test for the class at caret, if any, or navigate from a test to a test subject

Ctrl + Shift + T

Navigation between Source Code
Navigate between files with complicated relationships between them

Ctrl + Alt + Home

Navigation between Source Code
Navigate to the next method declaration in the active editor tab

Alt + Down Arrow

Navigation between Source Code
Navigate to the previous method declaration in the active editor tab

Alt + Up Arrow

Navigation between Source Code
Navigate to the start of the current code block

Ctrl + [

Navigation between Source Code
Navigate to the end of the current code block

Ctrl + ]

Navigation between Source Code
Undo last navigation operation

Ctrl + Alt + Left Arrow

Navigation between Source Code
Redo last undone navigation operation

Ctrl + Alt + Right Arrow

Navigation between Source Code
Navigate to a previous found item

Ctrl + Alt + Up Arrow

Navigation between Source Code
Navigate to a next found item

Ctrl + Alt + Down Arrow

Navigation between Source Code
Move through the most recent change points

Ctrl + Shift + Backspace

Navigation between Source Code
Navigate to the next found error/warning

F2

Navigation between Source Code
Navigate to the previous found error/warning

Shift + F2

Refactoring
Rename the selected file, class, field, method, etc and change all references to it accordingly

Shift + F6

Refactoring
Change the signature of the selected method and update all the corresponding method calls

Ctrl + F6

Refactoring
Move the selected class, package or static member to another package or class and update all the corresponding references

F6

Refactoring
Create a copy of the selected class, file or directory in the same or different directory or package

F5

Refactoring
Delete the selected class, method or field checking its usages

Alt + Delete

Refactoring
Turn the selected code fragment into a method

Ctrl + Alt + M

Refactoring
Create a new variable and use the selected expression as its value

Ctrl + Alt + V

Refactoring
Create a new field and use the selected expression as its value

Ctrl + Alt + F

Refactoring
Create a new constant (static final field) and use the selected expression as its value

Ctrl + Alt + C

Refactoring
Turn the selected expression into a new method parameter

Ctrl + Alt + P

Refactoring
Inline the selected method or variable

Ctrl + Alt + N

Similar combinations for other applications


Civilization V (Windows)
Military info
General Hotkeys

F3


Microsoft Outlook 2010 (Windows)
Go to Search box
Messages in Main View - Main Window

F3 / Ctrl + E


Open Office Writer 3 (Linux)
Repeat search
Search and Replace

F3


Microsoft Projects 2010 (Windows)
With Column Filter active: Remove all Filters
Navigate Gantt Chart and Select Tasks

F3


Adobe Reader 9 (Linux)
Find next / find previous (alternative is Ctrl+g / Ctrl+Shift+g)
Find and Select

F3 / Shift + F3


Adobe Reader X (Windows)
Find next / find previous (alternative is ctrl+g / ctrl+shift+g)
Find and Select

F3 / Shift + F3


Visual Studio 2015 (Windows)
Find next / find previous
Code Editor - Find, Replace, and Goto

F3 / Shift + F3


Microsoft Outlook 2010 (Windows)
Switch case between all upper, all lower, and first letter upper.
Messages in Main View - Format Message Body

Shift + F3


KDevelop (Linux)
Repeat search
Search and Replace

F3


Android Emulator (Windows)
Call/ dial Button
Main Device Keys

F3


Eclipse Helios (Windows)
Open Declaration: Jump to Declaration of selected class, method, or parameter
Code Information

F3


Thunderbird (Windows)
Find text again next in Current Message
Find Messages

Ctrl + G / F3


SharpDevelop 4.0 (Windows)
Find next
Find/Replace

F3


Thunderbird (Windows)
Find text again previous in Current Message
Find Messages

Ctrl + Shift + G / Shift + F3


Thunderbird (MacOS)
Find text again next in Current Message
Find Messages

Command + G / F3


Thunderbird (Linux)
Find text again next in Current Message
Find Messages

Ctrl + G / F3


Thunderbird (MacOS)
Find text again previous in Current Message
Find Messages

Command + Shift + G / Shift + F3


Thunderbird (Linux)
Find text again previous in Current Message
Find Messages

Ctrl + Shift + G / Shift + F3


Firefox (Linux)
Find previous occurrence of search term.
Search

Ctrl + Shift + G / Shift + F3


Microsoft Excel 2010 (Windows)
Display the Insert Function dialog box.
Work with Data Selections - Formulas

Shift + F3


Firefox (Windows)
Find previous occurrence of search term.
Search

Ctrl + Shift + G / Shift + F3


Microsoft Excel 2010 (Windows)
Insert a function into a formula .
Work with Data Selections - Formulas

Shift + F3


Microsoft Outlook 2010 (Windows)
Go to Search box
Messages in Compose View - Main Window

F3 / Ctrl + E


Microsoft Excel 2003 (Windows)
Create a list of names in the worksheet
Common

F3


Microsoft Excel 2010 (Windows)
Paste a defined name into a formula.
Work with Data Selections - Names

F3


Microsoft Excel 2003 (Windows)
Insert a function
Unusual

Shift + F3


Google Chrome (Windows)
Find text on webpage. Press Enter for.
Search

Ctrl + F / F3


Visual Studio 2015 (Windows)
Find next / find previous
Coding - Find, Replace, and Goto

F3 / Shift + F3


Microsoft OneNote 2010 (Windows)
While searching the current page, move to the previous result.
Searching Notes

shift + f3


Dolphin File Manager 1.7 (Linux)
Split View
15 Shortcuts for Dolphin File Manager 1.7 (Linux)

F3


Total Commander 8 (Windows)
List files
Main Shortcuts

F3


Microsoft Outlook 2010 (Windows)
Switch case between all upper, all lower, and first letter upper.
Messages in Compose View - Format Message Body

Shift + F3


Microsoft Excel 2011 (MacOS)
Copy text from the active cell
Function keys

F3


Microsoft Excel 2011 (MacOS)
Open the Formula Builder
Function keys

Shift + F3


Total Commander 8 (Windows)
List only file under cursor, when multiple files selected
Main Shortcuts

Shift + F3


Inpage (Windows)
To select title text boox tool
For Tools Selection

Shift + F3


Google Chrome (Linux)
Find text on webpage. Press Enter for
Search

Ctrl + F / F3


Notepad++ 5 (Windows)
Find next
Search

F3


Notepad++ 5 (Windows)
Find previous
Search

Shift + F3


Open Office Impress (Linux)
Edit group.
Function Keys

F3


Open Office Impress (Linux)
Duplicate
Function Keys

Shift + F3


Microsoft Word 2007 (Windows)
Change the case of letters.
Character and paragraph formatting Apply character formats

Shift + F3


Microsoft Outlook 2010 (Windows)
Go to Search box
Calendar Shortcuts - Main Window

F3 / Ctrl + E


Adobe Illustrator CS5 (MacOS)
Cut / Copy / Paste
Function Keys

F2 / F3 / F4


Tekla Structures 14.0 (Windows)
Select parts select switch
General shortcuts

F3


Visual Studio 2015 (Windows)
Find next / find previous
Code Snippets (Visual C# Scheme) - Find, Replace, and Goto

F3 / Shift + F3


Microsoft Excel 2011 (MacOS)
Open the Formula Builder
Working in cells or the Formula bar

Shift + F3


Microsoft Excel 2010 (Windows)
Display the Insert Function dialog box.
Insert and Edit Data - Formulas

Shift + F3


Microsoft Excel 2010 (Windows)
Insert a function into a formula .
Insert and Edit Data - Formulas

Shift + F3


Microsoft Excel 2010 (Windows)
Paste a defined name into a formula.
Insert and Edit Data - Names

F3


Smartplant Review (Windows)
Define Display Set
Function Keys

F3


Microsoft Outlook 2010 (Windows)
Switch case between all upper, all lower, and first letter upper.
Calendar Shortcuts - Format Message Body

Shift + F3


Opera (Linux)
Find next
Find

Ctrl + G / F3


Opera (Linux)
Find previous instance of text
Find

Ctrl + Shift + G / Shift + F3


Microsoft Word 2007 (Windows)
Change the case of letters.
Function key reference: SHIFT+Function key

Shift + F3


Evernote (Windows)
Set focus to the tag field of the active note
Note Editor

F3


Sublime Text (Windows)
Find next/ previous
Find and Replace

F3 / Shift + F3


Oracle SQL Developer 4 (Windows)
Find Next/ Previous
Search

F3 / Shift + F3


UltraEdit (Windows)
Repeat last find toward end of file
Search Menu

F3


Android Emulator (Linux)
Call/ dial Button
Main Device Keys

F3


Adobe Illustrator CS5 (Windows)
Cut / Copy / Paste
Function Keys

F2 / F3 / F4


Microsoft Outlook 2010 (Windows)
Find contact or other item
Contacts Shortcuts

F3 / Ctrl + E


GroupWise 2012 (Windows)
Find next instance
Function keys

F3


CATIA V5 (Windows)
Structure tree out or insert (Toggle specification tree display on and off)
38 Shortcuts for CATIA V5 (Windows)

F3


CATIA V5 (Windows)
Structure tree activate around e.g. character size to modify (activate the graph if the model is active and inversely)
38 Shortcuts for CATIA V5 (Windows)

Shift + F3


Microsoft Windows 7 (Windows)
Move the cursor to the search box. Press tab to leave
Windows Help

F3


AutoCAD 2012 (Windows)
Toggles object snap mode
Toggle Drawing Modes

F3


NetBeans 8 (Windows)
Find next/previous in file
General Keyboard Shortcts

F3 / Shift + F3


Microsoft Excel 2010 (Windows)
Display the Insert Function dialog box.
Format Data - Formulas

Shift + F3


Microsoft Excel 2010 (Windows)
Insert a function into a formula .
Format Data - Formulas

Shift + F3


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

F3


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

F3


Texmaker 4.0.2 (Windows)
View dvi
"Tools" menu

F3


Microsoft Excel 2010 (Windows)
Paste a defined name into a formula.
Format Data - Names

F3


Microsoft PowerPoint 2010 (Windows)
Change the case of letters between sentence, lowercase, or uppercase.
Change Fonts and Formatting

Shift + F3


IntelliJ (Linux)
Find next / Find previous
Search/Replace

F3 / Shift + F3


IntelliJ (Windows)
Find next / Find previous
Search/Replace

F3 / Shift + F3


Audacity 2 (Linux)
Draw tool
Tools

F3


Adobe Reader X (Linux)
Find next / find previous (alternative is ctrl+g / ctrl+shift+g)
Find and Select

F3 / Shift + F3


HoneyView 5.03 (Windows)
Edit Bookmarks
Other

F3


WinRAR (Windows)
Find files
Tools Menu

F3


Microsoft Excel 2010 (Windows)
Display the Insert Function dialog box.
Formulas and Names - Formulas

Shift + F3


Microsoft Excel 2010 (Windows)
Insert a function into a formula .
Formulas and Names - Formulas

Shift + F3


Axialis IconWorkshop (Windows)
Add to the Librarian
File Menu

F3


Beyond Compare (Windows)
Find next
Search Menu

F3


Beyond Compare (Windows)
Find previous
Search Menu

Shift + F3


Microsoft Excel 2010 (Windows)
Paste a defined name into a formula.
Formulas and Names - Names

F3


Beyond Compare (Windows)
Find next filename
Search Menu - Folder Compare

F3


Beyond Compare (Windows)
Find previous filename
Search Menu - Folder Compare

Shift + F3


Directory Opus (Windows)
Search
Misc.

F3


Beyond Compare (Windows)
Find next filename
Search Menu - Folder Sync

F3


Beyond Compare (Windows)
Find previous filename
Search Menu - Folder Sync

Shift + F3


Comsol 5 (Windows)
Disable selected nodes
Model Tree

F3


Presonus Studio One (Windows)
Toggle size
Console

Shift + F3


Comsol 5 (Linux)
Disable selected nodes
Model Tree

F3


Audacity 2 (Windows)
Draw tool
Tools Toolbar

F3


Comsol 5 (MacOS)
Disable selected nodes
Model Tree

F3


Microsoft Word 2013 (Windows)
Change between all upper-, first letter upper- and all lower-case
Format Text and Paragraph

Shift + F3


Microsoft Excel 2013 (Windows)
Display the Insert Function dialog box
Formulas

Shift + F3


Microsoft Excel 2013 (Windows)
Insert a function into a formula
Formulas

Shift + F3


Linux Mint (Linux)
Toggle Extra Pane (split view that shows two folder side by side)
File Manager (Nemo) - Toggle Side Pane, Split View, and Terminal

F3


Adobe Acrobat Pro (Windows)
Move to previous search result and highlight it in the document
Navigation

Shift + F3 / Ctrl + Shift + G


Adobe Acrobat Pro (Windows)
Move to next search result and highlight it in the document
Navigation

F3 / Ctrl + G


Qt Creator (MacOS)
Find next / Find previous
Editor

F3 / Shift + F3


Qt Creator (Windows)
Find next / Find previous
Editor

F3 / Shift + F3


Atom (text editor) 1.0 (Linux)
Find next
Find and Replace

F3


Atom (text editor) 1.0 (Linux)
Find previous
Find and Replace

Shift + F3


Atom (text editor) 1.0 (Windows)
Find next
Find and Replace

F3


Atom (text editor) 1.0 (Windows)
Find previous
Find and Replace

Shift + F3


Windows 10 Command Prompt (Windows)
Repeat previous Command
Recall Commands

F3


Autodesk Maya 2015 (Windows)
Show Polygons menu set
Interfaces

F3


Notepad++ 6 (Windows)
Find Next
Search menu

F3


Notepad++ 6 (Windows)
Find Previous
Search menu

Shift + F3


Microsoft Excel 2010 (Windows)
Display the Insert Function dialog box.
The Rest - Formulas

Shift + F3


Microsoft Excel 2010 (Windows)
Insert a function into a formula .
The Rest - Formulas

Shift + F3


Sonar 2015 (Windows)
Record metronome on/off
Transport

F3


Sonar 2015 (Windows)
Open Metronome settings
Transport

Shift + F3


Sonar 2015 (Windows)
Record metronome on/off
Record

F3


Microsoft Excel 2010 (Windows)
Paste a defined name into a formula.
The Rest - Names

F3


Adobe Photoshop CS5 (MacOS)
Copy
Function keys

F3


Microsoft Excel 2013 (Windows)
Paste a defined name into a formula
Lesser Used Shortcuts

F3


Microsoft Windows 10 (Windows)
Search file and folder
The Rest

F3


Adobe Photoshop CS5 (Windows)
Copy
Function keys

F3


Microsoft Excel 2016 (Windows)
Paste named range in formula
Select Cells - Basics

F3


Microsoft Outlook 2016 (Windows)
Switch case (selected text)
Common Commands: Format Text and work with Editor

Shift + F3


Microsoft Visio 2016 (Windows)
Open format task pane
Format text

F3


Microsoft OneNote 2016 (Windows)
While searching current page, move to previous result
Search Notes

Shift + F3


Corel VideoStudio X9.5 (Windows)
Mark in
Runtime Shortcuts

F3


Autodesk Maya 2017 (Windows)
Show Polygons menu set
Interfaces

F3


Microsoft PowerPoint 2016 (Windows)
Toggle cases(UppseCase/LowerCase)
Edit and General Text Operations

Shift + F3


Microsoft PowerPoint 2016 (Windows)
Change cases
Edit and General Text Operations

Shift + F3


Microsoft Excel 2016 (Windows)
Paste named range in formula
Format Cells - Basics

F3


Adobe After Effects CC (Windows)
Toggle between Graph Editor and Layer bar Modes
Keyframes and Graph Editor

Shift + F3


Adobe Illustrator CC (MacOS)
Copy
Function Key Shortcuts

F3


Adobe After Effects CC (MacOS)
Toggle between Graph Editor and Layer bar Modes
Keyframes and Graph Editor

Shift + F3


Adobe Illustrator CC (Windows)
Copy
Function Key Shortcuts

F3


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

F3


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

F3


FileMaker Pro (Windows)
Zoom document larger / smaller
Navigation and Window Display

F3 / Shift + F3


Microsoft Excel 2016 (Windows)
Paste named range in formula
Formulas - Basics

F3


CINEMA 4D (Windows)
Timeline
Editor

Shift + F3


Dynamics NAV 2015 (Windows)
Select type to filter
Function Key Shortcuts

F3


Zoho Sheet (MacOS)
Find within spreadsheet
Actions

Command + F / F3


Microsoft Word 2016 (Windows)
Change cases(UppseCase/LowerCase)
Text Editing/Graphics editing Operations

Shift + F3


Dynamics NAV 2015 (Windows)
Select Show Results
Page View and Review

Shift + F3


Dynamics SL 2015 (Windows)
Opens PV list or the calendar on date fields. If you prefer the mouse, double right click on the field
Function Key Shortcuts

F3


Zoho Sheet (Windows)
Show Function Dialog Box
Formula related shortcuts

Shift + F3


Microsoft Excel 2016 (Windows)
Paste named range in formula
Manage Workbooks - Basics

F3


Zoho Sheet (MacOS)
Show Function Dialog Box
Formula related shortcuts

Shift + F3


Age of Empires (Windows)
Pause The Game
Game Commands

F3


Autodesk Inventor 2017 (Windows)
Zoom Selected
Function Key

F3


Autodesk 3ds Max 2017 (Windows)
Wireframe/smooth and highlight
General user interface

F3


Microsoft Word 2016 (Windows)
Change the case of letters.
All Function Key Shortcuts

Shift + F3


CyberLink PhotoDirector 8 (Windows)
Switch to thumbnail view
Workspace

F3


Autodesk Inventor 2017 (Windows)
Zoom window
View

Shift + F3


AutoCad Architecture 2017 (Windows)
Object snap
Function Keys

F3


AutoCAD 2016 (Windows)
Toggles OSNAP
General

F3


Apple Motion (MacOS)
Show the Filters Inspector
Window Menu

F3


AutoCAD 2016 (Windows)
Subobject selection is limited to edges (AutoCAD only)
General

Shift + F3


Microsoft Excel 2016 (Windows)
Paste named range in formula
Excel Auto Tables and Data Forms - Basics

F3


Microsoft Projects 2016 (Windows)
Display all filtered tasks or all filtered resources.
Navigate Views and Windows

F3


Act! CRM (Windows)
Work week user roles
View Shortcuts

Shift + F3


Microsoft Projects 2016 (Windows)
Reset sort order to ID order and turn off grouping.
Navigate Views and Windows

Shift + F3


Call of Duty (Windows)
Spectator View Mode
General Game Controls

F3


Atom (text editor) 1.0 (MacOS)
Find next
Find and Replace

F3


Atom (text editor) 1.0 (MacOS)
Find previous
Find and Replace

Shift + F3


GTA V Cheats (Windows)
Cancel Recording
General Shortcuts

F3


Final Cut Pro (MacOS)
Find previous (in Find results)
Finding items

Shift + F3


Eclipse Helios (MacOS)
Move Cursor to Declaration
Navigation Shortcuts

F3


JetBrains RubyMine (Windows)
Find Next
Find and Replace

F3


JetBrains RubyMine (Windows)
Find Previous
Find and Replace

Shift + F3


Microsoft Excel 2016 (Windows)
Paste a defined name into a formula
Cut, Copy, Paste, and Paste Special

F3


JetBrains RubyMine (Linux)
Find Next
Find and Replace

F3


JetBrains RubyMine (Linux)
Find Previous
Find and Replace

Shift + F3


JetBrains PyCharm (Windows)
Find Next
Find and Replace

F3


JetBrains PyCharm (Windows)
Find Previous
Find and Replace

Shift + F3


FileZilla (Windows)
Search remote files
28 Shortcuts for FileZilla (Windows)

F3


IntelliJ (MacOS)
Toggle Bookmark
Navigation Shortcuts

F3


JetBrains RubyMine (MacOS)
Show Bookmarks
Navigation Shortcuts

Shift + F3


Adobe Flash Builder (Windows)
Go to Definition of Variable
24 Shortcuts for Adobe Flash Builder (Windows)

F3


Adobe Flash Builder (MacOS)
Go to Definition of Variable
24 Shortcuts for Adobe Flash Builder (MacOS)

F3


JetBrains AppCode (MacOS)
Show Bookmarks
Navigation Controls

Shift + F3


Adobe Dreamweaver (Windows)
Find Next
Find and Replace

F3


Adobe Dreamweaver (Windows)
Find Previous
Find and Replace

Shift + F3


JetBrains PhpStorm (Windows)
Find Next
Find and Replace

F3


JetBrains PhpStorm (Windows)
Find Previous
Find and Replace

Shift + F3


Blender 3D (Windows)
Writes A Picture
Universal

F3


JetBrains PhpStorm (Linux)
Find Next
Find and Replace

F3


Microsoft Word 2016 (MacOS)
Change letters to uppercase, lowercase, or mixed case
Frequently Used Shortcuts

Shift + F3


JetBrains PhpStorm (Linux)
Find Previous
Find and Replace

Shift + F3


Microsoft Excel 2016 (MacOS)
Display the Formula Builder
Frequently used shortcuts

Shift + F3


DAZ Studio (Windows)
Customize
Customize Commands

F3


DAZ Studio (MacOS)
Customize
Customize Commands

F3


Steinberg Cubase 9 (Windows)
Mix console
Devices Catagory

F3


Steinberg Cubase 9 (MacOS)
Mix console
Devices Catagory

F3


Corel PhotoPaint X6 (Windows)
Zoom in/Zoom out
View Menu

F2 / F3


Microsoft Excel 2016 (MacOS)
Open the Formula Builder
Work in cells or the Formula bar

Shift + F3


Corel Quattro Pro X8 (Windows)
Save As
File Menu

F3


Microsoft Word 2016 (MacOS)
Change the case of letters
Format characters

Shift + F3


DAZ Studio (Windows)
Find next
Script Commands

Shift + F3


Corel Designer X7 (Windows)
Zoom out Around Pointer
Zoom

F3


Corel Draw X8 (Windows)
Change case
Font Formatting

Shift + F3


Corel WordPerfect X8 (Windows)
Save As
63 Shortcuts for Corel WordPerfect X8 (Windows)

F3


DAZ Studio (MacOS)
Find next
Script Commands

Shift + F3


Corel Ventura 10 (Windows)
Zoom in/Zoom out
Zoom and View

F2 / F3


Corel Quattro Pro X8 (Windows)
Displays List of Macro commands
EditMode Shortcuts

Shift + F3


HTML-Kit (Windows)
Go to Next Occurance of Specified Text
87 Shortcuts for HTML-Kit (Windows)

F3


Corel Draw X8 (Windows)
Zoom out
Zoom and Pan

F3


Corel Quattro Pro X8 (Windows)
Shows List of Available Macros
Function Keys

Shift + F3


Microsoft Word 2016 (MacOS)
Copy selected text or graphics to the clipboard
Function key shortcuts

F3


Microsoft Excel 2016 (MacOS)
Open the Formula Builder
The following table provides the function key shortcuts for Excel 2016 for Mac*

Shift +F3


Microsoft Word 2016 (MacOS)
Change letters to uppercase, lowercase, or mixed case
Function key shortcuts

Shift + F3


InCopy CC (MacOS)
Replace selected text with Change To text and find next
Find and Replace

Shift + F3


InCopy CC (Windows)
Replace selected text with Change To text and find next
Find and Replace

Shift + F3


Adobe Captivate 2017 (MacOS)
Test view the current slide
Function Key Shortcuts

F3


Adobe Captivate 2017 (Windows)
Test view the current slide
Function Key Shortcuts

F3


Forte (Windows)
Find Next
Main Browser Window

F3


Adobe Captivate 2017 (MacOS)
Preview single slide
Recording

F3


Adobe Captivate 2017 (Windows)
Preview single slide
Recording

F3


Adobe Captivate 2017 (Windows)
Manual panning
Recording

F3


Chief Architect (Windows)
Import Tools - Import Drawing (DWG,DXF)
Other Shortcuts

Shift + F3


Chief Architect (MacOS)
Import Tools - Import Drawing (DWG,DXF)
Other Shortcuts

Shift + F3


Primevera P6 P6 (Windows)
Find Next
General Shortcuts

F3


MetaTrader MT4 (Windows)
Open Global Variables Window
Function Key Shortcuts

F3


Brackets (Windows)
Find Next
99 Shortcuts for Brackets (Windows)

F3


Brackets (Windows)
Find Previous
99 Shortcuts for Brackets (Windows)

Shift + F3


TradeStation (Windows)
Verify
Editor Shortcuts

F3


Forte (Windows)
Find next
Usenet/Email Filter windows

F3


Zerodha Trader (Windows)
Order Book
For Monitoring Funds/Trades/Positions/Orders

F3


PotPlayer (Windows)
Open
Function Key Shortcuts

F3


Informix Genero 2.5.0 (Windows)
Find next
Find and Replace

F3


Informix Genero 2.5.0 (Windows)
Find previous
Find and Replace

Shift + F3


XYplorer (Windows)
Find Now
Function key Shortcuts

F3


Forte (Windows)
Find Next
Composition Window

F3


Tencent QQ Player (Windows)
Playlist
30 Shortcuts for Tencent QQ Player (Windows)

F3


MediaMonkey (Windows)
Search
Standard Keyboard Shortcuts

Ctrl + F / F3


XYplorer (Windows)
Repeat Last Search
Function key Shortcuts

Shift + F3


Jetbrains CLion (Windows)
Find next/Find previous
Find and Replace

F3 / Shift + F3


CA Client Automation (Windows)
Find Next
Edit Menu

F3


Maxthon (Web Application)
Next tab
Switch tabs

F3


ZBrush 4 (Windows)
Strokes
PopUp Selection

F3


Siemens NX 11 (Windows)
Current Dialog Box
View Menu

F3


Vegas Pro 14 (Windows)
Jog left/right (when not in edge-trimming mode or during playback)
Cursor Placement,Loop Region and Time Selection

F3 / F9


Pegasus Mail (Web Application)
Address books...
Addresses

F3


Pegasus Mail (Web Application)
Quick lookup
Addresses

Shift + F3


Libreoffice Writer (Windows)
Complete AutoText
Function Keys

F3


Visual Studio Code (Windows)
Find next/previous
Search and Replace

F3 / Shift + F3


Vegas Pro 14 (Windows)
Trim left/right (when in edge-trimming mode)
Event Selection and Editing

F3 / F9


ProRealTime (Windows)
Personal Template 3
Templates

F3


iClone 7 (Windows)
Show/Hide Timeline
OnScreen Display

F3


DrawPlus (Windows)
Pen Tool
Tools Shortcuts

P / F3


SolidWorks (Windows)
View Quick Snaps
View Menu

F3


Quickbooks Desktop (Windows)
Open Search
The Rest

F3


Rhino (Windows)
Properties
Default Shortcuts

F3


Sierra Chart (Windows)
Chart Values Window
Window Menu

F3


Soundforge (Windows)
Find next instance of last-searched text
Script Editor

F3


Soundforge (Windows)
Find previous instance of last-searched text
Script Editor

Shift + F3


OpenSCAD (MacOS)
Reload
Function Shortcuts

F3


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

F3


Cabinet Vision (Windows)
In Wall Layout, Opens the Angle Calculator
Layout and CAD

F3


ForkLift 3
Quick look
Commander style

F3


Alphacam (Windows)
Ortho Mode On/Off
Geometry Creation

F3


RStudio (Windows)
Find next
Source

F3


RStudio (Windows)
Find previous
Source

Shift + F3


Delphi 10 (Windows)
Find again
193 Shortcuts for Delphi 10 (Windows)

F3


winIDEA
Repeat the last action
Edit

F3


Zwift (PC and macOS)
"Ride On!"
Function

F3


Smite (Windows)
Train Ability 3
Attack and Ability Controls

F3


Smite (MacOS)
Train Ability 3
Attack and Ability Controls

F3


CuteFTP (Windows)
Find next
General

F3


Anno 1800
Camera zoom levels
Camera

F3


CuteFTP (MacOS)
Find next
72 Shortcuts for CuteFTP (MacOS)

F3


Fortnite (PC)
Stairs
Building

F3


Exact Audio Copy
Test gaps on silence
Action menu

F3


progeCAD (Windows)
Turns entity snaps on and off
51 Shortcuts for progeCAD (Windows)

F3


Kate (Linux)
Find Next
29 Shortcuts for Kate (Linux)

F3


Kate (Windows)
Find Next
38 Shortcuts for Kate (Windows)

F3


CodeLite 10 (Windows)
Find next
Search

F3


CodeLite 10 (Windows)
Find previous
Search

Shift + F3


Kate (MacOS)
Find Next
28 Shortcuts for Kate (MacOS)

F3


HyperWorks (Windows)
Replace
24 Shortcuts for HyperWorks (Windows)

F3


Miscreated
Emote: Wave
Emote

F3


Ansys Mechanical (Windows)
Open Tree Search Dialog Box
Tree Outline

F3


Xyplorer
Opens Find Text dialog if there wasn't any previous search in that edit box.
Other Shortcuts

F3


FlashFXP (Web Application)
Find / Find next
54 Shortcuts for FlashFXP (Web Application)

F3


HyperWorks (Windows)
Edges (for equivalence)
24 Shortcuts for HyperWorks (Windows)

Shift + F3


TurboCAD (Windows)
Design Director… (Professional only)
171 Shortcuts for TurboCAD (Windows)

F3


Ansys Mechanical (Windows)
Activate Extend to Connection Selection
Selection Filters

Shift + F3


progeCAD (Windows)
Turns entity snaps on and off
Function Key Shortcuts

F3


Mastercam (Windows)
Repaint
53 Shortcuts for Mastercam (Windows)

F3


Source Insight (Windows)
Search Backward
General

F3


Comodo IceDragon (Windows)
Find Again
Search Options

F3


Comodo IceDragon (Windows)
Find Previous
Search Options

Shift + F3


Evergreen (Linux)
Serach Catalog
Circulation

F3


Most used text editing
Find next occurence of last searched string
Functions

F3


Evergreen (Linux)
Search Catalog
Cataloging

F3


KiCad 5.0.2
Zoom redraw
Page Layout Editor

F3


Evergreen (Linux)
Retrieve Record by TCN
Cataloging

Shift + F3


PSPad (Windows)
Find Next - Search text for next occurrence
Search

F3


VariCAD (Windows)
Information
Hot Keys

Shift + F3


PSPad (Windows)
Find Previous - Find previous occurrence
Search

Shift + F3


Place Anywhere (Fallout 4 mod)
Toggle workshop grid snapping
General

F3


Vivaldi
Find next in page
Page

F3


Gmsh 4.1.4
Mesh volumes
General

F3


IRONCAD (Windows)
Orbit
Camera Function Keys Assignment

F3


Modo (Windows)
Sculpt/paint toolbox
Floating Windows

F3


KiCAD (Windows)
Zoom Redraw
EE Schema

F3


KiCAD (Linux)
Zoom Redraw
EE Schema

F3


Modo (MacOS)
Sculpt/paint toolbox
Floating Windows

F3


ChessBase 13
Next higher directory level
Database window

F3


KiCAD (MacOS)
Zoom Redraw
EE Schema

F3


Cobalt (Windows)
Blind
70 Shortcuts for Cobalt (Windows)

F3


Bus Simulator 18
Passenger mirror
Movement and camera

F3


Roblox Studio
Find next
Scripting

F3


Wordfast Pro (Windows)
Uppercase / Lowercase
100 Shortcuts for Wordfast Pro (Windows)

Shift + F3


Wordfast Pro (MacOS)
Uppercase / Lowercase
100 Shortcuts for Wordfast Pro (MacOS)

Shift + F3


FEKO (Windows)
Find next
General EDITFEKO Shortcuts

F3


FEKO (Linux)
Find next
General EDITFEKO Shortcuts

F3


Target 3001! (Windows)
SchematicPCB(With Cross Probe)
Function key Shortcuts

F3


Target 3001! (Windows)
SchematicPCB(Without Cross Probe)
Function key Shortcuts

Shift + F3


WinRAR
Find files
Tools menu

F3


Assetto Corsa
Track cameras
In-game

F3


RStudio
(Windows) Find Next
Source

F3


gEDA (Linux)
Enter arc tool
Other Important Shortcuts

F3


Foxit Reader (Windows)
Find Next
30 Shortcuts for Foxit Reader (Windows)

F3


Foxit Reader (Linux)
Find Next
30 Shortcuts for Foxit Reader (Linux)

F3


Oracle RightNow
Move to first field in Quick Search
Global

F3


Foxit Reader (MacOS)
Find Next
30 Shortcuts for Foxit Reader (MacOS)

F3


LDCad
Opens the filter dialog
Partbin

F3


Europa Universalis IV
Cycle the Ledger sections
General

F3


MyPaint (Windows)
Open scrap
Show Edit Menu

F3


Banner 9 (Windows, Mac)
Duplicate Item
Windows shortcuts

F3


TopSolid (Windows)
Operation Search
Operation Manager

F3


SolveSpace (Windows)
Nearest Isometric View
View Menu

F3


SolveSpace (MacOS)
Nearest Isometric View
View Menu

F3


Substance Painter
Viewport layout 2D only
General

F3


BricsCAD (Windows)
Turns the Status Bar on/off (STATBAR command)
Other Shortcuts

Shift + F3


Altium Designer (Windows)
Find next occurrence of searched text
Schematic Editor Only Shortcuts

F3


Substance Painter (Mac)
Viewport layout 2D only
General

F3


SuperMemo (Windows)
Search
129 Shortcuts for SuperMemo (Windows)

F3


BricsCAD (Linux)
Turns the Status Bar on/off (STATBAR Ctrl)
Other Shortcuts

Shift + F3


DraftSight (Windows)
Turns EntitySnaps On/Off
37 Shortcuts for DraftSight (Windows)

F3


Aspire (Windows)
Opens the 3D Preview window
General Shortcuts

F3


BricsCAD (MacOS)
Turns the Status Bar on/off (STATBAR command)
Other Shortcuts

Shift + F3


VCarve Pro (Windows)
Opens the 3D Preview window
General Shortcuts

F3


FlexiSign Pro 8.1 (Windows)
Copy
Selection

F3


FlexiSign Pro 8.1 (MacOS)
Copy
Selection

F3


MyLibreOfficeMediaFKeys (Linux)
Rewind 5 seconds
MediaPlayerFKeys

F3


Subnautica
Debug graphics menu
Windows

F3


GeoGebra
Copy definition of selected object to the Input Bar
Mac desktop

F3


SuperMemo (Windows)
Search Leeches
129 Shortcuts for SuperMemo (Windows)

Shift + F3