Eclipse

Editing text

Cut

Ctrl + X

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


Microsoft Word 2007 (Windows)
Cut the selected text or object.
Common tasks

Ctrl + X


Open Office Writer 3 (Linux)
Cut, copy, paste
Editing

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Excel 2010 (Windows)
Cut contents of selected cells.
Work with Data Selections - Work with Clipboard

Ctrl + X


Microsoft OneNote 2010 (Windows)
Cut/ Copy/ Paste the selected text or item.
Basic Editing and Formatting

ctrl + x / ctrl + c / ctrl + v


Eclipse Helios (Windows)
Cut, copy and paste
Edit Text

Ctrl + C / Ctrl + X / Ctrl + V


Microsoft Outlook 2010 (Windows)
Cut/ copy/ paste
Messages in Main View - Format Message Body

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Projects 2010 (Windows)
Cut / Copy / Paste
Access Projects 2010 Features

Ctrl + X / Ctrl + C / Ctrl + V


KDevelop (Linux)
Cut, copy, paste
Editing

Ctrl + X / Ctrl + C / Ctrl + V


Thunderbird (Windows)
Copy / Cut / Paste
Compose and Edit Message

Ctrl + C / Ctrl + X / Ctrl + V


Thunderbird (Linux)
Copy / Cut / Paste
Compose and Edit Message

Ctrl + C / Ctrl + X / Ctrl + V


Access 2010 (Windows)
Cut / Copy / Paste
Manage Access Features - Form Controls

Ctrl + X / Ctrl + C / Ctrl + V


SharpDevelop 4.0 (Windows)
Cut / Copy / Paste
Standard Editor Shortcuts

Ctrl + X / Ctrl + c Ctrl + V


Unity3D 3 (Windows)
Copy / Cut / Paste
Editing

Ctrl + c / Ctrl + x / Ctrl + v


Microsoft Word 2007 (Windows)
Cut selected text to the Office Clipboard.
Edit and move text and graphics: Delete text and graphics

Ctrl + X


Microsoft Excel 2003 (Windows)
Cut selected text
Basic

Ctrl + x


Microsoft Word 2007 (Windows)
Cut selected text or graphics to the Office Clipboard.
Edit and move text and graphics: Copy and move text and graphics

Ctrl + X


Inpage (Windows)
To cut selected text
For Editing

Ctrl + x


Phoenix Viewer (Windows)
Cut / Copy / Paste
Edit

Ctrl + X / Ctrl + C / Ctrl + V


Access 2010 (Windows)
Cut / Copy / Paste
Manage Access Features - Design View

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Outlook 2010 (Windows)
Cut/ copy/ paste
Messages in Compose View - Format Message Body

Ctrl + X / Ctrl + C / Ctrl + V


Inpage (Windows)
To cut selected objects
For Editing of Objects

Ctrl + x


Inpage (Windows)
To cut the selected objects
To Change Picture

Ctrl + x


Microsoft Excel 2010 (Windows)
Cut contents of selected cells.
Insert and Edit Data - Work with Clipboard

Ctrl + X


Mindjet Mindmanager 2012 (Windows)
Cut/paste as sub
Most used - Move topics

Ctrl + X / V


Mindjet Mindmanager 2012 (Windows)
Cut/paste as sub
Reorganizing - Move topics

Ctrl + X / V


Total Commander 8 (Windows)
Cut files to clipboard
Main Shortcuts

Ctrl + x


Access 2010 (Windows)
Cut / Copy / Paste
Working with Text and Data - Form Controls

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Outlook 2010 (Windows)
Cut/ copy/ paste
Calendar Shortcuts - Format Message Body

Ctrl + X / Ctrl + C / Ctrl + V


Opera (Linux)
Cut selection to clipboard
Text Editing

Ctrl + X


Oracle SQL Developer 4 (Windows)
Cut/ Copy/ Paste
Edit

Ctrl + X / Ctrl + C / Ctrl + V


Smartplant Review (Windows)
Cut Text
Standard Control Keys

Ctrl + x


Sublime Text (Windows)
Cut
Cut, Copy and Paste

Ctrl + X


Evernote (Windows)
Cut / Copy / Paste
Note Editor

Ctrl + x / Ctrl + c / Ctrl + v


Microsoft Excel 2010 (Windows)
Cut contents of selected cells.
Format Data - Work with Clipboard

Ctrl + X


