Jetbrains CLion (Windows)

Editing Shortcuts

Decrease current selection to previous state

Ctrl + Shift + W

All hotkeys for Jetbrains CLion (Windows)

Editing Shortcuts
Basic code completion (the name of any class, method or variable)

Ctrl + Spacebar

Editing Shortcuts
Smart code completion (filters the list of methods and variables by expected type)

Ctrl + Shift + Spacebar

Editing Shortcuts
Complete statement

Ctrl + Shift + Enter

Editing Shortcuts
Parameter info (within method call arguments)

Ctrl + P

Editing Shortcuts
Quick documentation lookup

Ctrl + Q

Editing Shortcuts
Brief Info

Ctrl + Mouse over code

Editing Shortcuts
Show descriptions of error or warning at caret

Ctrl + F1

Editing Shortcuts
Generate code... (Getters, Setters, Constructors, hashCode/equals, toString)

Alt + Insert

Editing Shortcuts
Override methods

Ctrl + O

Editing Shortcuts
Implement methods

Ctrl + I

Editing Shortcuts
Surround with… (if..else, try..catch, for, synchronized, etc.)

Ctrl + Alt + T

Editing Shortcuts
Comment/uncomment with line comment

Ctrl + /

Editing Shortcuts
Comment/uncomment with block comment

Ctrl + Shift + /

Editing Shortcuts
Select successively increasing code blocks

Ctrl + W

Editing Shortcuts
Decrease current selection to previous state

Ctrl + Shift + W

Editing Shortcuts
Show Intension actions and QuickFixes

Alt + Q

Editing Shortcuts
Reformat code

Ctrl + Alt + L

Editing Shortcuts
Optimize imports

Ctrl + Alt + O

Editing Shortcuts
Auto-indent line(s)

Ctrl + Alt + I

Editing Shortcuts
Indent/unindent selected lines

Tab / Shift + Tab

Editing Shortcuts
Cut current line or selected block to clipboard

Ctrl + X

Editing Shortcuts
Copy current line or selected block to clipboard

Ctrl + C

Editing Shortcuts
Paste from clipboard

Ctrl + V

Editing Shortcuts
Paste from recent buffers...

Ctrl + Shift + V

Editing Shortcuts
Duplicate current line or selected block

Ctrl + D

Editing Shortcuts
Delete line at caret

Ctrl + Y

Editing Shortcuts
Smart line join

Ctrl + Shift + J

Editing Shortcuts
Smart line split

Ctrl + Enter

Editing Shortcuts
Start new line

Shift + Enter

Editing Shortcuts
Toggle case for word at caret or selected block

Ctrl + Shift + U

Editing Shortcuts
Select till code block end/start

