Eclipse

Editing text

Undo last action

Ctrl + Z

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


Open Office Writer 3 (Linux)
Undo
Editing

Ctrl + Z


Google Chrome (Windows)
Undo / Redo Change
Manage Chrome DevTools - Elements Panel

Ctrl + Z / Ctrl + Y


Microsoft Word 2007 (Windows)
Undo the last action.
Common tasks

Ctrl + Z


Microsoft OneNote 2010 (Windows)
Undo / Redo the last action.
Basic Editing and Formatting

ctrl + z / y


Microsoft Excel 2010 (Windows)
Undo last action (multiple levels).
Work with Data Selections - Undo / Redo Shortcuts

Ctrl + Z


Eclipse Helios (Windows)
Undo last action
Edit Text

Ctrl + Z


Microsoft Windows 7 (Windows)
Undo an action
Managing 'Windows' in Windows 7 - Manipulate Items in Explorer

Ctrl + Z


KDevelop (Linux)
Undo
Editing

Ctrl + Z


Visual Studio 2015 (Windows)
Undo
Code Editor - Undo, Redo, Copy, Paste

Ctrl + Z


Google Chrome (Linux)
Undo / Redo Change
Manage Chrome DevTools - Elements Panel

Ctrl + Z / Ctrl + Y


SharpDevelop 4.0 (Windows)
Undo
Standard Editor Shortcuts

Ctrl + Z


Unity3D 3 (Windows)
Undo
Editing

Ctrl + z


Microsoft Word 2007 (Windows)
Undo the last action.
Edit and move text and graphics: Delete text and graphics

Ctrl + Z


Thunderbird (Windows)
Undo
Other Shortcuts

Ctrl + Z


Microsoft Excel 2003 (Windows)
Undo
Basic

Ctrl + z


Thunderbird (Linux)
Undo
Other Shortcuts

Ctrl + Z


Access 2010 (Windows)
Undo Changes
Manage Access Features - Edit Text and Data

Ctrl + Z


Microsoft Windows 7 (Windows)
Undo an action
Windows Explorer - Manipulate Items in Explorer

Ctrl + Z


Phoenix Viewer (Windows)
Undo / Redo
Edit

Ctrl + Z / Ctrl + Y


Zune (Windows)
Zoom video size
Other

Ctrl + Z


Inpage (Windows)
To undo last action
For Editing of Objects

Ctrl + z


Visual Studio 2015 (Windows)
Undo
Coding - Undo, Redo, Copy, Paste

Ctrl + Z


Microsoft Excel 2010 (Windows)
Undo last action (multiple levels).
Insert and Edit Data - Undo / Redo Shortcuts

Ctrl + Z


Tekla Structures 14.0 (Windows)
Undo
General shortcuts

Ctrl + z


Adobe Photoshop CS5 (Windows)
Undo a selection move
Photoshop CS5 Panels - Pattern Maker Only

Ctrl + Z


Microstation v8i (Windows)
Undo / Redo
Editing

Ctrl + Z / Ctrl + R


Google Docs (Windows)
Undo
Edit Documents

Ctrl + Z


Microsoft PowerPoint 2003 (Windows)
Undo
40 Shortcuts for Microsoft PowerPoint 2003 (Windows)

Ctrl + Z


Microsoft Windows 7 (Windows)
Undo an action
Windows Admin - Manipulate Items in Explorer

Ctrl + Z


Vuescan (Windows)
Zoom In
14 Shortcuts for Vuescan (Windows)

Ctrl + Z