UltraEdit (Windows)
Cut text from the document into the clipboard
Edit Menu

Ctrl + X


Access 2010 (Windows)
Cut / Copy / Paste
Working with Text and Data - Design View

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft PowerPoint 2010 (Windows)
Cut selected object.
Work with Text and Objects

Ctrl + X


Texmaker 4.0.2 (Windows)
Cut
"Edit" menu

Ctrl + X


CATIA V5 (Windows)
Cut / Copy / Paste
38 Shortcuts for CATIA V5 (Windows)

Ctrl + X / Ctrl + C / Ctrl + V


AutoCAD 2012 (Windows)
Cut object
Manage Workflow

Ctrl + X


FreeMind 0.9.0 (Windows)
Cut
Edit commands

Ctrl + X


IntelliJ (Linux)
Cut current line or selected block to clipboard
Editing

Ctrl + X / Shift + Delete


IntelliJ (Windows)
Cut current line or selected block to clipboard
Editing

Ctrl + X / Shift + Delete


iTunes (Windows)
Cut the selected song’s information or artwork
Edit Menu

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Excel 2010 (Windows)
Cut contents of selected cells.
Formulas and Names - Work with Clipboard

Ctrl + X


Access 2010 (Windows)
Cut / Copy / Paste
Working with Access Views - Form Controls

Ctrl + X / Ctrl + C / Ctrl + V


Audacity 2 (Windows)
Cut
Edit Menu

Ctrl + X


Directory Opus (Windows)
Cut
Edit Menu

Ctrl + X


FL Studio (Windows)
Cut channel steps/score
Channel Window & Step Sequencer

Ctrl + X


Beyond Compare (Windows)
Cut
Edit Menu

Ctrl + X


Pro Tools (Windows)
Cut
Edit Menu

Ctrl + X


Axialis IconWorkshop (Windows)
Cut
Edit Menu

Ctrl + X


Access 2010 (Windows)
Cut / Copy / Paste
Working with Access Views - Design View

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Word 2013 (Windows)
Cut / copy/ paste selected text or object
Undo, Copy and Paste

Ctrl + X / Ctrl + C / Ctrl + V


Qt Creator (Windows)
Cut / Copy / Paste
General

Ctrl + X / Ctrl + C / Ctrl + V


Qt Creator (MacOS)
Cut / Copy / Paste
General

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Excel 2013 (Windows)
Cut contents of selected cells
Excel Basics

Ctrl + X


FileMaker Pro (Windows)
Cut selected text
Layout Mode Shortcuts - Delete and Edit Text

Shift + Delete / Ctrl + X


FL Studio (Windows)
Cut selection
Playlist Action

Ctrl + X


Autodesk Maya 2015 (Windows)
Copy/Cut/Paste
Edit Operation

Ctrl + C / Ctrl + X / Ctrl + V


Microsoft Excel 2010 (Windows)
Cut contents of selected cells.
The Rest - Work with Clipboard

Ctrl + X


Notepad++ 6 (Windows)
Cut
Edit menu

Ctrl + X


FL Studio (Windows)
Cut selection
Piano Roll Action

Ctrl + X


Linux Mint (Linux)
Cut selected item
General

Ctrl + X


Access 2010 (Windows)
Cut / Copy / Paste
The Rest - Form Controls

Ctrl + X / Ctrl + C / Ctrl + V


FileMaker Pro (Windows)
Cut selected text
Text Shortcuts - Delete and Edit Text

Shift + Delete / Ctrl + X


Camtasia 8 (Windows)
Cut/ Copy /Paste
Standard Windows Shortcuts

Ctrl + X / Ctrl + C / Ctrl_V


Sway 2016 (Windows)
Cut (selected text)
Basic Commands

Ctrl + X


Skype for Business (Lync) 2016 (Windows)
Cut/ Copy/ Paste
Instant Messaging

Ctrl + X / Ctrl + C / Ctrl + V


FreeMeta (Windows)
Cut selected text in textbox.
FreeMeta software all shortcut keys

Ctrl + X


Microsoft OneNote 2016 (Windows)
Cut/ copy/ paste selection
Basic Editing and Formatting

Ctrl + X / Ctrl + C / Ctrl + V


Access 2010 (Windows)
Cut / Copy / Paste
The Rest - Design View

Ctrl + X / Ctrl + C / Ctrl + V


