Eclipse Helios (Windows)

Search and Replace

Incremental search forward / backwards. Type search term after pressing ctrl+j, there is now search window

Ctrl + J / Ctrl + Shift + J

All hotkeys for Eclipse Helios (Windows)

Manage Files and Projects
Create new project using the Wizard

Ctrl + N

Manage Files and Projects
Create new project, file, class, etc.

Ctrl + Alt + N

Manage Files and Projects
Open project, file, etc.

Alt + F , then .

Manage Files and Projects
Open Resource (file, folder or project)

Ctrl + Shift + R

Manage Files and Projects
Show and access file properties

Alt + Enter

Manage Files and Projects
Save current file

Ctrl + S

Manage Files and Projects
Save all files

Ctrl + Shift + S

Manage Files and Projects
Close current file

Ctrl + W

Manage Files and Projects
Close all files

Ctrl + Shift + W

Manage Files and Projects
Refresh content of selected element with local file system

F5

Editor Window
Jump to Editor Window

F12

Editor Window
Switch to next editor / switch to previous editor

Ctrl + Page Down / Ctrl + Page Up

Editor Window
Maximize or un-maximize current Editor Window (also works for other Windows)

Ctrl + M

Editor Window
Show list of open Editors. Use arrow keys and enter to switch

Ctrl + E

Editor Window
Show list of open Editors. Similar to ctrl+e but switches immediately upon release of ctrl

Ctrl + F6 / Ctrl + Shift + F6

Editor Window
Go to previous / go to next Editor Window

Alt + Arrow Left / Alt + Arrow Right

Editor Window
Open Editor Window Option menu

Alt + -

Editor Window
Show view menu (features available on left vertical bar: breakpoints, bookmarks, line numbers, …)

Ctrl + F10

Editor Window
Show or hide line numbers

Ctrl + F10 , then n

Editor Window
Show or hide the diff column on the left (indicates changes since last save)

Ctrl + Shift + Q

Editor Window
Zoom text in/ out

Ctrl + Shift + + / -

Navigate in Editor
Jump to beginning / jump to end of indention. Press home twice to jump to beginning of line

Home / End

Navigate in Editor
Jump to beginning / jump to end of source

Ctrl + Home / End

Navigate in Editor
Jump one word to the left / one word to the right

Ctrl + Arrow Right / Arrow Left

Navigate in Editor
Jump to previous / jump to next method

Ctrl + Shift + Arrow Down / Arrow Up

Navigate in Editor
Jump to Line Number. To hide/show line numbers, press ctrl+F10 and select 'Show Line Numbers'

Ctrl + L

Navigate in Editor
Jump to last location edited

Ctrl + Q

Navigate in Editor
Jump to next / jump to previous compiler syntax warning or error

Ctrl + . / Ctrl + ,

Navigate in Editor
With a bracket selected: jump to the matching closing or opening bracket

Ctrl + Shift + P

Navigate in Editor
Collapse / Expand current method or class

Ctrl + [ + ] / Ctrl + - on numeric keyboard

Navigate in Editor
Collapse / Expand all methods or classes

Ctrl + [ / ] / Ctrl + * on numeric keyboard

Navigate in Editor
Scroll Editor without changing cursor position

Ctrl + Arrow Down / Ctrl + Arrow Up

Navigate in Editor
Next Sub-Tab / Previous Sub-Tab

Alt + Page Up / Alt + Page Down

Select Text
Expand selection by one character to the left / to the right

Shift + Arrow Right / Arrow Left

Select Text
Expand selection to next / previous word

Ctrl + Shift + Arrow Right / Arrow Left

Select Text
Expand selection by one line down / one line up

Shift + Arrow Down / Arrow Up

Select Text
Expand selection to end / to beginning of line

Shift + End / Home

Select Text
Select all

Ctrl + A

Select Text
Expand selection to current element (e.g. current one-line expression or content within brackets)

Alt + Shift + Arrow Up

Select Text
Expand selection to next / previous element

Alt + Shift + Arrow Left / Arrow Right

Select Text
Reduce previously expanded selection by one step

Alt + Shift + Arrow Down

Edit Text
Cut, copy and paste

Ctrl + C / Ctrl + X / Ctrl + V

Edit Text
Undo last action

Ctrl + Z

Edit Text
Redo last (undone) action

Ctrl + Y

Edit Text
Delete Line

Ctrl + D

Edit Text
Move current line or selection up or down

Alt + Arrow Up / Arrow Down

Edit Text
Duplicate current line or selection up or down

Ctrl + Alt + Arrow Up / Ctrl + Alt + Arrow Down /

Edit Text
Delete next word

Ctrl + Delete

Edit Text
Delete previous word

Ctrl + Backspace

Edit Text
Enter line below current line

Shift + Enter

Edit Text
Enter line above current line

Shift + Ctrl + Enter

Edit Text
Switch between insert and overwrite mode

Insert

Edit Text
Change selection to all lower case

Shift + Ctrl + Y

Edit Text
Change selection to all upper case

Shift + Ctrl + X