Visual Studio 2015 (Windows)
Undo
Code Snippets (Visual C# Scheme) - Undo, Redo, Copy, Paste

Ctrl + Z


Total Commander 8 (Windows)
Edit file comment
Main Shortcuts

Ctrl + z


Opera (Linux)
Undo recent changes
Text Editing

Ctrl + Z


Microsoft Windows 8 (Windows)
Undo an action
Windows Explorer - Manage Items in Explorer

Ctrl + Z


Microsoft Windows 7 (Windows)
Undo an action
Ease of Access and Magnifier - Manipulate Items in Explorer

Ctrl + Z


Oracle SQL Developer 4 (Windows)
Undo/ Redo
Edit

Ctrl + Z / Ctrl + Y


Sublime Text (Windows)
Undo
Undo and Redo

Ctrl + Z


Smartplant Review (Windows)
Undo
Standard Control Keys

Ctrl + z


Microsoft Excel 2010 (Windows)
Undo last action (multiple levels).
Format Data - Undo / Redo Shortcuts

Ctrl + Z


Evernote (Windows)
Undo last edit
Note Editor

Ctrl + z


Access 2010 (Windows)
Undo Changes
Working with Text and Data - Edit Text and Data

Ctrl + Z


UltraEdit (Windows)
Undo the last action if possible
Edit Menu

Ctrl + Z


Microsoft PowerPoint 2010 (Windows)
Undo the last action.
Work with Text and Objects

Ctrl + Z


Adobe Photoshop CS5 (Windows)
Undo a selection move
Extract and Pattern Maker (plug-in) - Pattern Maker Only

Ctrl + Z


Texmaker 4.0.2 (Windows)
Undo
"Edit" menu

Ctrl + Z


Microsoft Outlook 2010 (Windows)
Undo last action
Tasks Shortcuts

Ctrl + Z


CATIA V5 (Windows)
Undo
38 Shortcuts for CATIA V5 (Windows)

Ctrl + Z


AutoCAD 2012 (Windows)
Undo last action
Manage Workflow

Ctrl + Z


Avid Media Composer 7 (Windows)
Undo
Editing

Ctrl + Z


Vuescan (Linux)
Zoom In
12 Shortcuts for Vuescan (Linux)

Ctrl + Z


Adobe Photoshop CS5 (Windows)
Undo last pin adjustment
Puppet Warp

Ctrl + Z


iTunes (Windows)
Undo your last typing change while still in edit mode
Edit Menu

Ctrl + Z


Microsoft Excel 2010 (Windows)
Undo last action (multiple levels).
Formulas and Names - Undo / Redo Shortcuts

Ctrl + Z


Adobe Photoshop CS5 (Windows)
Undo/Redo
Filter Gallery

Ctrl + Z


Audacity 2 (Windows)
Undo
Edit Menu

Ctrl + Z


Directory Opus (Windows)
Undo
Edit Menu

Ctrl + Z


Notepad2 (Windows)
Undo
Edit Menu

Ctrl + Z


Adobe Photoshop CS5 (Windows)
Undo last action
Vanishing Point

Ctrl + Z


Presonus Studio One (Windows)
Undo
Edit Menu

Ctrl + Z


Beyond Compare (Windows)
Undo
Edit Menu

Ctrl + Z


Pro Tools (Windows)
Undo
Edit Menu

Ctrl + Z


Access 2010 (Windows)
Undo Changes
Working with Access Views - Edit Text and Data

Ctrl + Z


Axialis IconWorkshop (Windows)
Undo
Edit Menu

Ctrl + Z


Microsoft Word 2013 (Windows)
Undo the last action
Undo, Copy and Paste

Ctrl + z


Qt Creator (Windows)
Undo
General

Ctrl + Z


Qt Creator (MacOS)
Undo
General

Ctrl + Z


Microsoft Excel 2013 (Windows)
Undo last action (multiple levels)
Excel Basics

Ctrl + Z


FileMaker Pro (Windows)
Undo
Layout Mode Shortcuts - Delete and Edit Text

Alt + Backspace / Ctrl + Z


Comsol 5 (Windows)
Undo the last operation
Model Tree

Ctrl + Z


Comsol 5 (Linux)
Undo the last operation
Model Tree

Ctrl + Z


Microsoft Excel 2010 (Windows)
Undo last action (multiple levels).
The Rest - Undo / Redo Shortcuts

Ctrl + Z


Google Drive (Web Application)
Undo last action
Item Actions

ctrl + z


Notepad++ 6 (Windows)
Undo
Edit menu

Ctrl + Z


Windows 10 Command Prompt (Windows)
Signal end of Line; text afterwards will be ignored
Enter and Manipulate Text

Ctrl + Z


Microsoft Windows 10 (Windows)
Undo an action
Manage Items in Explorer

Ctrl + Z


FileMaker Pro (Windows)
Undo the last command
Layout Mode Shortcuts - Relationships Graph

Ctrl + Z


Linux Mint (Linux)
Undo / redo
General

Ctrl + Z / Ctrl + Y


Prezi (Web Application)
Undo / Redo last action
Editing

Ctrl + Z / Ctrl + Y


Adobe After Effects CC (Windows)
Undo / Redo
Basics

Ctrl + Z / Ctrl + Shift + Z


FileMaker Pro (Windows)
Undo
Text Shortcuts - Delete and Edit Text

Alt + Backspace / Ctrl + Z


Camtasia 8 (Windows)
Undo /Redo
Standard Windows Shortcuts

Ctrl + Z / Ctrl + Y


Adobe Photoshop CC (Windows)
Toggle Undo (one step forwards/ backwards only)
Basic Shortcuts for Photoshop CC 2015 - Edit Basics

Ctrl + Z


Sway 2016 (Windows)
Undo/redo the last action
Basic Commands

Ctrl + Z / Ctrl + Y


Access 2010 (Windows)
Undo Changes
The Rest - Edit Text and Data

Ctrl + Z


Microsoft OneNote 2016 (Windows)
Undo/ redo last action
Basic Editing and Formatting

Ctrl + Z / Y


Skype for Business (Lync) 2016 (Windows)
Undo / Redo
Instant Messaging

Ctrl + Z / Ctrl + Y


Onshape (Windows)
Undo
General

Ctrl + Z


Clink (Windows)
Undo
Clink Commands

Ctrl + Z


Google Slides (Windows)
Undo
General Slides Shortcuts

Ctrl + Z


Clink (Windows)
undo
BASH (GNU Readline) Line Editing

Ctrl + Z


FileMaker Pro (Windows)
Undo the last command
Text Shortcuts - Relationships Graph

Ctrl + Z


Corel VideoStudio X9.5 (Windows)
Undo changes
Edit Tab Operations

Ctrl + Z


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

Ctrl + Z / Alt + Bkspace


Microsoft PowerPoint 2016 (Windows)
Undo changes in presentation
Edit and General Text Operations

Ctrl + Z


Adobe Premiere CC (Windows)
Undo
General Shortcuts

Ctrl + Z


FileMaker Pro (Windows)
Undo
Database Management Shortcuts - Delete and Edit Text

Alt + Backspace / Ctrl + Z


Microsoft Visio 2016 (Windows)
Undo Changes
File Operation

Ctrl + Z


Adobe Audition CC (Windows)
Undo
Marker/Tool/Clip Shortcuts

Ctrl + Z


Microsoft PowerPoint 2016 (Windows)
Undo/Redo changes
Shapes and Various Drawing Objects Shortcuts

Ctrl + Z / Ctrl + Y


Nuke 10 (Windows)
Undo
Global Shortcuts

Ctrl + Z


Nuke 10 (Linux)
Undo
Global Shortcuts

Ctrl + Z


FileMaker Pro (Windows)
Undo the last command
Database Management Shortcuts - Relationships Graph

Ctrl + Z


Adobe Photoshop CC (Windows)
Toggle Undo (one step forwards/ backwards only)
Manage Panels - Edit Basics

Ctrl + Z


Microsoft Outlook 2016 (Windows)
Undo last action
Tasks

Ctrl + Z


FileMaker Pro (Windows)
Undo the last command
General keyboard shortcuts (Windows)

Ctrl + Z


Corel Painter 2017 (Windows)
Undo
General Shortcuts

Ctrl + Z


Finale (Windows)
Undo
Edit Menu

Ctrl + Z


InDesign CC (Windows)
Undo
Edit Menu shortcuts

Ctrl + Z


Anime Studio (Windows)
Undo
General Shortcuts

Ctrl + Z


ArchiCAD 20 (Windows)
Undo
Edit Menu Commands

Ctrl + Z


3D Coat (Windows)
Undo
Edit Menu

Ctrl + Z


ArchiCAD 20 (Windows)
Undo
Edit Commands(Text)

Ctrl + Z


Zoho Sheet (Windows)
Undo last action
Actions

Ctrl + Z


Hexagon 2 (Windows)
Undo
General Shortcuts

Ctrl + Z


Zoho Writer (Windows)
To Undo Last Action
General

Ctrl + Z


Microsoft Word 2016 (Windows)
Undo changes in presentation
Text Editing/Graphics editing Operations

Ctrl + Z


Wondershare Editor (Windows)
Undo
Application control

Ctrl + Z


Dynamics SL 2015 (Windows)
Undo paste
General Shortcuts

Ctrl + Z


GIMP (Linux)
Undo
Edit

Ctrl + Z


Dynamics NAV 2015 (Windows)
Undo
General

Ctrl + Z


Age of Empires (Windows)
Go to lumber camp
Game Commands

Ctrl + Z


Windows Movie Maker (Windows)
Undo the last action
General

Ctrl + Z


Dynamics CRM 2015 (Windows)
Undo / Redo previous text change
General Purpose Shortcuts

Ctrl + Z / Ctrl + Y


Apple Photos (Windows)
Undo last action
Edit

Ctrl + Z


GIMP (Windows)
Undo
Edit Shortcuts

Ctrl + Z


Zoho Show (Windows)
Undo last action
Actions

Ctrl + Z


Autodesk Inventor 2017 (Windows)
Undo
General

Ctrl + Z


AutoCAD 2016 (Windows)
Reverses the last action
General

Ctrl + Z


Autodesk 3ds Max 2017 (Windows)
Undo scene operation
General user interface

Ctrl + Z


CyberLink PhotoDirector 8 (Windows)
Undo
General

Ctrl + Z


Silhouette Studio (Windows)
Undo
General

Ctrl + Z


Ace Projects (Windows)
Undo
Other Shortcuts

Ctrl + Z


Microsoft Projects 2016 (Windows)
Undo the last action.
Working with OfficeArt Objects

Ctrl + Z


Microsoft Projects 2016 (Windows)
Undo.
Working with OfficeArt Objects

Ctrl + Z


AutoCad Architecture 2017 (Windows)
Undo
General

Ctrl + Z


Act! CRM (Windows)
Undo Activity
General Shortcuts

Ctrl + Z


Microsoft Projects 2016 (Windows)
Undo the last action.
Sheet View

Ctrl + Z


Microsoft Excel 2016 (Windows)
Undo
Undo, Redo, and Repeat Action

Ctrl + Z


WordPress (Windows)
Undo
General Editor Shortcuts

Ctrl + Z


Google Blogger (Web Application)
Undo
15 Shortcuts for Google Blogger (Web Application)

Ctrl + Z


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

Ctrl + Z


Cloud9 (Windows)
Undo
Clipboard

Ctrl + Z


Logic Pro X (MacOS)
New Zone
Audio File Editor

Ctrl + Z


Autodesk SketchBook Pro (Windows)
Undo
Colors and Brushes

Ctrl + Z


BrainSuite (Windows)
Undo last paint action
Main Window

Ctrl + Z


Windows 10 File Explorer (Windows)
Undo an action
Folder Content (Main Pane) - Manage File/ Folders

Ctrl + Z


Autodesk Mudbox 2017 (Windows)
Undo
Edit Menu

Ctrl + Z


Daz 3D Bryce 7 (Windows)
Undo One Step
Terrain Editing

Ctrl + Z


Adobe RoboHelp (Windows)
Undo
General Shortcuts

Ctrl + Z


Bash (Linux)
Send the signal SIGTSTP to Current Task
Process Controls

Ctrl + Z


Blender 3D (Windows)
Undo
Universal

Ctrl + Z


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

Ctrl + Z


DAZ Studio (Windows)
Undo
Edit Commands

Ctrl + Z


jEdit (Windows)
Undo
Text Editing

Ctrl + Z


DocuSign (Web Application)
Undo
Field Shortcuts

Ctrl + Z


Corel PhotoPaint X6 (Windows)
Undo
Edit Menu

Ctrl + Z


Corel Ventura 10 (Windows)
Undo
Text Formatting

Ctrl + Z


Corel Draw X8 (Windows)
Undo
General

Ctrl + Z / Ctrl + Backspace


Steinberg Cubase 9 (Windows)
Undo
Edit

Ctrl + Z


VMWare Workstation 12 (Windows)
Suspend Virtual Machine
14 Shortcuts for VMWare Workstation 12 (Windows)

Ctrl + Z


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

Ctrl + Z


Opera (Windows)
Undo recent changes
Text Editing

Ctrl + Z


Corel Quattro Pro X8 (Windows)
Undo
Edit Menu

Ctrl + Z


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

Ctrl + Z


Clip Studio Paint (Manga Studio) (Windows)
Undo Last Operation
Frequently Used Shortcuts

Ctrl + Z


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

Ctrl + Z


Gliffy (Windows)
Undo
Shape Shortcuts

Ctrl + Z


Clip Studio Paint (Manga Studio) (Windows)
Undo Last Action
Tool Actions

Ctrl + Z


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

Ctrl + Z


Forte (Windows)
Undo
Main Browser Window

Ctrl + Z


Kingsoft Presentation 2016 (Windows)
Undo
Editing Shortcuts

Ctrl + Z


Poser Pro (Windows)
Undo load library pose
File

Ctrl + Z


Flock (Windows)
Undo
General

Ctrl + Z


Kingsoft Spreadsheets 2016 (Windows)
Undo
Other Shortcuts

Ctrl + Z


IBM Maximo (Windows)
Open/Close table window Filter
Table Windows

Ctrl + Z


SPSS Modeler (Windows)
Undo
General Shortcuts

Ctrl + Z


Brackets (Windows)
Undo
99 Shortcuts for Brackets (Windows)

Ctrl + Z


Adobe Captivate 2017 (Windows)
Undo
General and Miscellaneous Shortcuts

Ctrl + Z


Krita Painting 3 (Windows)
Undo
General

Ctrl + Z


TradeStation (Windows)
Undo
Editor Shortcuts

Ctrl + Z


Informix Genero 2.5.0 (Windows)
Undo
Editing Shortcuts

Ctrl + Z


Amarok (Windows)
Undo
General Shortcuts

Ctrl + Z


MPS 2017 (Windows)
Undo last operation
Basic Editing

Ctrl + Z


Forte (Windows)
Undo
Composition Window

Ctrl + Z


vSphere Client (Windows)
Suspend VM
Miscellaneus Shortcuts

Ctrl + Z


MetaTrader MT4 (Windows)
Undo Previous Object Deletion
Miscellaneous Shortcuts

Ctrl + Z


VideoPad Video Editor (Windows)
Undo
Edit

Ctrl + Z


PotPlayer (Windows)
Mirror Image On/Off
Standard Keyboard Controls

Ctrl + Z


MOTU Digital Performer 9 (Windows)
Undo/redo
General

Ctrl + Z


Siemens NX 11 (Windows)
Undo List
Edit Menu

Ctrl + Z


Soundforge (Windows)
Undo the last action
Data Window

Ctrl + Z


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

Ctrl + Z


KMPlayer (Windows)
Stop
General

Ctrl + Z


ZBrush 4 (Windows)
Undo
General Shortcuts

Ctrl + Z


Pegasus Mail (Web Application)
Undo
Edit menu

Ctrl + Z


Jupyter Notebook (Windows)
undo
Edit Mode (press Enter to enable)

Ctrl + Z


Xamarin Studio (MonoDevelop) (Windows)
Undo
Edit Menu

Ctrl + Z


Unity3D 5 (Windows)
Undo
Edit

Ctrl + Z


Aptana Studio 3 (Windows)
Undo
Other Shortcuts

Ctrl + Z


Editpad 7 (Windows)
Undo
Select and Edit Text

Ctrl + Z


Vegas Pro 14 (Windows)
Undo
General Editing

Ctrl + Z


CrazyTalk 8 (Windows)
Undo
General Shortcuts

Ctrl + Z


Synfig (Windows)
Undo
73 Shortcuts for Synfig (Windows)

Ctrl + Z


Pencil2D (Windows)
Undo
57 Shortcuts for Pencil2D (Windows)

Ctrl + Z


Anim8or (Windows)
Undo
Top Toolbar Shortcuts

Ctrl + Z


iClone 7 (Windows)
Undo
Working Area

Ctrl + Z


GOM Player (Windows)
Shutdown Computer when finished the files
Others

Ctrl + Z


SolidWorks (Windows)
Undo
Edit Menu

Ctrl + Z


Quickbooks Desktop (Windows)
Undo changes made in field
General Editing

Ctrl + z


DrawPlus (Windows)
Undo
Object

Ctrl + Z


Tableau (Windows)
Undo
General

Ctrl + Z


Google Data Studio
Undo
General (Windows)

Ctrl + Z


Solid Edge (Windows)
Undo
Standard Shortcuts

Ctrl + Z


CodeLite 10 (Windows)
Undo last action
Editor

Ctrl + Z


Creo Parametric (Windows)
Undo
26 Shortcuts for Creo Parametric (Windows)

Ctrl + Z


Rhino (Windows)
Undo
Default Shortcuts

Ctrl + Z


QCad (Windows)
Undo (oops)
Editing Shortcuts

OO / Ctrl + Z


QCad (Linux)
Undo (oops)
Editing Shortcuts

OO / Ctrl + Z


Putty (Windows)
Puts whatever you are running into a suspended background process. Typeto restore it.
16 Shortcuts for Putty (Windows)

Ctrl + Z


WeVideo (Web Application)
Undo
General (On Mac Ctrl equals Command)

Ctrl + Z


Solidworks 2019
Undo
Windows

Ctrl + Z


Delphi 10 (Windows)
Undo
193 Shortcuts for Delphi 10 (Windows)

Ctrl + Z


Alphacam (Windows)
Undo
Regular Commands

Ctrl + Z


Webflow (Windows)
Undo
Undo/redo

Ctrl + Z


TurboCAD (Windows)
Undo the last action
171 Shortcuts for TurboCAD (Windows)

Ctrl + Z


winIDEA
Undo the last action
Edit

Ctrl + Z


Xyplorer
Undo
Edit Menu

Ctrl + Z


VMware Workstation 5.0
Suspend.
General

Ctrl + Z


Simplify3D
Undo
Edit menu

Ctrl + Z


RStudio (Windows)
Undo
Editing (Console and Source)

Ctrl + Z


FlashFXP (Web Application)
Transfer queue
54 Shortcuts for FlashFXP (Web Application)

Ctrl + Z


Surfcam (Windows)
Enable the Zoom In function
60 Shortcuts for Surfcam (Windows)

Ctrl + Z


PSPad (Windows)
Undo - Undo last change
Edit

Ctrl + Z


Kate (Linux)
Undo
29 Shortcuts for Kate (Linux)

Ctrl + Z


Kate (Windows)
Undo
38 Shortcuts for Kate (Windows)

Ctrl + Z


CuteFTP (Windows)
Undo (When in HTML editor mode)
General

Ctrl + Z


Xterm
Stop current command (send it to the background)
General

Ctrl + Z


progeCAD (Windows)
Reverses the last command action
51 Shortcuts for progeCAD (Windows)

Ctrl + Z


Modo (Windows)
Undo
General/System

Ctrl + Z


Moldflow Insight (Windows)
Undo
Editing Shortcuts

Ctrl + Z


Most used text editing
Undo
Editing text

Ctrl + Z


Comodo IceDragon (Windows)
Undo
Editing Options

Ctrl + Z


Moldflow Adviser (Windows)
Undo
Editing Shortcuts

Ctrl + Z


App Maker
Undo
Global shortcuts

Ctrl + Z


Affinity Photo
Undo
Edit

Ctrl + Z


VariCAD (Windows)
Undo
Hot Keys

Ctrl + Z


Vivaldi
Re-open last closed tab
Tab

Ctrl + Z


FEKO (Windows)
Undo
General Shortcuts

Ctrl + Z


FEKO (Linux)
Undo
General Shortcuts

Ctrl + Z


Geany (Windows)
Undo
Editting

Ctrl + Z


Geany (Linux)
Undo
Editting

Ctrl + Z


Dropbox Paper
Undo
Editing

Ctrl + Z


SAP Web IDE (Windows)
Undo
47 Shortcuts for SAP Web IDE (Windows)

Ctrl + Z


IRONCAD (Windows)
Undo
File/Editing Keys

Ctrl + Z


Ulead PhotoImpact 8 (Windows)
Undoes the last menu command
Edit Menu

Ctrl + Z


Inkscape (Windows)
Cancel changes
Control Bar

Ctrl + Z


Roblox Studio
Undo
General Editing

Ctrl + Z


ChessBase 13
Archive current database
Database window

Ctrl + Z


Easel
Undo
General

Ctrl + Z


Chromebook (Linux)
Undo last action
34 Shortcuts for Chromebook (Linux)

Ctrl + Z


Ableton Live 9 (Windows)
Undo
Editing

Ctrl + Z


PhotoFiltre (Windows)
Undo last action
Others

Ctrl + Z


KiCad 5.0.2
Undo
Page Layout Editor

Ctrl + Z


GibbsCAM (Windows)
Undo
Edit Menu

Ctrl + Z


Vectorworks (Windows)
Undo
Edit Menu

Ctrl + Z


KiCAD (Windows)
Undo
PCB

Ctrl + Z


KiCAD (Linux)
Undo
PCB

Ctrl + Z


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

Ctrl + Z


ArtRage 4.5 5 (Windows)
Undo
Menus

Ctrl + Z


DaVinci Resolve 14 (Windows)
Undo
Edit

Ctrl + Z


FaceRig Studio
Undo. Camera editor, interpolation editor and the timeline view each stores separate undo stack. When you save or exit the camera editor, undo stack will be cleared
Camera editor

Ctrl + Z


SpaceClaim (Windows)
Undo
71 Shortcuts for SpaceClaim (Windows)

Ctrl + Z


Cisco IOS
Apply the command line and exit from config mode (return to previleged EXEC mode)
Functional

Ctrl + Z


Huggle
Previous contribution
Navigation

Ctrl + Z


Target 3001! (Windows)
Undo
Editing Shortcuts

Ctrl + Z / Backspace


RStudio
Undo
Editing (Console and Source)

Ctrl + Z


Sage Simply Accounting (Windows)
Undo changes
General

Ctrl + Z


WavePad Sound Editor (Windows)
Undo
Edit Operations

Ctrl + Z


AVS Audio Editor (Windows)
Undo, reverses the last command or action
Edit

Ctrl + Z


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

Ctrl + Z


Substance Painter
Undo
General

Ctrl + Z


AVS Video Editor (Windows)
Undo
Top Menu Files and Effects Area

Ctrl + Z


Balsamiq Mockups (Windows)
Redo last command
Edit/History

Ctrl + Z


GeoGebra
Undo
Windows shortcuts

Ctrl + Z


SolveSpace (Windows)
Undo
Edit menu

Ctrl + Z


AVS Video Editor (Windows)
Undo
Timeline Shortcuts

Ctrl + Z


KeyCreator (Windows)
Undo
General Shortcuts

Ctrl + Z


AVS Video Editor (Windows)
Redo
Timeline Shortcuts

Ctrl + Z / Ctrl + Y


BobCAD (Windows)
Undo
22 Shortcuts for BobCAD (Windows)

Ctrl + Z


AVS Video Editor (Windows)
Undo
Trim

Ctrl + Z


CamBam (Windows)
Undo the last operation
32 Shortcuts for CamBam (Windows)

Ctrl + Z


Brave Browser (Windows)
Undo
Page Navigation and Display

Ctrl + Z


DraftSight (Windows)
Undo
37 Shortcuts for DraftSight (Windows)

Ctrl + Z


BricsCAD (Windows)
Undoes the last action (UNDO command)
Other Shortcuts

Ctrl + Z


BricsCAD (Linux)
Undoes the last action (UNDO Ctrl)
Other Shortcuts

Ctrl + Z


Adobe Illustrator
Undo
Frequently used shortcuts

Ctrl + Z


eMachineShop (Windows)
Undo the last action
38 Shortcuts for eMachineShop (Windows)

Ctrl + Z


NetHack
Suspend (Unix only)
Game options

Ctrl + Z


TopSolid (Windows)
Undo Step By Step
Part Clamping

Ctrl + Z


Solidwork Composer (Windows)
Undoes the last operation
35 Shortcuts for Solidwork Composer (Windows)

Ctrl + Z


FlexiSign Pro 8.1 (Windows)
Undo
Selection

Ctrl + Z


Tinkercad (Windows)
Undo
26 Shortcuts for Tinkercad (Windows)

Ctrl + Z


LDCad
Undo the last editing action
Editor

Ctrl + Z


Aspire (Windows)
Edit Undo
Node Editing

Ctrl + Z


VCarve Pro (Windows)
Edit Undo
Node Editing

Ctrl + Z


Ableton Live 10
Undo
Editing

Ctrl + Z


SuperMemo (Windows)
Undo
129 Shortcuts for SuperMemo (Windows)

Ctrl + Z


Cisco Jabber
Undo
Instant messages

Ctrl + Z


Altium Designer (Windows)
Undo
CAM Editor Shortcuts

Ctrl + Z / Alt + Backspace


Cisco Webex
Undo the last action
Windows

Ctrl + Z


GitHub Desktop
Undo
Edit menu

Ctrl + Z


BlackBerry Classic
Undo
Ctrl shortcuts

Ctrl + Z


Tableau
Undo
Web authoring (Tableau Online or Tableau Server)

Ctrl + Z


Altium Designer (Windows)
Undo
Common Shortcuts

Ctrl + Z


Lacerte
Undo the last change
Letter Editor

Ctrl + Z


AVImark
Undo
Follow up list

Ctrl + Z


draw.io
Undo
Document

Ctrl + Z


Ubuntu
Undo the last change you made
Common application shortcuts

Ctrl + Z


AutoCAD
Undo last action
Manage Workflow

Ctrl + Z


Microsoft Sticky Notes
Undo
Formatting

Ctrl + Z


Claws Mail
Undo
Compose window

Ctrl + Z


Siemens NX
Undo List
Edit menu

Ctrl + Z


Shotcut
Undo
Main Menu

Ctrl + Z


Jupyter Notebook
Undo
Edit mode

Ctrl + Z


HitFilm
Undo
General

Ctrl + Z


Tibia
Bug Report (only tutors)
Help and Report Functions

Ctrl + Z


FastMail
Undo
Calendar

Ctrl + Z


PyCharm 2018.2
Undo last operation.
Basic editing

Ctrl + Z


QuickBooks Desktop
Undo
Standard Text Editing

Ctrl + Z


Ace Editor
Undo
Other

Ctrl + Z


Nimbus Note
Undo
General

Ctrl + Z


ArtRage Studio Pro
Undo
Edit Commands

Ctrl + Z


Evernote for Windows
Undo
Note Editor

Ctrl + Z


Autodesk Stingray
Undo
Edit operations

Ctrl + Z


Confluence
Undo
Editor

Ctrl + Z


Bash (Unix shell)
Suspend the current foreground process running in bash
Working with processes

Ctrl + Z


ActivePresenter 7
Undo
General

Ctrl + Z


Aegisub
Undo last action
Default

Ctrl + Z


Bluebeam Revu
Undo
Markup & editing

Ctrl + Z


Alteryx
Undo
Undo and redo, copy and paste

Ctrl + Z


YouTube Studio
Undo
General

Ctrl + Z


Kerbal Space Program
Undo last action
VAB/SPH Commands

Ctrl + Z


Gravit Designer
Undo
Edit

Ctrl + Z


Unreal Engine
Undo
Common commands

Ctrl + Z


Unity
Undo
Edit

Ctrl + Z


Nuke
Undo last action
Global

Ctrl + Z


PaintShop Pro 2018
Undo
Shortcuts with Ctrl

Ctrl + Z


ProgeCAD
Undo
General

Ctrl + Z


jEdit
Undo.
Text editing

Ctrl + Z


Magic: The Gathering Online
Undo
General

Ctrl + Z


Adobe Dimension CC (Windows)
Undo
Edit menu

Ctrl + Z