Autodesk Maya 2017 (Windows)
Copy/Cut/Paste
Edit Operation

Ctrl + C / Ctrl + X / Ctrl + V


Corel VideoStudio X9.5 (Windows)
Cut clip
Edit Tab Operations

Ctrl + X


Microsoft Visio 2016 (Windows)
Copy,Paste and Cut respectively Shape
Select Various Tool/Shape Shortcuts

Ctrl + C / Ctrl + V / Ctrl + X


Access 2016 (Windows)
Cut
Design/Content Operation(on selected control)

Ctrl + X


Microsoft PowerPoint 2016 (Windows)
Cut text/image
Edit and General Text Operations

Ctrl + X


FileMaker Pro (Windows)
Cut selected text
Database Management Shortcuts - Delete and Edit Text

Shift + Delete / Ctrl + X


Adobe Premiere CC (Windows)
Cut
General Shortcuts

Ctrl + X


Nuke 10 (Windows)
Cut Selected
Global Shortcuts

Ctrl + X


Microsoft PowerPoint 2016 (Windows)
Copy,cut and paste shapes
Shapes and Various Drawing Objects Shortcuts

Ctrl + C / Ctrl + X / Ctrl + V


Adobe Audition CC (Windows)
Copy/Cut/Paste
Marker/Tool/Clip Shortcuts

Ctrl + C / Ctrl + X / Ctrl + V


Nuke 10 (Linux)
Cut Selected
Global Shortcuts

Ctrl + X


Corel Painter 2017 (Windows)
Cut
General Shortcuts

Ctrl + X


Finale (Windows)
Cut
Edit Menu

Ctrl + X


InDesign CC (Windows)
Cut
Edit Menu shortcuts

Ctrl + X


Anime Studio (Windows)
Cut
General Shortcuts

Ctrl + X


Nuke 10 (Windows)
Copy/Cut/Paste
Curve Editor

Ctrl + C / Ctrl + X / Ctrl + V


Nuke 10 (Linux)
Copy/Cut/Paste
Curve Editor

Ctrl + C / Ctrl + X / Ctrl + V


Zoho Sheet (Windows)
Cut
Actions

Ctrl + X


Hexagon 2 (Windows)
Cut
General Shortcuts

Ctrl + X


Zoho Writer (Windows)
To Cut Contents of Document
General

Ctrl + X


3D Coat (Windows)
Cut
General Operations

Ctrl + X


3D Coat (Windows)
Unhide All
HIde Operations

Ctrl + X


Microsoft Word 2016 (Windows)
Cut text/image
Text Editing/Graphics editing Operations

Ctrl + X


Wondershare Editor (Windows)
Cut
Application control

Ctrl + X


GIMP (Linux)
Cut
Edit

Ctrl + X


Apple Photos (Windows)
Cut photo
Organize

Ctrl + X


Dynamics NAV 2015 (Windows)
Cut
General

Ctrl + X


Windows Movie Maker (Windows)
Cut
General

Ctrl + X


Dynamics CRM 2015 (Windows)
Copy/Cut/Paste
General Purpose Shortcuts

Ctrl + C / Ctrl + X / Ctrl+ V


GIMP (Windows)
Cut
Edit Shortcuts

Ctrl + X


Zoho Show (Windows)
Cut
Actions

Ctrl + X


Autodesk Inventor 2017 (Windows)
Cut
General

Ctrl + X


AutoCAD 2016 (Windows)
Cuts objects from the current drawing to the Windows Clipboard
General

Ctrl + X


Autodesk 3ds Max 2017 (Windows)
Expert mode(single Viewport)
General user interface

Ctrl + X


Silhouette Studio (Windows)
Cut
General

Ctrl + X


Microsoft Projects 2016 (Windows)
Cut selected object.
Working with OfficeArt Objects

Ctrl + X


AutoCad Architecture 2017 (Windows)
Cutclip tool
General

Ctrl + X


Act! CRM (Windows)
Cut Selected Text
General Shortcuts

Ctrl + X


Microsoft Projects 2016 (Windows)
Cut the selected data.
Sheet View

Ctrl + X


Sublime Text (Linux)
Cut Line
General Editing Shortcuts

Ctrl + X


Microsoft Excel 2016 (Windows)
Cut cell(s) to clipoard
Cut, Copy, Paste, and Paste Special

Ctrl + X


WordPress (Windows)
Cut
General Editor Shortcuts