Search and Replace
Open find and replace dialog

Ctrl + F

Search and Replace
Find previous / find next occurrence of search term (close find window first)

Ctrl + K / Ctrl + Shift + K

Search and Replace
Search Workspace (Java Search, Task Search, and File Search)

Ctrl + H

Search and Replace
Incremental search forward / backwards. Type search term after pressing ctrl+j, there is now search window

Ctrl + J / Ctrl + Shift + J

Search and Replace
Open a resource search dialog to find any class

Ctrl + Shift + O

Indentions and Comments
Increase / decrease indent of selected text

Tab / Shift + Tab

Indentions and Comments
Correct indention of selected text or of current line

Ctrl + I

Indentions and Comments
Autoformat all code in Editor using code formatter

Ctrl + Shift + F

Indentions and Comments
Comment / uncomment line or selection ( adds '//' )

Ctrl + /

Indentions and Comments
Add Block Comment around selection ( adds '/... */' )

Ctrl + Shift + /

Indentions and Comments
Remove Block Comment

Ctrl + Shift + \

Indentions and Comments
Add Element Comment ( adds '/** ... */')

Alt + Shift + J

Editing Source Code
Opens 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
Propose word completion (after typing at least one letter). Repeatedly press alt+/ 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 / structure

Ctrl + O

