Eclipse

Indentions and comments

Auto format all code in editor using code formatter

Ctrl + ↑   Shift + F

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


winIDEA
Search for a string in multiple files
File

Ctrl + ↑   Shift + F


Todoist
Add a new filter
Todoist for Android – global shortcuts

Ctrl + ↑   Shift + F


Sitecore CMS
Search
Content Editor and Desktop

Ctrl + ↑   Shift + F


App Maker
Replace within the code editor
Code editor shortcuts

Ctrl + ↑   Shift + F


Roblox Studio
Find in all scripts
Scripting

Ctrl + ↑   Shift + F


KiCad 5.0.2
Place DXF
Pcbnew

Ctrl + ↑   Shift + F


RStudio
Find in Files
Source

Ctrl + ↑   Shift + F


LDView
Fly-through mode
Misc

Ctrl + ↑   Shift + F


Banner 9 (Windows, Mac)
Sign Out
Mac shortcuts

Ctrl + ↑   Shift + F


Ableton Live 10
Scroll Display to Follow Playback
Clip View MIDI Editor

Ctrl + ↑   Shift + F


GitHub Desktop
Show in Explorer
Repository menu

Ctrl + ↑   Shift + F


Shotcut
Fullscreen
Main Menu

Ctrl + ↑   Shift + F


Siemens NX
Fit all views layout
View menu

Ctrl + ↑   Shift + F


WorkZone Client
Create a new case search
General

Ctrl + ↑   Shift + F


draw.io
Bring to front
Canvas

Ctrl + ↑   Shift + F


Nimbus Note
Create a new folder
General

Ctrl + ↑   Shift + F


Adobe Lightroom Classic
Switch between Normal and full-screen, hide panels
Changing views and screen modes

Ctrl + ↑   Shift + F


PyCharm 2018.2
Initiate search for a text string in the specified scope.
Search

Ctrl + ↑   Shift + F


Atom (Windows)
(Source: Find And Replace) project-find:show
All shortcuts

Ctrl + ↑   Shift + F


Bluebeam Revu
Form editor
Markup & editing

Ctrl + ↑   Shift + F


Unity
Align with view
GameObject

Ctrl + ↑   Shift + F


Adobe Animate CC (Windows)
Auto formats the editor code
Miscellaneous actions

Ctrl + ↑   Shift + F


Nuke
Full Quality 1:1
Timeline viewer

Ctrl + ↑   Shift + F


Kindle for PC
Open Flashcard Side Panel
While Reading a Book

Ctrl + ↑   Shift + F


Microsoft FrontPage
Change the font.
Format text and paragraphs

Ctrl + ↑   Shift + F


Corel Painter
Fade
Edit menu

Ctrl + ↑   Shift + F


Microsoft Word 2016
Open the Font dialog box to change the font.
Change or resize font

Ctrl + ↑   Shift + F


Adobe Premiere Pro (Windows)
Position Objects to Left Title Safe Margin
Titler

Ctrl + ↑   Shift + F


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

Ctrl + ↑   Shift + F


IntelliJ IDEA (Windows, Linux)
Find in path
Search and replace

Ctrl + ↑   Shift + F


NetBeans
Find in projects
Finding, searching, and replacing

Ctrl + ↑   Shift + F


WavePad
Zoom Full
Zoom Operations

Ctrl + ↑   Shift + F


AWS Cloud9 IDE (Windows)
Find in Files
Find

Ctrl + ↑   Shift + F


Microsoft Visual Studio 2017 (All shortcuts)
Edit.FindinFiles
Edit

Ctrl + ↑   Shift + F


Sweet Home 3D
Add to home
General

Ctrl + ↑   Shift + F


Kdenlive
Toggle Full Screen Mode on and off
Editing

Ctrl + ↑   Shift + F


Brackets
Find in Files
General

Ctrl + ↑   Shift + F


Adobe Photoshop CC
Justify paragraph, justifies all
Format type

Ctrl + ↑   Shift + F


REAPER
File: Batch file converter
Section: Main

Ctrl + ↑   Shift + F


LibreOffice
Searches for the last entered search term
Controlling documents and windows

Ctrl + ↑   Shift + F


Microsoft PowerPoint (Creating presentations)
Open the Font dialog box to change the font
Format text: Change or resize a font

Ctrl + ↑   Shift + F


Google Sheets (Mac)
Compact controls
Common actions

Ctrl + ↑   Shift + F


Google Sheets
Compact controls
Common actions

Ctrl + ↑   Shift + F


FileMaker
Find/replace data
Text

Ctrl + ↑   Shift + F


TinyMCE
Toggle fullscreen
Editor body

Ctrl + ↑   Shift + F


Qt Creator
Open advanced find
Editing

Ctrl + ↑   Shift + F


KompoZer
Find Previous
General

Ctrl + ↑   Shift + F


Sublime Text
Find in files
Find/Replace

Ctrl + ↑   Shift + F


Maxthon
Move focus to the Search bar and highlight keywords
Search bar

Ctrl + ↑   Shift + F


Accounting CS
Toggle to hide or unhide the Search PDF frame
Toggle to hide/unhide frames in the view

Ctrl + ↑   Shift + F


ACDSee
Toggles full screen mode
General

Ctrl + ↑   Shift + F


Microsoft Excel 2016
opens the Format Cells dialog box with the Font tab selected
CTRL combination shortcut keys

Ctrl + ↑   Shift + F


Visual Studio Code (Linux)
Show Search
Display

Ctrl + ↑   Shift + F


Visual Studio Code (Windows)
Show Search
Display

Ctrl + ↑   Shift + F


Slack
Toggle full screen view
Navigation

Ctrl + ↑   Shift + F


Outlook 2016 and Outlook 2013
Use Advanced Find
People

Ctrl + ↑   Shift + F


Chrome DevTools
Open Search tab in the Drawer, which lets you search for text across all loaded resources
Global shortcuts

Ctrl + ↑   Shift + F


Blender
Edge Flip
Editing mode

Ctrl + ↑   Shift + F


Notepad++
Find in files
Search menu

Ctrl + ↑   Shift + F


GOM Player
Speed up
Playback speed

Ctrl + ↑   Shift + F


Paint.NET
Flatten
Image menu

Ctrl + ↑   Shift + F


Skype
Send a file
Skype for Windows 10

Ctrl + ↑   Shift + F


Android Studio
Find in path
Navigating and searching

Ctrl + ↑   Shift + F


iTunes 11 for Windows
Enter or exit full-screen view
View menu

Ctrl + ↑   Shift + F


Mozilla Thunderbird
Address book advanced search
Address book

Ctrl + ↑   Shift + F


Everything
Organize filters
General keyboard shortcuts

Ctrl + ↑   Shift + F


Audacity
Fit Vertically
View menu

Ctrl + ↑   Shift + F


Opera
Search
Navigation: Site navigation

Ctrl + ↑   Shift + F


SQL Server Management Studio (SSMS)
Filter the monitor display
Activity Monitor

Ctrl + ↑   Shift + F


SnagIt 13
Bring forward
Editor

Ctrl + ↑   Shift + F


Windows Media Player 11
Fast-forward through video or music
Play music with shortucts

Ctrl + ↑   Shift + F


Gmail
Access custom from
Compose and chat

Ctrl + ↑   Shift + F


HeidiSQL
Search selected tables for text occurences
Tools

Ctrl + ↑   Shift + F


DBeaver 6.0.3
Format current script (**) using current formatter
SQL Editor

Ctrl + ↑   Shift + F


Scrivener 1.9.9
Inline footnote
Formatting

Ctrl + ↑   Shift + F