Ctrl + X


JetBrains RubyMine (Windows)
Cut/Copy/Paste Current line to Clipboard
Editing Shortcuts

Ctrl + X / Ctrl + C / Ctrl + V


JetBrains RubyMine (Linux)
Cut/Copy/Paste Current line to Clipboard
Editing Shortcuts

Ctrl + X / Ctrl + C / Ctrl + V


Sketch 3 (MacOS)
Toggle Pixel Grid
Canvas View

Ctrl + X


Adobe XD (Experience Design) (Windows)
Cut
Edit Menu

Ctrl + X


Logic Pro X (MacOS)
Explore Polyphony
Score Editor

Ctrl + X


JetBrains PyCharm (Windows)
Cut/Copy/Paste Current line to Clipboard
Editing

Ctrl + X / Ctrl + C / Ctrl + V


Logic Pro X (MacOS)
Strip Silence
Project Audio

Ctrl + X


Cloud9 (Windows)
Cut
Clipboard

Ctrl + X


Zimbra Collaboration Suite 8 (Windows)
Check Spelling
Mail Compose Form

Ctrl + X


Autodesk SketchBook Pro (Windows)
Cut
Colors and Brushes

Ctrl + X


BrainSuite (Windows)
Toggle show cursors
Main Window

Ctrl + X


Daz 3D Bryce 7 (Windows)
Lower Terrain
Terrain Editing

Ctrl + X


Adobe RoboHelp (Windows)
Copy/Cut/Paste
General Shortcuts

Ctrl + C / Ctrl + X / Ctrl + V


Clarizen (Web Application)
Copy/Cut/Paste Selected Cell or Rows
Action

Ctrl + C / Ctrl + X / Ctrl + V


JetBrains PhpStorm (Windows)
Cut/Copy/Paste Current line to Clipboard
Editing

Ctrl + X / Ctrl + C / Ctrl + V


Blender 3D (Windows)
Erase All
Universal

Ctrl + X


Daz 3D Carrara 8 (Windows)
Cut
Application - Edit

Ctrl + X


jEdit (Windows)
Cut
Clipboard and Register

Ctrl + X


JetBrains PhpStorm (Linux)
Cut/Copy/Paste Current line to Clipboard
Editing

Ctrl + X / Ctrl + C / Ctrl + V


DAZ Studio (Windows)
Cut selected
Edit Commands

Ctrl + X


DocuSign (Web Application)
Cut
Field Shortcuts

Ctrl + X


Steinberg Cubase 9 (Windows)
Cut
Edit

Ctrl + X


Corel PhotoPaint X6 (Windows)
Cut
Edit Menu

Ctrl + X


Corel WordPerfect X8 (Windows)
Cut
63 Shortcuts for Corel WordPerfect X8 (Windows)

Ctrl + X


Corel Ventura 10 (Windows)
Cut
Text Formatting

Ctrl + X


Corel Draw X8 (Windows)
Cut
General

Ctrl + X


Daz 3D Carrara 8 (Windows)
Cut
Spline Modeler - Edit

Ctrl + X


HTML-Kit (Windows)
Cut
87 Shortcuts for HTML-Kit (Windows)

Ctrl + X


Opera (Windows)
Move selection to clipboard
Text Editing

Ctrl + X


DAZ Studio (Windows)
Cut to clipboard
Script Commands

Ctrl + X


Corel Quattro Pro X8 (Windows)
Cut
Edit Menu

Ctrl + X / Shift + Del


Gliffy (Windows)
Cut
Shape Shortcuts

Ctrl + X


Daz 3D Carrara 8 (Windows)
Cut
Vertex Modeler - Edit

Ctrl + X


Chief Architect (Windows)
Cut
General Editing

Ctrl + X


Kingsoft Presentation 2016 (Windows)
Cut
Editing Shortcuts

Ctrl + X


Flock (Windows)
Cut
General

Ctrl + X


Poser Pro (Windows)
Cut
File

Ctrl + X


Kingsoft Writer 2016 (Windows)
Cut
Editing

Ctrl + X


Kingsoft Spreadsheets 2016 (Windows)
Cuts the selected cells
Other Shortcuts

Ctrl + X


Primevera P6 P6 (Windows)
Cut
General Shortcuts

Ctrl + X


SPSS Modeler (Windows)
Cut
General Shortcuts

Ctrl + X