Ctrl + Shift + ] / [

Editing Shortcuts
Delete to word end

Ctrl + Delete

Editing Shortcuts
Delete to word start

Ctrl + Backspace

Editing Shortcuts
Expand/collapse code block

Ctrl + NumPad + / -

Editing Shortcuts
Expand all / collapse all

Ctrl + Alt + NumPad + / -

Editing Shortcuts
Close active editor tab

Ctrl + F4

Editing Shortcuts
Place caret in Multiple Location

Alt + Shift + Click

Editing Shortcuts
Restore Single Caret Mode

Esc

Editing Shortcuts
Add/Delete Next Occurance of Current Word to Selection

Alt + G / Alt + Shift + G

Find and Replace
Search everywhere

Double Shift

Find and Replace
Find

Ctrl + F

Find and Replace
Find next/Find previous

F3 / Shift + F3

Find and Replace
Replace

Ctrl + R

Find and Replace
Find in path

Ctrl + Shift + F

Find and Replace
Replace in path

Ctrl + Shift + R

Compile and Run
Build Project

Ctrl + F9

Compile and Run
Select configuration and run

Alt + Shift + F10

Compile and Run
Select configuration and debug

Alt + Shift + F9

Compile and Run
Run

Shift + F10

Compile and Run
Debug

Shift + F9

Debugging
Step over

F8

Debugging
Step into

F7

Debugging
Step out

Shift + F8

Debugging
Run to cursor

Alt + F9

Debugging
Evaluate expression

Alt + F8

Debugging
Resume program

F9

Debugging
Toggle breakpoint

Ctrl + F8

Debugging
View breakpoints

Ctrl + Shift + F8

Live Templates
Surround with Live Template

Ctrl + Alt + J

Live Templates
Insert Live Template

Ctrl + J

Live Templates
Indexed for( ; ; ) loop

for

Live Templates
Iterate range(C++11)

iter

Live Templates
Iterate using Begin/End Member Functions

itit

Live Templates
In CMake include directions with Boost

incboost

Live Templates
In CMake create New Function Definitor

function

Navigation Shortcuts
Go to class

Ctrl + N

Navigation Shortcuts
Go to file

Ctrl + Shift + N

Navigation Shortcuts
Go to symbol

Ctrl + Alt + Shift + N

Navigation Shortcuts
Go to next/previous editor tab

Alt + Right Arrow / Left Arrow

Navigation Shortcuts
Go back to previous tool window

F12

Navigation Shortcuts
Go to editor (from tool window)

Esc

Navigation Shortcuts
Hide active or last active window

Shift + Esc

Navigation Shortcuts
Close active run/messages/find/... tab

Ctrl + Shift + F4

Navigation Shortcuts
Go to line

Ctrl + G

Navigation Shortcuts
Recent files popup

Ctrl + E

Navigation Shortcuts
Navigate backward / navigate forward

Ctrl + Alt + Left Arrow / Right Arrow

Navigation Shortcuts
Navigate to last edit location

Ctrl + Shift + Backspace

Navigation Shortcuts
Select current file or symbol in any view

Alt + F1

Navigation Shortcuts
Go to declaration

Ctrl + B

Navigation Shortcuts
Go to implementation(s)

Ctrl + Alt + B

Navigation Shortcuts
Go to related Symbol(Header/Source File)

Ctrl + Alt + Home

Navigation Shortcuts
Open quick definition lookup

Ctrl + Shift + I

Navigation Shortcuts
Go to type declaration

Ctrl + Shift + B

Navigation Shortcuts
Go to super-method/super-class

Ctrl + U

Navigation Shortcuts
Go to previous/next method

Alt + Up Arrow / Down Arrow

Navigation Shortcuts
Move to code block end / move to code start

Ctrl + ] / [

Navigation Shortcuts
File structure popup

Ctrl + F12

Navigation Shortcuts
Type hierarchy

Ctrl + H

Navigation Shortcuts
Call hierarchy

Ctrl + Alt + H

Navigation Shortcuts
Next/previous highlighted error

F2 / Shift + F2

Navigation Shortcuts
Toggle bookmark

F11

Navigation Shortcuts
Toggle bookmark with mnemonic

Ctrl + F11

Navigation Shortcuts
Go to numbered bookmark

Ctrl + 0 ... 9

Navigation Shortcuts
Show bookmarks

Shift + F11

General
Open corresponding tool window

Alt + 0 ... 9

General
Inspect current file with current profile

Alt + Shift + I

General
Quick switch current scheme

Ctrl + `

General
Edit Application Settings

Ctrl + Alt + S

General
Hide All Tool Windows

Ctrl + Shift + F12

General
Add to Favourites

Alt + Shift + F

Usage Search
Find Usage

Alt + F7

Usage Search
Find Usages in File

Ctrl + F7

Usage Search
Highlight Usages in File

Ctrl + Shift + F7

Usage Search
Show Usages

Ctrl + Alt + F7

VCS/Local History
Commit Project to VCS

Ctrl + K

VCS/Local History
Update Project from VCS

Ctrl + T

VCS/Local History
View Recent Changes

Alt + Shift + C

VCS/Local History
VCS Quick Popup

Alt + `

Refactoring
Refactor This

Ctrl + Alt + Shift + T

Refactoring
Copy

F5

Refactoring
Move

F6

Refactoring
safe Delete

Alt + Delete

Refactoring
Rename

Shift + F6

Refactoring
Change Signature

Ctrl + F6

Refactoring
Extract Function

Ctrl + Alt + M

Refactoring
Inline

Ctrl + Alt + N

Refactoring
Introduce parameter

Ctrl + Alt + P

Refactoring
Introduce Variable

Ctrl + Alt + V

Refactoring
Introduce Constant

Ctrl + Alt + C

Refactoring
Introduce Define

Ctrl + Alt + D

Similar combinations for other applications


Eclipse Helios (Windows)
Close all files
Manage Files and Projects

Ctrl + Shift + W


Microsoft OneNote 2010 (Windows)
Execute the action suggested on the Information Bar if it appears at the top of a page.
Various Other OneNote Shortcuts - The Rest

ctrl + shift + w


Microsoft Outlook 2010 (Windows)
Display blocked content menu. Press ctrl+shift+w, then p to download blocked pictures/images.
Messages in Main View - Message List and Single Messages

Ctrl + Shift + W


Google Chrome (Windows)
Close the current window
Manage Tabs

Ctrl + Shift + W / Alt + F4


Firefox (Linux)
Close browser window
Firefox Windows

Ctrl + Shift + W / Alt + F4


Phoenix Viewer (Windows)
Close All Windows
File

Ctrl + Shift + W


Firefox (Windows)
Close browser window
Firefox Windows

Ctrl + Shift + W / Alt + F4


Microsoft Outlook 2010 (Windows)
Display blocked content menu. Press ctrl+shift+w, then p to download blocked pictures/images.
Messages in Compose View - Message List and Single Messages

Ctrl + Shift + W


Microsoft Word 2007 (Windows)
Underline words but not spaces.
Character and paragraph formatting Apply character formats

Ctrl + Shift + W


Microsoft Outlook 2010 (Windows)
Display blocked content menu. Press ctrl+shift+w, then p to download blocked pictures/images.
Calendar Shortcuts - Message List and Single Messages

Ctrl + Shift + W


Total Commander 8 (Windows)
Close all open tabs
Main Shortcuts

Ctrl + Shift + w


Opera (Linux)
Close Opera
System

Ctrl + Shift + W / Alt + F4


Sublime Text (Windows)
Close Window
Menu Control

Ctrl + Shift + W


Oracle SQL Developer 4 (Windows)
Show Whitespace
Source

Ctrl + Shift + W


FreeMind 0.9.0 (Windows)
Open first file in history
File commands

Ctrl + Shift + W


Microsoft Outlook 2010 (Windows)
Select Message InfoBar and, if available, show menu of commands
Other Outlook 2010 Shortcut

Ctrl + Shift + W


IntelliJ (Linux)
Decrease current selection to previous state
Editing

Ctrl + Shift + W


IntelliJ (Windows)
Decrease current selection to previous state
Editing

Ctrl + Shift + W


Directory Opus (Windows)
Undo close tab
Folder Menu

Ctrl + Shift + W


Pro Tools (Windows)
Close session
File Menu

Ctrl + Shift + W


Qt Creator (Windows)
Close all windows
General

Ctrl + Shift + W


Qt Creator (MacOS)
Close all windows
General

Ctrl + Shift + W


Microsoft Word 2013 (Windows)
Apply/remove words underline (only words, no spaces)
Format Text and Paragraph

Ctrl + Shift + W


Adobe Flash Professional (Windows)
Show/Hide Work Area
Windows

Ctrl + Shift + W


Atom (text editor) 1.0 (Linux)
Close window
File Management

Ctrl + Shift + w


Atom (text editor) 1.0 (Windows)
Close window
File Management

Ctrl + Shift + W


Adobe After Effects CC (Windows)
Close active Panel or all Viewers of type of active Viewer
Panels, Viewers, Workspaces, and Windows

Ctrl + Shift + W


Microsoft Outlook 2016 (Windows)
Select the InfoBar and, if available, show the menu of commands
Basic Navigation

Ctrl + Shift + W


Microsoft Edge Browser (Windows)
Break on new worker (on Debugger tab)
Developer Tools (the following shortcuts are only applicable within the Developer Tools section)

Ctrl + Shift + W


Microsoft OneNote 2016 (Windows)
Execute action suggested on the Information Bar if it appears at the top of a page
The Rest

Ctrl + Shift + W


Microsoft Visio 2016 (Windows)
Fit to window
Window/Navigation Shortcut

Ctrl + Shift + W


Microsoft Outlook 2016 (Windows)
Open the Mail Tip in the selected message
Mail

Ctrl + Shift + W


Corel Painter 2017 (Windows)
Close all windows
Other Shortcuts

Ctrl + Shift + W


ArchiCAD 20 (Windows)
Sign Out
Teamwork

Ctrl + Shift + W


Dynamics AX 2015 (Windows)
Open a new Development Workspace
Working with AOT

Ctrl + Shift + W


Dynamics NAV 2015 (Windows)
Open a list place in a separate window
Edit

Ctrl + Shift + W


Autodesk 3ds Max 2017 (Windows)
Target weld
Editable Poly

Ctrl + Shift + W


Silhouette Studio (Windows)
Weld
Modify

Ctrl + Shift + W


JetBrains RubyMine (Windows)
Decrease Current Selection to Previous State
Editing Shortcuts

Ctrl + Shift + W


TextMate 2 (MacOS)
Wrap selection in Open/Close Tag
HTML Shortcuts

Ctrl + Shift + W


JetBrains RubyMine (Linux)
Decrease Current Selection to Previous State
Editing Shortcuts

Ctrl + Shift + W


JetBrains PyCharm (Windows)
Decrease Current Selection to Previous State
Editing

Ctrl + Shift + W


Adobe Animate CC (Windows)
Show/Hide Timeline
Windows Shortcuts

Ctrl + Shift + W


Adobe Animate CC (Windows)
Show or hide the pasteboard that surrounds the stage
Miscellaneous Action

Ctrl + Shift + W


JetBrains PhpStorm (Windows)
Decrease Current Selection to Previous State
Editing

Ctrl + Shift + W


JetBrains PhpStorm (Linux)
Decrease Current Selection to Previous State
Editing

Ctrl + Shift + W


Daz 3D Carrara 8 (Windows)
Weld
Application - Model

Ctrl + Shift + W


DAZ Studio (Windows)
Close all script
Script Commands

Ctrl + Shift + W


Corel Draw X8 (Windows)
FOnt weight
Font Formatting

Ctrl + Shift + W


Daz 3D Carrara 8 (Windows)
Weld
Spline Modeler - Model

Ctrl + Shift + W


Daz 3D Carrara 8 (Windows)
Weld
Vertex Modeler - Model

Ctrl + Shift + W


InCopy CC (Windows)
Close current document
Other Shortcuts

Ctrl + Shift + W


Brackets (Windows)
Close All
99 Shortcuts for Brackets (Windows)

Ctrl + Shift + W


Brackets (Windows)
Show Indentations
99 Shortcuts for Brackets (Windows)

Ctrl + Shift + W


Adobe Captivate 2017 (Windows)
Insert a widget
General and Miscellaneous Shortcuts

Ctrl + Shift + W


Maxthon (Web Application)
Close all tabs
Close

Ctrl + Shift + W


MPS 2017 (Windows)
Remove sequentially the selection made by the action
Basic Editing

Ctrl + Shift + W


Vegas Pro 14 (Windows)
Show/hide waveforms on events in the timeline
Magnification and View

Ctrl + Shift + W


Scottrade (Windows)
Open Watch List Window
32 Shortcuts for Scottrade (Windows)

Ctrl + Shift + W


Aptana Studio 3 (Windows)
Close Current Tab Window
Windows Shortcuts

Ctrl + Shift + W


Siemens NX 11 (Windows)
Ray Traced Studio
View Menu

Ctrl + Shift + W


XYplorer (Windows)
Close All Other Unlocked Tabs
General Shortcuts

Ctrl + Shift + W


Xamarin Studio (MonoDevelop) (Windows)
Close All
File Menu

Ctrl + Shift + W


Visual Studio Code (Windows)
Close window/instance
General Shortcuts

Ctrl + Shift + W


DrawPlus (Windows)
Fit Page
Document Shortcuts

Ctrl + Shift + W


RStudio (Windows)
Close all open documents
Source

Ctrl + Shift + W


Spotify (Windows)
Logout active user
General

Ctrl + Shift + W


Solid Edge (Windows)
Consider Sketch Planes
Advance Sunchronous Edit

Ctrl + Shift + W


CodeLite 10 (Windows)
Close all files
Files

Ctrl + Shift + F4 / Ctrl + Shift + W


TurboCAD (Windows)
Set Plan View of the current User Coordinate System
171 Shortcuts for TurboCAD (Windows)

Ctrl + Shift + W


Modo (Windows)
Close all open scenes
General/System

Ctrl + Shift + W


Wordfast Pro (Windows)
Close All
100 Shortcuts for Wordfast Pro (Windows)

Ctrl + Shift + W / Ctrl + Shift + F4


Comodo IceDragon (Windows)
Close Window
Windows and Tabs

Ctrl + Shift + W


Evergreen (Linux)
Close All Tabs
Navigation

Ctrl + Shift + W


Ableton Live 9 (Windows)
Toggle Second Window
Showing and Hiding Results

Ctrl + Shift + W


Geany (Linux)
Close all
Files

Ctrl + Shift + W


Geany (Windows)
Close all
Files

Ctrl + Shift + W


Vectorworks (Windows)
Rendering–Wireframe
View Menu

Ctrl + Shift + W


Foxit Reader (Windows)
Close All
30 Shortcuts for Foxit Reader (Windows)

Ctrl + Shift + W


Foxit Reader (Linux)
Close All
30 Shortcuts for Foxit Reader (Linux)

Ctrl + Shift + W


Brave Browser (Windows)
Close Window
Tabs and Windows

Ctrl + Shift + W


Balsamiq Mockups (Windows)
Close all mockups
Working with Mockup Files

Ctrl + Shift ++ W


gedit 2.3 (Linux)
Close all tabs
Navigation

Ctrl + Shift + W


Google Earth 5 (Linux)
Close all tabs
Navigation

Ctrl + Shift + W


Microsoft Outlook 2007 (Windows)
Select the InfoBar and, if available, show the menu of commands.
Basic Navigation

Ctrl + Shift + W


Microsoft Word 2010 (Windows)
Apply/remove words underline (only words, no spaces)
Navigate within Documents - Format Text

Ctrl + Shift + W


Adobe After Effects CS5 (Windows)
Close all active viewer wwindow or panels
Panels, Viewers, Workspaces, and Windows

Ctrl + Shift + W


IrfanView 4.42 (Windows)
Toggle stretching image across all monitors
View / Zoom

Ctrl + Shift + W


Microsoft Outlook 2007 (Windows)
Show the menu to download pictures, change automatic download settings, or add a sender to the Safe Senders List.
Shortcuts for Managing E-Mail

Ctrl + Shift + W


Microsoft Word 2010 (Windows)
Apply/remove words underline (only words, no spaces)
Edit Documents - Format Text

Ctrl + Shift + W


Microsoft Word 2010 (Windows)
Apply/remove words underline (only words, no spaces)
Formats - Format Text

Ctrl + Shift + W


Microsoft Word 2010 (Windows)
Apply/remove words underline (only words, no spaces)
Manage Word View - Format Text

Ctrl + Shift + W


Microsoft Word 2010 (Windows)
Apply/remove words underline (only words, no spaces)
Tables - Format Text

Ctrl + Shift + W