Code Information
Open class, method, or variable information (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 / 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 +move over method

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 assigns a variable from a selected expression

Alt + Shift + L

Refactoring
Inline selected local variables, methods, or constants if possible (replaces variable with its declarations/ assignment and puts it directly into the statements)

Alt + Shift + I

Run and Debug
Save and launch application (run)

Ctrl + F11

Run and Debug
Debug

F11

Run and Debug
Step Into function

F5

Run and Debug
Next step (line by line)

F6

Run and Debug
Step out

F7

Run and Debug
Skip to next Breakpoint

F8

The Rest
Switch forward / backward between views (panels). Useful for switching back and forth between Package Explorer and Editor.

Ctrl + F7 / Ctrl + Shift + F7

The Rest
Switch forward / backward between perspectives

Ctrl + F8 / Ctrl + Shift + F8

The Rest
Print

Ctrl + P

The Rest
Open Eclipse Help

F1

The Rest
Show Context Menu right click with mouse

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


Google Chrome (Windows)
Open Developer Tools (With Focus on Javascript Console)
Manage Chrome DevTools - Accessing DevTools and DevTools Basics

Ctrl + Shift + J


Adobe Reader 9 (Linux)
Cascase all windows
The Rest

Ctrl + Shift + j


Google Chrome (Linux)
Open Developer Tools (With Focus on Console)
Manage Chrome DevTools - Accessing DevTools and DevTools Basics

Ctrl + Shift + J


Microsoft Outlook 2010 (Windows)
Stretch paragraph to fit between margins
Messages in Main View - Format Message Body

Ctrl + Shift + J


Thunderbird (Windows)
Open 'Saved Files' Window
Other Shortcuts

Ctrl + J


SharpDevelop 4.0 (Windows)
Insert code template
Coding Shortcuts

Ctrl + J


Firefox (Linux)
Open or close download window
Firefox Features

Ctrl + J


Firefox (Windows)
Open or close download window
Firefox Features

Ctrl + J


Thunderbird (Linux)
Open 'Saved Files' Window
Other Shortcuts

Ctrl + J


Visual Studio 2015 (Windows)
Open IntelliSense completion list
Code Editor - IntelliSense and Code Helper

Ctrl + J


Google Chrome (Windows)
Open Downloads tab
Access Browser Features

Ctrl + J


Notepad++ 5 (Windows)
Join lines
Edit - Line Operations

Ctrl + J


Firefox (Linux)
Open Java Error Console. Press escape to close
The Rest

Ctrl + Shift + J


Firefox (Windows)
Open Java Error Console. Press escape to close
The Rest

Ctrl + Shift + J


Zune (Windows)
Eject CD
Other

Ctrl + J


Notepad++ 5 (Windows)
Join lines
Search - Line Operations

Ctrl + J


Microsoft Outlook 2010 (Windows)
Stretch paragraph to fit between margins
Messages in Compose View - Format Message Body

Ctrl + Shift + J


Google Docs (Windows)
Full justify
Format Text

Ctrl + Shift + J


Google Chrome (Linux)
Open Downloads tab
Access Browser Features

Ctrl + J


Mindjet Mindmanager 2012 (Windows)
Hyperlink open/create
Most used - Branches into maps

Ctrl + J / K


Visual Studio 2015 (Windows)
Open IntelliSense completion list
Coding - IntelliSense and Code Helper

Ctrl + J


Mindjet Mindmanager 2012 (Windows)
Hyperlink open/create
Reorganizing - Branches into maps

Ctrl + J / K


Vuescan (Windows)
Eject
14 Shortcuts for Vuescan (Windows)

Ctrl + J


Microsoft Word 2007 (Windows)
Switch a paragraph between justified and left-aligned.
Character and paragraph formatting Align paragraphs

Ctrl + J


Sublime Text (Windows)
Select lines in this indention
Navigation - Advanced Selections

Ctrl + Shift + J


Tekla Structures 14.0 (Windows)
Create AutoConnection
Modeling shortcuts

Ctrl + j


Oracle SQL Developer 4 (Windows)
Join Line
Code Editor

Ctrl + J


Sublime Text (Windows)
Select lines in this indention
Selections - Advanced Selections

Ctrl + Shift + J


Sublime Text (Windows)
Join line below at end of current line
Cool Text Manipulation

Ctrl + J


Microsoft Outlook 2010 (Windows)
Stretch paragraph to fit between margins
Calendar Shortcuts - Format Message Body

Ctrl + Shift + J


Visual Studio 2015 (Windows)
Open IntelliSense completion list
Code Snippets (Visual C# Scheme) - IntelliSense and Code Helper

Ctrl + J


Opera (Linux)
Open Developer Tools Console
Source

Ctrl + Shift + J


Evernote (Windows)
Align current paragraph or selection justified
Note Editor

Ctrl + j


Opera (Linux)
Open Downloads Menu
Menus

Ctrl + Shift + 7 / Ctrl + J


UltraEdit (Windows)
Select the current word (same as double click)
Edit Menu

Ctrl + J


Microsoft Outlook 2010 (Windows)
Create Journal entry
Create Items

Ctrl + Shift + J


Microsoft Outlook 2010 (Windows)
Create Journal entry for selected contact
Contacts Shortcuts

Ctrl + J


Photoshop Lightroom 4 (Windows)
Open Library view options
Comparing photos in the Library module

Ctrl + J


Microsoft Outlook 2010 (Windows)
Open selected item as Journal item
Tasks Shortcuts

Ctrl + J


VLC Media Player (MacOS)
Media information
Manage VLC, Playlists, and Special Commands

Ctrl + I / Ctrl + J


Vuescan (Linux)
Eject
12 Shortcuts for Vuescan (Linux)

Ctrl + J


Microsoft PowerPoint 2010 (Windows)
Justify a paragraph.
Change Fonts and Formatting

Ctrl + J


IntelliJ (Linux)
Smart line join
Editing

Ctrl + Shift + J


FreeMind 0.9.0 (Windows)
Join nodes
Node editing commands

Ctrl + J


IntelliJ (Windows)
Smart line join
Editing

Ctrl + Shift + J


Avid Media Composer 7 (Windows)
After using the "Zoom" shortcut above, this shortcut allows the editor to return to the previously used timeline magnification.
Timeline

Ctrl + J


iTunes (Windows)
Open the View Options window for the selected source
View Menu

Ctrl + J


Photoshop Lightroom 4 (Windows)
Open Develop view options
Develop Module

Ctrl + J


Audacity 2 (Windows)
Clip Boundaries > Join
Edit Menu

Ctrl + J


Photoshop Lightroom 4 (Windows)
Export PDF slide show
Slideshow module

Ctrl + J


Photoshop Lightroom 4 (Windows)
Export JPEG slide show
Slideshow module

Ctrl + Shift + J


IntelliJ (Linux)
Insert Live Template
Live Templates

Ctrl + J


Photoshop Lightroom 4 (Windows)
Show/hide page bleed
Print module

Ctrl + Shift + J


IntelliJ (Windows)
Insert Live Template
Live Templates

Ctrl + J


Photoshop Lightroom 4 (Windows)
Export web gallery
Web module

Ctrl + J


Axialis IconWorkshop (Windows)
New - Icon project from an image...
File Menu

Ctrl + J


Adobe Illustrator CS5 (Windows)
Justify paragraph
Working with Type

Ctrl + Shift + j


Axialis IconWorkshop (Windows)
Export - Jpeg 2000 with transparency (JP2)...
File Menu

Ctrl + Shift + J


Qt Creator (Windows)
Join lines
Editor

Ctrl + J


Pro Tools (Windows)
Transport online
Options Menu

Ctrl + J


Qt Creator (MacOS)
Join lines
Editor

Ctrl + J


Pro Tools (Windows)
Video track online
Options Menu

Ctrl + Shift + J


Microsoft Word 2013 (Windows)
Justify-align paragraph
Format Paragraphs and Apply Styles

Ctrl + J


Qt Creator (Windows)
Adjust size
Editor

Ctrl + J


Qt Creator (MacOS)
Adjust size
Editor

Ctrl + J


Atom (text editor) 1.0 (Linux)
Join lines
Editing Lines

Ctrl + j


Atom (text editor) 1.0 (Windows)
Join lines
Editing Lines

Ctrl + J


Notepad++ 6 (Windows)
Join Lines
Edit menu

Ctrl + J


Adobe Acrobat Pro (Windows)
JavaScript Debugger
Tools

Ctrl + J


Adobe Photoshop CS5 (Windows)
Justify paragraph, left aligns last line
Format Type

Ctrl + Shift + J


Skype for Business (Lync) 2016 (Windows)
Switch to speaker view.
Conversation or Meeting Stage

Ctrl + Shift + J


Adobe Photoshop CC (Windows)
Layer via Copy
Basic Shortcuts for Photoshop CC 2015 - Layers Basics

Ctrl + J


Clink (Windows)
accept-line
BASH (GNU Readline) Line Editing

Ctrl + J


Microsoft Edge Browser (Windows)
Open downloads pane
Navigation

Ctrl + J


Microsoft Outlook 2016 (Windows)
Stretch a paragraph to fit between the margins
Common Commands: Format Text and work with Editor

Ctrl + Shift + J


Adobe After Effects CC (Windows)
Set resolution to Full, Half, or Custom in Composition Panel
Views

Ctrl + J / Ctrl + Shift + J / Ctrl + Alt + J


Photoshop Lightroom CC (Windows)
Open Library view options
Comparing Photos in the Library Module

Ctrl + J


Microsoft Edge Browser (Windows)
Debug just my code (on Debugger tab)
Developer Tools (the following shortcuts are only applicable within the Developer Tools section)

Ctrl + J


Microsoft Visio 2016 (Windows)
Justify text horizontally
Format text

Ctrl + Shift + J


Google Slides (Windows)
Justify
Text Editing

Ctrl + Shift + J


Microsoft PowerPoint 2016 (Windows)
Justify Selected Phrase
Edit and General Text Operations

Ctrl + J


Microsoft PowerPoint 2016 (Windows)
Regroup Shape
Shapes and Various Drawing Objects Shortcuts

Ctrl + Shift + J


Adobe Premiere CC (Windows)
Templates
Marker Operation

Ctrl + J


InDesign CC (Windows)
Justify
Formatting Shortcuts

Ctrl + Shift + J


Photoshop Lightroom CC (Windows)
Open Develop view options
Develop Module

Ctrl + J


Photoshop Lightroom CC (Windows)
Export PDF slide show
Slideshow Module

Ctrl + J


Photoshop Lightroom CC (Windows)
Export JPEG slide show
Slideshow Module

Ctrl + Shift + J


Adobe Photoshop CC (Windows)
Layer via Copy
Manage Panels - Layers Basics

Ctrl + J


Photoshop Lightroom CC (Windows)
Show/ hide page bleed
Print Module

Ctrl + Shift + J


Photoshop Lightroom CC (Windows)
Export web gallery
Web Module

Ctrl + J


Adobe After Effects CC (Windows)
Justify paragraph; left align last line
Text

Ctrl + Shift + J


InDesign CC (Windows)
Go to Page
Layout Menu Shortcuts

Ctrl + J


FileMaker Pro (Windows)
Show all records
Browse-Mode Shortcuts

Ctrl + J


FileMaker Pro (Windows)
Show all records
Find Mode Shortcuts

Ctrl + J


Anime Studio (Windows)
Show output only
View Shortcuts

Ctrl + J


Zoho Writer (Windows)
To Justify Full
Format Tab

Ctrl + J


ArchiCAD 20 (Windows)
Receive Changes
Teamwork

Ctrl + J


ArchiCAD 20 (Windows)
Send and Receive Changes
Teamwork

Ctrl + Shift + J


Microsoft Word 2016 (Windows)
Justify Selected Phrase
Text Editing/Graphics editing Operations

Ctrl + J


Zoho Show (Windows)
Justify align
Formatting Shortcuts

Ctrl + J


AutoCAD 2016 (Windows)
Repeats last command
General

Ctrl + J


AutoCAD 2016 (MacOS)
Repeats the previous command.
Manage Workflow

Ctrl + J


Sublime Text (Linux)
Join Line below to end of current line
General Editing Shortcuts

Ctrl + J


IntelliJ (MacOS)
Quick Documentation Setup
Editing Shortcuts

Ctrl + J


Adobe Photoshop CC (Windows)
Justify paragraph, left aligns last line
Format Text Type

Ctrl + Shift + J


TextMate 2 (MacOS)
Reformat and Justify
General Shortcuts

Ctrl + J


IntelliJ (MacOS)
Smart line join
Editing Shortcuts

Ctrl + Shift + J


JetBrains RubyMine (MacOS)
Quick Documentation Lookup
Editing Shortcuts

Ctrl + J


JetBrains PyCharm (MacOS)
Quick Documentation Lookup
Editing Shortcuts

Ctrl + J


JetBrains AppCode (MacOS)
Quick Documentation Lookup
Editing Shortcuts

Ctrl + J


JetBrains PyCharm (MacOS)
Smart line Join
Editing Shortcuts

Ctrl + Shift + J


Adobe Dreamweaver (Windows)
Collapse Full Tag
Coding Shortcuts

Ctrl + Shift + J


Adobe Dreamweaver (Windows)
Jump to definition (JS files)
Coding Shortcuts

Ctrl + J


JetBrains RubyMine (Windows)
Insert Live Template
Live Templates

Ctrl + J


JetBrains RubyMine (Linux)
Insert Live Template
Live Templates

Ctrl + J


JetBrains PyCharm (Windows)
Insert Live Template
Live Templates

Ctrl + J


Zimbra Collaboration Suite 8 (Windows)
Show Next Tab
Tab Views

Ctrl + J


Desk.com (Windows)
Previous page
System-Wide

Ctrl + J


Bash (Linux)
NewLine
Editing

Ctrl + J


Autodesk SketchBook Pro (Windows)
Hide Lagoon
Actions

Ctrl + J


JetBrains PhpStorm (MacOS)
Quick Documentation Lookup
Editing

Ctrl + J


JetBrains PhpStorm (MacOS)
Smart Line Join(HTML and JS only)
Editing

Ctrl + Shift + J


Daz 3D Carrara 8 (Windows)
Spline Modeler Grid
Application - Geometry

Ctrl + J


Daz 3D Carrara 8 (Windows)
Grid
Application - View

Ctrl + J


jEdit (Windows)
Join Lines
Text Editing

Ctrl + J


Blender 3D (Windows)
Join Object
Object Mode

Ctrl + J


JetBrains PhpStorm (Windows)
Insert Live Template
Live Template/Snippets

Ctrl + J


Microsoft Hotmail (Web Application)
Mark as Junk
14 Shortcuts for Microsoft Hotmail (Web Application)

Ctrl + Shift + J


JetBrains PhpStorm (Linux)
Insert Live Template
Live Template/Snippets

Ctrl + J


Corel Ventura 10 (Windows)
Justify
Text Formatting

Ctrl + J


ACDSee (Windows)
Open Batch Rotate/Flip Images Dialog Box
View Mode

Ctrl + J


Corel WordPerfect X8 (Windows)
Justify Full
63 Shortcuts for Corel WordPerfect X8 (Windows)

Ctrl + J


Corel PhotoPaint X6 (Windows)
Customization
Tools

Ctrl + J


HTML-Kit (Windows)
Invoke HTML-Kit Shorthand
87 Shortcuts for HTML-Kit (Windows)

Ctrl + J


Daz 3D Carrara 8 (Windows)
Spline Modeler Grid
Spline Modeler - Geometry

Ctrl + J


Daz 3D Carrara 8 (Windows)
Grid
Spline Modeler - View

Ctrl + J


Corel Draw X8 (Windows)
Full justify
Text Formatting

Ctrl + J


HTML-Kit (Windows)
Display A list of Text scanned from Document
87 Shortcuts for HTML-Kit (Windows)

Ctrl + Shift + J


InCopy CC (Windows)
Justify with last line aligned left
Working with Text

Ctrl + Shift + J


Daz 3D Carrara 8 (Windows)
Spline Modeler Grid
Vertex Modeler - Geometry

Ctrl + J


Daz 3D Carrara 8 (Windows)
Grid
Vertex Modeler - View

Ctrl + J


Chief Architect (Windows)
Select Same Type
General Editing

Ctrl + J


Kingsoft Presentation 2016 (Windows)
Justify
Editing Shortcuts

Ctrl + J


Kingsoft Presentation 2016 (Windows)
Align Selected Text as Distributed
Editing Shortcuts

Ctrl + Shift + J


Daz 3D Carrara 8 (Windows)
3D View Grid
3D View

Ctrl + J


Brackets (Windows)
Jump to Definition
99 Shortcuts for Brackets (Windows)

Ctrl + J


Flock (Windows)
Downloads
General

Ctrl + J


Brackets (Windows)
Parse json file or hilighted string
99 Shortcuts for Brackets (Windows)

Ctrl + Shift + J


Kingsoft Writer 2016 (Windows)
Justify
Editing

Ctrl + J


Kingsoft Writer 2016 (Windows)
Align Selected Text as Distributed
Editing

Ctrl + Shift + J


Houdini (Windows)
Multi-snapping
Particle/Contex/Scene View

Ctrl + J


Forte (Windows)
Jump to URL
Main Browser Window

Ctrl + Shift + J


Krita Painting 3 (Windows)
Duplicate layer
Painting

Ctrl + J


Forte (Windows)
Move to Junk Folder
Main Browser Window

Ctrl + J


MPS 2017 (Windows)
Show a pop-up list of starting with a specified prefix
Advanced Editing

Ctrl + J


Jetbrains CLion (Windows)
Smart line join
Editing Shortcuts

Ctrl + Shift + J


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

Ctrl + Shift + J


Jetbrains CLion (Windows)
Insert Live Template
Live Templates

Ctrl + J


Houdini (Windows)
Snap option
Composite View

Ctrl + Shift + J


MPS 2017 (Windows)
Concatenate the selected lines into one or concatenate the line where the caret is currently located with the next line
Basic Editing

Ctrl + Shift + J


Libreoffice Writer (Windows)
Justify
General

Ctrl + J


KMPlayer (Windows)
Open File(s) for TV-Out
General

Ctrl + J


XYplorer (Windows)
Set Visual Filter...
General Shortcuts

Ctrl + J


Siemens NX 11 (Windows)
Object Display
Edit Menu

Ctrl + J


PotPlayer (Windows)
Turn to Camera Device
Standard Keyboard Controls

Ctrl + J


XYplorer (Windows)
Toggle No/Last Visual Filter
General Shortcuts

Ctrl + Shift + J


Delphi 10 (Windows)
Invoke Code Templates also called Code Snippets
193 Shortcuts for Delphi 10 (Windows)

Ctrl + J


Delphi 10 (Windows)
Invoke SyncEdit
193 Shortcuts for Delphi 10 (Windows)

Ctrl + Shift + J


Xamarin Studio (MonoDevelop) (Windows)
Join Lines
Edit Menu

Ctrl + Shift + J


Siemens NX 11 (Windows)
Object
Preferences

Ctrl + Shift + J


ProRealTime (Windows)
Display Objects
Charts

Ctrl + J


Visual Studio Code (Windows)
Toggle Search details
Display

Ctrl + Shift + J


Rhino (Windows)
Join
Default Shortcuts

Ctrl + J


Impro-Visor (Windows)
copy chords and melody from selection to text area
Cut/Paste/Copy

Ctrl + J


Solid Edge (Windows)
Dimetric
Manipulation

Ctrl + J


CodeLite 10 (Windows)
Auto-complete / Abbreviations
Editor

Ctrl + Space / Ctrl + J


RStudio (Windows)
Replace and find
Source

Ctrl + Shift + J


CodeLite 10 (Windows)
Find matching preprocessor conditional backwards, skipping nested ones.
Editor

Ctrl + J


CodeLite 10 (Windows)
Select to matching preprocessor conditional backwards.
Editor

Ctrl + Shift + J


FlashFXP (Web Application)
Disconnect server of active side.
54 Shortcuts for FlashFXP (Web Application)

Ctrl + J


Zwift (PC and macOS)
Just watch
Pairing devices screen

Ctrl + J


CuteFTP (Windows)
Launch Connection wizard
General

Ctrl + J


Vivaldi
Downloads panel
View

Ctrl + J


ChessBase 13
Set start move
Games lists

Ctrl + J


Xyplorer
Set Visual Filter...
View Menu

Ctrl + J


Moldflow Adviser (Windows)
Job Manager
Analysis

Ctrl + J


Moldflow Insight (Windows)
Job Manager
Analysis

Ctrl + J


winIDEA
Display Trigger Position
Plugin: Analyzer

Ctrl + J


Affinity Photo
Duplicate
Layer operations

Ctrl + J


Comodo IceDragon (Windows)
Downloads
Tools

Ctrl + J


PSPad (Windows)
Auto Completion
Tools

Ctrl + J


Comodo IceDragon (Windows)
Error Console
Tools

Ctrl + Shift + J


Easel
Combine
General

Ctrl + J


PhotoFiltre (Windows)
Show image properties
Others

Ctrl + J


Gmsh 4.1.4
Save model options
General

Ctrl + J


Ableton Live 9 (Windows)
Consolidate Selection intoClip
Arrangement View Ctrls

Ctrl + J


GibbsCAM (Windows)
Draw Points
View Menu

Ctrl + J


Modo (Windows)
Lock invert (toggle state)
Hide/Lock Geometry

Ctrl + J


Assetto Corsa
Show damage displayer
In-game

Ctrl + J


Inkscape (Windows)
Create dynamic offset
Path

Ctrl + J


Vectorworks (Windows)
Join
Modify Menu

Ctrl + J


Vectorworks (Windows)
Join (no Trim)
Modify Menu

Ctrl + Shift + J


GeoGebra
Select ancestors
Windows shortcuts

Ctrl + J


The Secret of Monkey Island
Select joystick as default control
Cursor controls

Ctrl + J


Sage Simply Accounting (Windows)
Display transaction details in report
Keyboard Shortcuts in Transaction Windows

Ctrl + J


WavePad Sound Editor (Windows)
Batch join
Edit Operations

Ctrl + J


CamBam (Windows)
Join selected drawing objects
32 Shortcuts for CamBam (Windows)

Ctrl + J


BricsCAD (Windows)
Repeats the previously issued command
Other Shortcuts

Ctrl + J


BricsCAD (Linux)
Repeats the previously issued Ctrl
Other Shortcuts

Ctrl + J


FlexiSign Pro 8.1 (Windows)
UnCompound
Arrangement

Ctrl + J


Brave Browser (Windows)
Downloads Manager
Bookmarks/History/Settings/Tools

Ctrl + J


KeyCreator (Windows)
Set Arrow Direction
Set Various Entities

Ctrl + Shift + J


KeyCreator (Windows)
Change Detail Attributes
Set Various Entities

Ctrl + J


eMachineShop (Windows)
Specify manufacturing , packing, shipment options for current Design
38 Shortcuts for eMachineShop (Windows)

Ctrl + J


MindManager v19 (Windows)
Hyperlink open/create
Most used - Branches into maps

Ctrl + J / K


SuperMemo (Windows)
Reschedule
129 Shortcuts for SuperMemo (Windows)

Ctrl + J


MindManager v19 (Windows)
Hyperlink open/create
Reorganizing - Branches into maps

Ctrl + J / K


Ableton Live 10
Consolidate Selection into Clip
Arrangement view commands

Ctrl + J


Google Chrome
Open the Downloads page in a new tab
Feature shortcuts

Ctrl + J


Adobe Illustrator
Join two or more paths
Draw

Ctrl + J


draw.io
Fit page
Navigate & view

Ctrl + J


Siemens NX
Object display
Edit menu

Ctrl + J


Winamp
Time jump tool
General

Ctrl + J


QuickBooks Desktop
Customer Center
Opening Windows/List

Ctrl + J


HitFilm
Jump to time (highlights current time indicatior)
General timeline

Ctrl + J


PyCharm 2018.2
Show a pop-up list of starting with a specified prefix.
Advanced editing

Ctrl + J


Quicken 2018
Go to the Bill & Income Reminders dialog
Features and lists

Ctrl + J


ArtRage Studio Pro
Adjust Layer Colors…
Panel Commands

Ctrl + J


Evernote for Windows
Justify
Note Editor

Ctrl + J


Adobe Lightroom Classic
Export web gallery
Working in the Web module

Ctrl + J


ActivePresenter 7
Justify
Canvas

Ctrl + J


Gravit Designer
Join paths
Modify

Ctrl + J


jEdit
Join lines.
Text editing

Ctrl + J


CorelDRAW Graphics Suite 2018
Options...
General

Ctrl + J


Windows PowerShell ISE
(Script pane, Command Pane) Show Snippets
Editing text

Ctrl + J


Adobe Photoshop CC
New layer via copy
Using the Layers panel

Ctrl + J


KMPlayer
Open File(s) for TV-Out
General

Ctrl + J


ZenWriter 2
Justify alignment
General

Ctrl + J


Nuance Power PDF
Open JavaScript console
JavaScript

Ctrl + J


Atom (Windows)
editor:join-lines
All shortcuts

Ctrl + J


BSPlayer
Jump to time
Misc

Ctrl + J


Microsoft FrontPage
Check out the currently selected file in the Folder List.
Access and use views

Ctrl + J


LightWave 3D
Joint move
Layout: Setup

Ctrl + J


PDF-XChange Editor
Show JavaScript Console
General

Ctrl + J


TextRoom
Align justify
General

Ctrl + J


Inkscape
Create dynamic offset
Path

Ctrl + J


Autodesk SketchBook (Windows)
Hide Lagoon
Tools

Ctrl + J


Oracle PeopleTools
Displays the system information page if configured by an administrator to appear.
General

Ctrl + J


Adobe Premiere Pro (Windows)
Templates...
Marker

Ctrl + J


Microsoft Word 2016
Switch a paragraph between justified and left-aligned
Change paragraph alignment

Ctrl + J


E-Sword
Format Scripture ToolTip Editors only
General

Ctrl + J


Arch Linux
End search
Terminal: Readline

Ctrl + J


Chromebook and Chrome OS
Open the Downloads page
Page and web browser

Ctrl + J


Microsoft Visual Studio 2017 (Most used shortcuts)
[Text Editor, Workflow Designer] Edit.ListMembers
Edit

Ctrl + J


WavePad
Batch Join
Edit Operations

Ctrl + J


Comodo IceDragon
Downloads
Tools

Ctrl + J


Brackets
Jump to Definition
General

Ctrl + J


Ardour
Trim region to end of prev region
Editing with Edit Point

Ctrl + J


IntelliJ IDEA (Windows, Linux)
Insert live template
Live Templates

Ctrl + J


PSPad
Auto Completion
Tools

Ctrl + J


GoldWave
Jumps the start marker to the next cue point.
Editing

Ctrl + J


Zim
Jump to page...  (either an existing or a new page)
General

Ctrl + J


WordPerfect X8
Justify Full
Formatting

Ctrl + J


LibreOffice Writer
Justify
General

Ctrl + J


Microsoft PowerPoint (Creating presentations)
Justify a paragraph
Format text: Align paragraphs

Ctrl + J


WriteMonkey
Join line below to the end of the current line
Editing

Ctrl + J


Tekla Structures 20
Create AutoConnection
Modeling

Ctrl + J


Qt Creator
Adjust size
Editing

Ctrl + J


Basecamp
Jump between projects
Navigation and selection

Ctrl + J


Maple
Insert Execution Group After Cursor
Menu accelerators

Ctrl + J


Vim
Move the cursor down one line
Navigation keys

Ctrl + J


FocusWriter
Justift
General

Ctrl + J


Google Translator Toolkit
Select next unit
Navigation

Ctrl + J


Sublime Text
Join line below to the end of the current line
Editing

Ctrl + J


Delphi
Invoke code templates also called code snippets
General

Ctrl + J


Clementine
Jump to current track
Playlists

Ctrl + J


REAPER
View: Jump to time window
Section: Main

Ctrl + J


Freemind
Join nodes
Node editing commands

Ctrl + J


The Bat!
Park
Working with Messages

Ctrl + J


Krita 3.0
Duplicate layer
Painting

Ctrl + J


Eclipse
Incremental search forward
Search and replace

Ctrl + J


ACDSee
Opens the Batch Rotate/Flip Images dialog box
General

Ctrl + J


Microsoft Internet Explorer 11
View downloads
Top shortcuts

Ctrl + J


Microsoft Visual Studio 2017 (All shortcuts)
Edit.ListMembers
Workflow Designer

Ctrl + J


Blender
Join selected objects
Object mode

Ctrl + J


Notepad++
Join lines
Edit menu

Ctrl + J


Firefox Quantum
Downloads
Tools

Ctrl + J


AIMP
Jump to time
Player

Ctrl + J


Zimbra Web Client
Go to next tab
Tabs view

Ctrl + J


Paint.NET
Rotate 180°
Image menu

Ctrl + J


Audacity
Clip Boundaries > Join
Edit menu

Ctrl + J


SQL Server Management Studio (SSMS)
List members
Microsoft IntelliSense

Ctrl + J


iTunes 11 for Windows
Open the View Options window for the selected source
View menu

Ctrl + J


Mozilla Thunderbird
Saved files
Controlling Thunderbird windows and tabs

Ctrl + J


Adobe Acrobat 2017 (Windows and Unix)
JavaScript Debugger
Selecting tools

Ctrl + J


Windows Media Player 11
Eject CD or DVD
Play videos with shortcuts

Ctrl + J


Wordpad
Justify text
General

Ctrl + J


Microsoft Edge
Open downloads pane
General

Ctrl + J


Facebook (Chrome)
Mark as spam
Website Messenger

Ctrl + J


Notepad2
Join lines
Block

Ctrl + J


Opera
Go to next unread message
E-mail keys: Navigation

Ctrl + J


Open Office Writer 3 (Windows)
Justify
General OpenOffice Writer Shortcuts

Ctrl + J


Rhythmbox (Linux)
Jump to currently playing track
General

Ctrl + J


Clementine Player (Linux)
Jump to current track
Playlists

Ctrl + J


Adobe Reader 9 (Windows)
Cascase all windows
The Rest

Ctrl + Shift + J


Winamp Media Player (Windows)
Jump to time in current song
Play Music in Winamp

Ctrl + J


Internet Explorer (Windows)
Open Feeds.
Favorites, History and Search

Ctrl + J


Internet Explorer (Windows)
Open Feeds in pinned mode.
Favorites, History and Search

Ctrl + Shift + J


Clementine Player (Windows)
Jump to current track
Playlists

Ctrl + J


Microsoft Word 2010 (Windows)
Justify-align paragraph
Navigate within Documents - Format Paragraphs

Ctrl + J


Microsoft Outlook 2007 (Windows)
Create a Journal shortcut.
Shortcuts to Create Items or Files

Ctrl + Shift + J


Adobe After Effects CS5 (Windows)
Set resolution to Full / Half / Custom in Composition panel
Views

Ctrl + J / Ctrl + Shift + J / Ctrl + Alt + J


IrfanView 4.42 (Windows)
Lossless JPG crop (Plugin required)
Plugins

Ctrl + Shift + J


Microsoft Outlook 2007 (Windows)
Create a Journal shortcut for the selected contact.
Shortcuts for Contacts

Ctrl + J


Microsoft Outlook 2007 (Windows)
Open selected item as a Journal item.
Shortcuts for Managing Tasks

Ctrl + J


Microsoft Word 2010 (Windows)
Justify-align paragraph
Edit Documents - Format Paragraphs

Ctrl + J


Microsoft Outlook 2007 (Windows)
Stretch a paragraph to fit between the margins.
Shortcuts for Formatting Text

Ctrl + Shift + J


InDesign CS5 (Windows)
Activate the Go To command
Viewing documents and document workspaces

Ctrl + j


Windows Media Player 11 (Windows)
Eject CD or DVD (except on computers with two or more CD or DVD disc drives).
Play Videos with Shortcuts

Ctrl + J


Adobe After Effects CS5 (Windows)
Justify paragraph; left align last line
Text

Ctrl + Shift + J


Microsoft Word 2010 (Windows)
Justify-align paragraph
Formats - Format Paragraphs

Ctrl + J


Adobe Photoshop CS4 (Windows)
Justify paragraph, left aligns last line
Shortcut Keys for formatting type

Ctrl + Shift + J


Microsoft Word 2010 (Windows)
Justify-align paragraph
Manage Word View - Format Paragraphs

Ctrl + J


Microsoft Word 2010 (Windows)
Justify-align paragraph
Tables - Format Paragraphs

Ctrl + J


Nano
Justify the current paragraph
Formatting

Ctrl + J


Figma
Join selection
Shape

Ctrl + J


Scrivener 1.9.9
Align justified
Formatting

Ctrl + J


Final Draft 11 (Windows)
Insert scriptnote
General

Ctrl + J