Brackets (Windows)
Cut
99 Shortcuts for Brackets (Windows)

Ctrl + X


Adobe Captivate 2017 (Windows)
Cut (selected object on stage)
General and Miscellaneous Shortcuts

Ctrl + X


TradeStation (Windows)
Cut
Editor Shortcuts

Ctrl + X


Krita Painting 3 (Windows)
Cut
General

Ctrl + X / Shift + Delete


Informix Genero 2.5.0 (Windows)
Cut selection
Clipboard Shortcuts

Ctrl + X / Shift + Delete


MPS 2017 (Windows)
Cut a current line or a selected code block to the Clipboard
Basic Editing

Ctrl + X


Forte (Windows)
Cut
Composition Window

Ctrl + X


Jetbrains CLion (Windows)
Cut current line or selected block to clipboard
Editing Shortcuts

Ctrl + X


VideoPad Video Editor (Windows)
Cut clip
Edit

Ctrl + X


Vuze (Windows)
Change filter as you type to/from Regex Searches
General Shortcuts

Ctrl + X


MOTU Digital Performer 9 (Windows)
Cut
General

Ctrl + X


DITA CMS (Windows)
Cut
22 Shortcuts for DITA CMS (Windows)

Ctrl + X


Siemens NX 11 (Windows)
Cut
Edit Menu

Ctrl + X


Soundforge (Windows)
Move (cut) the selected data onto the clipboard
Data Window

Ctrl + X


PotPlayer (Windows)
Filter Control Condition
Standard Keyboard Controls

Ctrl + X


Teamcenter (Windows)
Cut
Miscellaneous Shortcuts

Ctrl + X


XYplorer (Windows)
Cut
General Shortcuts

Ctrl + X


Pegasus Mail (Web Application)
Cut
Edit menu

Ctrl + X


Visual Studio Code (Windows)
Cut line (empty selection)
Editing Shortcuts

Ctrl + X


Xamarin Studio (MonoDevelop) (Windows)
Cut
Edit Menu

Ctrl + X


Unity3D 5 (Windows)
Cut
Edit

Ctrl + X


Vegas Pro 14 (Windows)
Cut selection
General Editing

Ctrl + X


Editpad 7 (Windows)
Cut
Clipboard commands

Ctrl + X


eSignal (Windows)
Cut
49 Shortcuts for eSignal (Windows)

Ctrl + X


Vegas Pro 14 (Windows)
Cut selection
Event Selection and Editing

Ctrl + X


TVPaint Animation (Windows)
Cut
89 Shortcuts for TVPaint Animation (Windows)

Ctrl + X


Synfig (Windows)
Cut currently selected layer(s) and put them in the clipboard
73 Shortcuts for Synfig (Windows)

Ctrl + X


Pencil2D (Windows)
Cut
57 Shortcuts for Pencil2D (Windows)

Ctrl + X


CrazyTalk 8 (Windows)
Cut
Editing Shortcuts

Ctrl + X


Anim8or (Windows)
Cut
Top Toolbar Shortcuts

Ctrl + X


Bitcomet (Windows)
Cut
Global

Ctrl + X


GOM Player (Windows)
Exit GOM Player when finished the files
Others

Ctrl + X


SolidWorks (Windows)
Cut
Edit Menu

Ctrl + X


Quickbooks Desktop (Windows)
Cut selected characters
General Editing

Ctrl + x


Tableau (Windows)
Cut text selection (e.g., in captions, titles, formulas, etc.)
General

Ctrl + X


DrawPlus (Windows)
Cut
Object

Ctrl + X


iClone 7 (Windows)
Cut keys or clips
Timeline Shortcuts

Ctrl + X


Solid Edge (Windows)
Cut
Standard Shortcuts

Ctrl + X


Spotify (Windows)
Cut
General

Ctrl + X


Impro-Visor (Windows)
cut chords and melody (and copy to invisible clipboard)
Cut/Paste/Copy

Ctrl + X


Cabinet Vision (Windows)
Cut Cabinet
Selection Shortcuts

Ctrl + X


CodeLite 10 (Windows)
Cut selected text
Editor

Ctrl + X


Rhino (Windows)
Cut
Default Shortcuts

Ctrl + X


Solidworks 2019
Cut
Windows

Ctrl + X


QCad (Windows)
Cut
Editing Shortcuts

Ctrl + X


QCad (Linux)
Cut
Editing Shortcuts

Ctrl + X


Webflow (Windows)
Cut
Copy/paste

Ctrl + X


TurboCAD (Windows)
Cut the selection and put it on the Clipboard
171 Shortcuts for TurboCAD (Windows)

Ctrl + X


winIDEA
Cut the selection and put it on to the Clipboard
Edit

Ctrl + X


Xyplorer
Cut
Edit Menu

Ctrl + X


progeCAD (Windows)
Cuts selected entities from the active drawing and copies them into the Windows clipboard
51 Shortcuts for progeCAD (Windows)

Ctrl + X


RStudio (Windows)
Cut
Editing (Console and Source)

Ctrl + X


Kate (Linux)
Delete the marked text and copy it to the clipboard
29 Shortcuts for Kate (Linux)

Ctrl + X


Kate (Windows)
Delete the marked text and copy it to the clipboard
38 Shortcuts for Kate (Windows)

Ctrl + X


CuteFTP (Windows)
Cut
General

Ctrl + X


PSPad (Windows)
Cut - Cut selected text to clipboard
Edit

Ctrl + X


Comodo IceDragon (Windows)
Cut
Editing Options

Ctrl + X


Modo (Windows)
Cut
General/System

Ctrl + X


Most used text editing
Cut selected text
Editing text

Ctrl + X


Webflow
Cut
Copy / paste

Ctrl + X


Geany (Linux)
Cut
Cut and Paste

Ctrl + X


Geany (Windows)
Cut
Cut and Paste

Ctrl + X


VariCAD (Windows)
2D View from 3D
Hot Keys

Ctrl + X


App Maker
Cut the selected text
Code editor shortcuts

Ctrl + X


Wordfast Pro (Windows)
Cut
100 Shortcuts for Wordfast Pro (Windows)

Ctrl + X / Shift + Delete


FEKO (Windows)
Cut selected text to clipboard
General Shortcuts

Ctrl + X / Shift + Del


FEKO (Linux)
Cut selected text to clipboard
General Shortcuts

Ctrl + X / Shift + Del


SAP Web IDE (Windows)
Cut/ Copy/ Paste
47 Shortcuts for SAP Web IDE (Windows)

Ctrl + X / C / V


PhotoFiltre (Windows)
Cut the image or selection
Selection, past and text

Ctrl + X


IRONCAD (Windows)
Cut
File/Editing Keys

Ctrl + X


Roblox Studio
Cut
General Editing

Ctrl + X


Ulead PhotoImpact 8 (Windows)
Cuts the current selection
Edit Menu

Ctrl + X


Ableton Live 9 (Windows)
Copy
Editing

Ctrl + X


Chromebook (Linux)
Cut text from document and copy to clipboard
34 Shortcuts for Chromebook (Linux)

Ctrl + X


ChessBase 13
Create a new database in the current directory
Database window

Ctrl + X


KiCad 5.0.2
Cut
Pcbnew

Ctrl + X


GibbsCAM (Windows)
Cut
Edit Menu

Ctrl + X


SpaceClaim (Windows)
Cut
71 Shortcuts for SpaceClaim (Windows)

Ctrl + X


Vectorworks (Windows)
Cut
Edit Menu

Ctrl + X


DaVinci Resolve 14 (Windows)
Cut
Edit

Ctrl + X


Inkscape (Windows)
Cut selection - This works the same as copy selection followed by deleting the selection
Objects

Ctrl + X


Cisco IOS
Delete all characters from the cursor to the beginning of the command line
Delete CLI entries

Ctrl + X


Huggle
Next contribution
Navigation

Ctrl + X


Arduino (Windows)
Cut
29 Shortcuts for Arduino (Windows)

Ctrl + X


Target 3001! (Windows)
Cut
Editing Shortcuts

Ctrl + X / Ctrl + Delete


Arduino (Linux)
Cut
29 Shortcuts for Arduino (Linux)

Ctrl + X


gEDA (Linux)
Cut selection to buffer
Other Important Shortcuts

Ctrl + X


Sage Simply Accounting (Windows)
Cut selection
General

Ctrl + X


RStudio
Cut
Editing (Console and Source)

Ctrl + X


WavePad Sound Editor (Windows)
Cut
Edit Operations

Ctrl + X


AVS Audio Editor (Windows)
Cuts a waveform to internal clipboard
Edit

Ctrl + X


Altium Designer (Windows)
Cut
Common Schematic and PCB Editor Shortcuts

Ctrl + X / Shift + Delete


Oracle RightNow
Cut
Text editing

Ctrl + X


Balsamiq Mockups (Windows)
Cut the selected controls
Edit/History

Ctrl + X


SolveSpace (Windows)
Cut
Edit menu

Ctrl + X


NetHack
Player info
Game options

Ctrl + X


KeyCreator (Windows)
Cut to Clipboard
General Shortcuts

Ctrl + X


TopSolid (Windows)
Cut Selected Operations
Operation Manager

Ctrl + X


BobCAD (Windows)
Cut
22 Shortcuts for BobCAD (Windows)

Ctrl + X


CamBam (Windows)
Cut object and place on clipboard
32 Shortcuts for CamBam (Windows)

Ctrl + X


DraftSight (Windows)
Cut
37 Shortcuts for DraftSight (Windows)

Ctrl + X


BricsCAD (Windows)
Cuts the selection and puts it on the clipboard (CUTCLIP command)
Other Shortcuts

Ctrl + X


Brave Browser (Windows)
Cut
Page Navigation and Display

Ctrl + X


BricsCAD (Linux)
Cuts the selection and puts it on the clipboard (CUTCLIP Ctrl)
Other Shortcuts

Ctrl + X


AVS Video Editor (Windows)
Cut object
Text Properties

Ctrl + X / Shift + Delete


Adobe Illustrator
Cut
Frequently used shortcuts

Ctrl + X


eMachineShop (Windows)
Place selected line(s) to clipboard and clear the line(s) from screen
38 Shortcuts for eMachineShop (Windows)

Ctrl + X


Figma (Web Application)
Cut
Edit

Ctrl + X


FlexiSign Pro 8.1 (Windows)
Cut
Selection

Ctrl + X


EasyWorship
Cut the selected text to the Windows clipboard
Editor

Ctrl + X


MindManager v19 (Windows)
Cut/paste as sub
Most used - Move topics

Ctrl + X / V


Substance Painter
Cut layer
Non-editable shortcuts

Ctrl + X


Aspire (Windows)
Cut the selected vectors
Node Editing

Ctrl + X


MindManager v19 (Windows)
Cut/paste as sub
Reorganizing - Move topics

Ctrl + X / V


VCarve Pro (Windows)
Cut the selected vectors
Node Editing

Ctrl + X


Ableton Live 10
Cut
Editing

Ctrl + X


SuperMemo (Windows)
Cut
129 Shortcuts for SuperMemo (Windows)

Ctrl + X


LDCad
Cut (copy to clipboard and remove) the current selection. A dialog with extra options might first appear if needed
Editor

Ctrl + X


Altium Designer (Windows)
Cut
Output Job Editor Shortcuts

Ctrl + X / Shift + Delete


Cisco Jabber
Cut
Instant messages

Ctrl + X


Altium Designer (Windows)
Cut
CAM Editor Shortcuts

Ctrl + X


Altium Designer (Windows)
Cut waveform
CAM Editor Shortcuts

Ctrl + X / Shift + Delete


Altium Designer (Windows)
Cut
SimData Editor Shortcuts

Ctrl + X / Shift + Delete


Tableau
Cut text selection (in captions, titles, formulas, etc.)
Authoring views (Tableau Desktop)

Ctrl + X


BlackBerry Classic
Cut
Ctrl shortcuts

Ctrl + X


Altium Designer (Windows)
Cut
Common Shortcuts

Ctrl + X / Shift + Delete


Lacerte
Cut a property (Active in the list panel only)
Interactive Detail Input

Ctrl + X


Ubuntu
Cut the selected text/object
Common application shortcuts

Ctrl + X


AutoCAD
Cut object
Manage Workflow

Ctrl + X


Microsoft Sticky Notes
Kes
Formatting

Ctrl + X


draw.io
Cut
Canvas

Ctrl + X


Claws Mail
Cut
Compose window

Ctrl + X


Siemens NX
Cut
Edit menu

Ctrl + X


Tibia
Cut the selected text and put it into the clipboard
Text editing

Ctrl + X


HitFilm
Cut selection
General

Ctrl + X


Shotcut
Cut
Timeline

Ctrl + X


PyCharm 2018.2
Cut a current line or a selected code block to the Clipboard.
Basic editing

Ctrl + X


QuickBooks Desktop
Cut
Standard Text Editing

Ctrl + X


Nimbus Note
Cut
General

Ctrl + X


Novelty Visual Novel Maker
Cut selection
Controls

Ctrl + X


ArtRage Studio Pro
Cut
Edit Commands

Ctrl + X


Evernote for Windows
Cut
Note Editor

Ctrl + X


Quicken 2018
Go to Transfer
Register and Write Checks

Ctrl + X


Confluence
Cut
Editor

Ctrl + X


Autodesk Stingray
Cut selected keys
Story editor

Ctrl + X


Aegisub
Cut subtitles
Default

Ctrl + X


ActivePresenter 7
Kes
General

Ctrl + X


Bluebeam Revu
Cut
Markup & editing

Ctrl + X


Alteryx
Cut
Undo and redo, copy and paste

Ctrl + X


Gravit Designer
Cut
Edit

Ctrl + X


Unreal Engine
Cut
Common commands

Ctrl + X


ProgeCAD
Cut to Clipboard
General

Ctrl + X


Unity
Cut
Edit

Ctrl + X


Nuke
Cut selected keys
Curve editor / dope sheet

Ctrl + X


PaintShop Pro 2018
Cut
Shortcuts with Ctrl

Ctrl + X


CorelDRAW Graphics Suite 2018
Cut
General

Ctrl + X


jEdit
Cut selected text to clipboard.
Clipboard and registers

Ctrl + X


Adobe Dimension CC (Windows)
Cut
Edit menu

Ctrl + X


Nuance Power PDF
Cut selected item to clipboard
Operations

Ctrl + X


Windows PowerShell ISE
(Script pane) Cut
Editing text

Ctrl + X


ZenWriter 2
Cut
General

Ctrl + X


Metapad
Cut
File format

Ctrl + X


SimpleMind
Cut selected element
General

Ctrl + X


LightWave 3D
IKB calculate
Layout: Modify

Ctrl + X


Microsoft Paint
Cut selected area
Powers of Ctrl

Ctrl + X


PDF-XChange Editor
Cut
General

Ctrl + X


Inkscape
Cut selection
Object

Ctrl + X


Clip Studio Paint Pro
Cut
Edit menu

Ctrl + X


Xodo
Cut
Annotating

Ctrl + X


Adobe Premiere Pro (Windows)
Cut
Edit

Ctrl + X


TextRoom
Cut
General

Ctrl + X


Autodesk SketchBook (Windows)
Cut
Hotkeys in SketchBook for Windows 10

Ctrl + X


Microsoft Word 2016
Cut selected text or graphics to the Office Clipboard.
Copy and move text and graphics

Ctrl + X


Microsoft FrontPage
Cut selected text to the Microsoft Office Clipboard.
Edit and move text and graphics

Ctrl + X


Corel Painter
Cut
Edit menu

Ctrl + X


gedit
Cut the selected text or region and place it on the clipboard
Editing files

Ctrl + X


Atom (Windows)
(Source: Tree View) tree-view:cut
All shortcuts

Ctrl + X


KDE Plasma Desktop
Cut
Working with files

Ctrl + X


GNOME
Cut (remove) selected text or items and place it on the clipboard.
Common editing shortcuts

Ctrl + X


Adobe XD (Windows)
Cut
Edit menu

Ctrl + X


E-Sword
Cut Editors only
General

Ctrl + X


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

Ctrl + X


AWS Cloud9 IDE (Windows)
Cut
Clipboard

Ctrl + X


WavePad
Cut
Edit Operations

Ctrl + X


Chromebook and Chrome OS
Cut
Text editing

Ctrl + X


Comodo IceDragon
Cut
Edit Options

Ctrl + X


IntelliJ IDEA (Windows, Linux)
Cut current line to clipboard
Editing

Ctrl + X


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

Ctrl + X


Ditto
Cut Clips between Groups (this does not use the Windows Clipboard)
General

Ctrl + X


Sweet Home 3D
Cut
General

Ctrl + X


PSPad
Cut
Edit

Ctrl + X


Kdenlive
Ripple Delete
Editing

Ctrl + X


Microsoft PowerPoint (Creating presentations)
Cut selected object or text
Delete and copy text and objects

Ctrl + X


GoldWave
Cuts the selection.
Editing

Ctrl + X


Brackets
Cut
General

Ctrl + X


Mp3tag
Cut tag or selected text
General

Ctrl + X