Visual Studio 2015 (Windows)

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

Undo

Ctrl + Z

All hotkeys for Visual Studio 2015 (Windows)

Code Editor - Find, Replace, and Goto
Find and replace dialog box

Ctrl + F

Code Editor - Find, Replace, and Goto
Find next / find previous

F3 / Shift + F3

Code Editor - Find, Replace, and Goto
Display Replace options on the quick tab

Ctrl + H

Code Editor - Find, Replace, and Goto
Find all references for selected symbol

Shift + F12

Code Editor - Find, Replace, and Goto
Find in files

Ctrl + Shift + F

Code Editor - Find, Replace, and Goto
Stop current find in files operation

Alt + F3 , s

Code Editor - Find, Replace, and Goto
Find next / find previous in selected text

Ctrl + F3 / Ctrl + Shift + F3

Code Editor - Find, Replace, and Goto
Find symbol

Alt + F12

Code Editor - Find, Replace, and Goto
Put cursor in find/command box of the toolbar. Use ctrl+/ in Visual C#

Ctrl + D

Code Editor - Find, Replace, and Goto
Incremental search / reverse incremental search

Ctrl + I / Ctrl + Shift + I

Code Editor - Find, Replace, and Goto
Quick find symbol

Shift + Alt + F12

Code Editor - Find, Replace, and Goto
Display Navigate-To dialog box

Ctrl + ,

Code Editor - Find, Replace, and Goto
Goto line number

Ctrl + G

Code Editor - Find, Replace, and Goto
Go to matching brace in source file

Ctrl + ]

Code Editor - Find, Replace, and Goto
Jump to next occurrence of highlighted symbol

Shift + Ctrl + Arrow down

Code Editor - Find, Replace, and Goto
Jump to previous occurrence of highlighted symbol

Shift + Ctrl + Arrow up

Code Editor - Undo, Redo, Copy, Paste
Cut, copy, paste

Ctrl + x , Ctrl+ c , Ctrl+ V

Code Editor - Undo, Redo, Copy, Paste
Pastes an item from the Clipboard ring

Ctrl + Shift + V

Code Editor - Undo, Redo, Copy, Paste
Undo

Ctrl + Z

Code Editor - Undo, Redo, Copy, Paste
Redo (or Shift+Alt+Backspace, or Ctrl+Shift+Z)

Ctrl + Y

Code Editor - Select Text
Extend selection one character/one line

Shift + Arrow Keys

Code Editor - Select Text
Extend selection to end / to beginning of document

Ctrl + Shift + End / Ctrl + Shift + Home

Code Editor - Select Text
Extend selection to nexst brace

Ctrl + Shift + ]

Code Editor - Select Text
Extend selection to end / to beginning of line

Shift + End / Shift + Home

Code Editor - Select Text
Extends selection down one page / up one page

Shift + Page Down / Shift + Page Up

Code Editor - Select Text
Select current word

Ctrl + W

Code Editor - Select Text
Cancel Selection

Esc

Code Editor - Select Text
Moves cursor and extend selection to the last line / first line in view.

Ctrl + Shift + Page Down / Page Up

Code Editor - Select Text
Extend selection one word to the right / one word to the left

Ctrl + Shift + Arrow Right / Arrow Left

Code Editor - Select Text
Select All

Ctrl + A

Code Editor - Collapse Items
Collapse / un-collapse current preset area (e.g. method)

Ctrl + M + M

Code Editor - Collapse Items
Collpase / hide current selection

Ctrl + M + H

Code Editor - Collapse Items
Collapse declaration bodies

Ctrl + M + O

Code Editor - Collapse Items
Collapse all

Ctrl + M + A

Code Editor - Collapse Items
Uncollapse all

Ctrl + M + X

Code Editor - Collapse Items
Collapse Html tag

Ctrl + m , ctrl + T

Code Editor - Edit Code
Delete current line or selection of lines to and add to clipboard

Ctrl + L

Code Editor - Edit Code
Delete current line or selection of lines

Ctrl + Shift + L

Code Editor - Edit Code
Delete word to right of cursor

Ctrl + Delete

Code Editor - Edit Code
Delete word to left of cursor

Ctrl + Backspace

Code Editor - Edit Code
Enter blank line above cursor

Ctrl + Enter

Code Editor - Edit Code
Enter blank line below cursor

Ctrl + Shift + Enter

Code Editor - Edit Code
Make uppercase

Ctrl + Shift + U

Code Editor - Edit Code
Make lowercase (reverse upercase)

Ctrl + U

Code Editor - Edit Code
Comment selected text

Ctrl + K + C

Code Editor - Edit Code
Uncomment selected text

Ctrl + K + U

Code Editor - Edit Code
Remove white space and tabs in selection or around current cursor position

Ctrl + K + \

Code Editor - Edit Code
Format document to code formatting settings

Ctrl + K + D

Code Editor - Edit Code
Format selection to code formatting settings

Ctrl + K + F

Code Editor - Edit Code
Display parameter required for selected method

Ctrl + Shift + Space

Code Editor - Edit Code
Visualize whitespace (or press Ctrl+r, then Ctrl+w)

Ctrl + Shift + 8

Code Editor - Edit Code
Format document to code formatting settings

Ctrl + K + D

Code Editor - Edit Code
Format selection to code formatting settings

Ctrl + K + F

Code Editor - Edit Code
Transpose word to right of cursor; makes b=a out of a=b if cursor was in front of a

Ctrl + Shift + T

Code Editor - Edit Code
Transpose character left and right of cursor; cursor between ab would make ba

Ctrl + T

Code Editor - Edit Code
Transpose line: Move line below cursor up and current line down.

Shift + Alt + T

Code Editor - IntelliSense and Code Helper
Autocomplete word from completion list (or alt+right arrow)

Ctrl + Space

Code Editor - IntelliSense and Code Helper
Show parameter info

Ctrl + Shift + Space

Code Editor - IntelliSense and Code Helper
Display symbol declaration

Ctrl + F12

Code Editor - IntelliSense and Code Helper
Display symbol definition

F12

Code Editor - IntelliSense and Code Helper
Open IntelliSense completion list

Ctrl + J

Code Editor - Blocks
If block

I

Code Editor - Blocks
Else block

E + L

Code Editor - Blocks
Do While Loop block

D + O

Code Editor - Blocks
For Loop block

F + O + R

Code Editor - Blocks
While loop block

W + H

Code Editor - Blocks
Lock block

L

Code Editor - Blocks
Break

B + R

Code Editor - Data Types
Short

S + H

Code Editor - Data Types
True

T + R

Code Editor - Data Types
False

F

Code Editor - Data Types
Float

F + L

Code Editor - Data Types
Byte

B + Y

Code Editor - Data Types
Bool

B + O

Code Editor - Data Types
Enum myEnum

E

Code Editor - Others
A new public class block

T

Code Editor - Others
Console.WriteLine

C + W

Code Editor - Others
MessageBox.show

M + B

Code Editor - Others
CrossAppDomainDelegate

C + R

Code Editor - Others
AccessViolationException

A + B

Code Editor - Others
Exception class

E + X

Code Editor - Others
Static Void Main block

S + V + M

Code Editor - Others
Parallel

P + U

Code Editor - Others
Public Int Property

P + R

Code Editor - Others
Stackalloc

S

Coding - Find, Replace, and Goto
Find and replace dialog box

Ctrl + F

Coding - Find, Replace, and Goto
Find next / find previous

F3 / Shift + F3

Coding - Find, Replace, and Goto
Display Replace options on the quick tab

Ctrl + H

Coding - Find, Replace, and Goto
Find all references for selected symbol

Shift + F12

Coding - Find, Replace, and Goto
Find in files

Ctrl + Shift + F

Coding - Find, Replace, and Goto
Stop current find in files operation

Alt + F3 , s

Coding - Find, Replace, and Goto
Find next / find previous in selected text

Ctrl + F3 / Ctrl + Shift + F3

Coding - Find, Replace, and Goto
Find symbol

Alt + F12

Coding - Find, Replace, and Goto
Put cursor in find/command box of the toolbar. Use ctrl+/ in Visual C#

Ctrl + D

Coding - Find, Replace, and Goto
Incremental search / reverse incremental search

Ctrl + I / Ctrl + Shift + I

Coding - Find, Replace, and Goto
Quick find symbol

Shift + Alt + F12

Coding - Find, Replace, and Goto
Display Navigate-To dialog box

Ctrl + ,

Coding - Find, Replace, and Goto
Goto line number

Ctrl + G

Coding - Find, Replace, and Goto
Go to matching brace in source file

Ctrl + ]

Coding - Find, Replace, and Goto
Jump to next occurrence of highlighted symbol

Shift + Ctrl + Arrow down

Coding - Find, Replace, and Goto
Jump to previous occurrence of highlighted symbol

Shift + Ctrl + Arrow up

Coding - Undo, Redo, Copy, Paste
Cut, copy, paste

Ctrl + x , Ctrl+ c , Ctrl+ V

Coding - Undo, Redo, Copy, Paste
Pastes an item from the Clipboard ring

Ctrl + Shift + V

Coding - Undo, Redo, Copy, Paste
Undo

Ctrl + Z

Coding - Undo, Redo, Copy, Paste
Redo (or Shift+Alt+Backspace, or Ctrl+Shift+Z)

Ctrl + Y

Coding - Select Text
Extend selection one character/one line

Shift + Arrow Keys

Coding - Select Text
Extend selection to end / to beginning of document

Ctrl + Shift + End / Ctrl + Shift + Home

Coding - Select Text
Extend selection to nexst brace

Ctrl + Shift + ]

Coding - Select Text
Extend selection to end / to beginning of line

Shift + End / Shift + Home

Coding - Select Text
Extends selection down one page / up one page

Shift + Page Down / Shift + Page Up

Coding - Select Text
Select current word

Ctrl + W

Coding - Select Text
Cancel Selection

Esc

Coding - Select Text
Moves cursor and extend selection to the last line / first line in view.

Ctrl + Shift + Page Down / Page Up

Coding - Select Text
Extend selection one word to the right / one word to the left

Ctrl + Shift + Arrow Right / Arrow Left

Coding - Select Text
Select All

Ctrl + A

Coding - Collapse Items
Collapse / un-collapse current preset area (e.g. method)

Ctrl + M + M

Coding - Collapse Items
Collpase / hide current selection

Ctrl + M + H

Coding - Collapse Items
Collapse declaration bodies

Ctrl + M + O

Coding - Collapse Items
Collapse all

Ctrl + M + A

Coding - Collapse Items
Uncollapse all

Ctrl + M + X

Coding - Collapse Items
Collapse Html tag

Ctrl + m , ctrl + T

Coding - Edit Code
Delete current line or selection of lines to and add to clipboard

Ctrl + L

Coding - Edit Code
Delete current line or selection of lines

Ctrl + Shift + L

Coding - Edit Code
Delete word to right of cursor

Ctrl + Delete

Coding - Edit Code
Delete word to left of cursor

Ctrl + Backspace

Coding - Edit Code
Enter blank line above cursor

Ctrl + Enter

Coding - Edit Code
Enter blank line below cursor

Ctrl + Shift + Enter

Coding - Edit Code
Make uppercase

Ctrl + Shift + U

Coding - Edit Code
Make lowercase (reverse upercase)

Ctrl + U

Coding - Edit Code
Comment selected text

Ctrl + K + C

Coding - Edit Code
Uncomment selected text

Ctrl + K + U

Coding - Edit Code
Remove white space and tabs in selection or around current cursor position

Ctrl + K + \

Coding - Edit Code
Format document to code formatting settings

Ctrl + K + D

Coding - Edit Code
Format selection to code formatting settings

Ctrl + K + F

Coding - Edit Code
Display parameter required for selected method

Ctrl + Shift + Space

Coding - Edit Code
Visualize whitespace (or press Ctrl+r, then Ctrl+w)

Ctrl + Shift + 8

Coding - Edit Code
Format document to code formatting settings

Ctrl + K + D

Coding - Edit Code
Format selection to code formatting settings

Ctrl + K + F

Coding - Edit Code
Transpose word to right of cursor; makes b=a out of a=b if cursor was in front of a

Ctrl + Shift + T

Coding - Edit Code
Transpose character left and right of cursor; cursor between ab would make ba

Ctrl + T

Coding - Edit Code
Transpose line: Move line below cursor up and current line down.

Shift + Alt + T

Coding - IntelliSense and Code Helper
Autocomplete word from completion list (or alt+right arrow)

Ctrl + Space

Coding - IntelliSense and Code Helper
Show parameter info

Ctrl + Shift + Space

Coding - IntelliSense and Code Helper
Display symbol declaration

Ctrl + F12

Coding - IntelliSense and Code Helper
Display symbol definition

F12

Coding - IntelliSense and Code Helper
Open IntelliSense completion list

Ctrl + J

Coding - Blocks
If block

I

Coding - Blocks
Else block

E + L

Coding - Blocks
Do While Loop block

D + O

Coding - Blocks
For Loop block

F + O + R

Coding - Blocks
While loop block

W + H

Coding - Blocks
Lock block

L

Coding - Blocks
Break

B + R

Coding - Data Types
Short

S + H

Coding - Data Types
True

T + R

Coding - Data Types
False

F

Coding - Data Types
Float

F + L

Coding - Data Types
Byte

B + Y

Coding - Data Types
Bool

B + O

Coding - Data Types
Enum myEnum

E

Coding - Others
A new public class block

T

Coding - Others
Console.WriteLine

C + W

Coding - Others
MessageBox.show

M + B

Coding - Others
CrossAppDomainDelegate

C + R

Coding - Others
AccessViolationException

A + B

Coding - Others
Exception class

E + X

Coding - Others
Static Void Main block

S + V + M

Coding - Others
Parallel

P + U

Coding - Others
Public Int Property

P + R

Coding - Others
Stackalloc

S

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Find and replace dialog box

Ctrl + F

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Find next / find previous

F3 / Shift + F3

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Display Replace options on the quick tab

Ctrl + H

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Find all references for selected symbol

Shift + F12

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Find in files

Ctrl + Shift + F

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Stop current find in files operation

Alt + F3 , s

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Find next / find previous in selected text

Ctrl + F3 / Ctrl + Shift + F3

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Find symbol

Alt + F12

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Put cursor in find/command box of the toolbar. Use ctrl+/ in Visual C#

Ctrl + D

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Incremental search / reverse incremental search

Ctrl + I / Ctrl + Shift + I

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Quick find symbol

Shift + Alt + F12

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Display Navigate-To dialog box

Ctrl + ,

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Goto line number

Ctrl + G

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Go to matching brace in source file

Ctrl + ]

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Jump to next occurrence of highlighted symbol

Shift + Ctrl + Arrow down

Code Snippets (Visual C# Scheme) - Find, Replace, and Goto
Jump to previous occurrence of highlighted symbol

Shift + Ctrl + Arrow up

Code Snippets (Visual C# Scheme) - Undo, Redo, Copy, Paste
Cut, copy, paste

Ctrl + x , Ctrl+ c , Ctrl+ V

Code Snippets (Visual C# Scheme) - Undo, Redo, Copy, Paste
Pastes an item from the Clipboard ring

Ctrl + Shift + V

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

Ctrl + Z

Code Snippets (Visual C# Scheme) - Undo, Redo, Copy, Paste
Redo (or Shift+Alt+Backspace, or Ctrl+Shift+Z)

Ctrl + Y

Code Snippets (Visual C# Scheme) - Select Text
Extend selection one character/one line

Shift + Arrow Keys

Code Snippets (Visual C# Scheme) - Select Text
Extend selection to end / to beginning of document

Ctrl + Shift + End / Ctrl + Shift + Home

Code Snippets (Visual C# Scheme) - Select Text
Extend selection to nexst brace

Ctrl + Shift + ]

Code Snippets (Visual C# Scheme) - Select Text
Extend selection to end / to beginning of line

Shift + End / Shift + Home

Code Snippets (Visual C# Scheme) - Select Text
Extends selection down one page / up one page

Shift + Page Down / Shift + Page Up

Code Snippets (Visual C# Scheme) - Select Text
Select current word

Ctrl + W

Code Snippets (Visual C# Scheme) - Select Text
Cancel Selection

Esc

Code Snippets (Visual C# Scheme) - Select Text
Moves cursor and extend selection to the last line / first line in view.

Ctrl + Shift + Page Down / Page Up

Code Snippets (Visual C# Scheme) - Select Text
Extend selection one word to the right / one word to the left

Ctrl + Shift + Arrow Right / Arrow Left

Code Snippets (Visual C# Scheme) - Select Text
Select All

Ctrl + A

Code Snippets (Visual C# Scheme) - Collapse Items
Collapse / un-collapse current preset area (e.g. method)

Ctrl + M + M

Code Snippets (Visual C# Scheme) - Collapse Items
Collpase / hide current selection

Ctrl + M + H

Code Snippets (Visual C# Scheme) - Collapse Items
Collapse declaration bodies

Ctrl + M + O

Code Snippets (Visual C# Scheme) - Collapse Items
Collapse all

Ctrl + M + A

Code Snippets (Visual C# Scheme) - Collapse Items
Uncollapse all

Ctrl + M + X

Code Snippets (Visual C# Scheme) - Collapse Items
Collapse Html tag

Ctrl + m , ctrl + T

Code Snippets (Visual C# Scheme) - Edit Code
Delete current line or selection of lines to and add to clipboard

Ctrl + L

Code Snippets (Visual C# Scheme) - Edit Code
Delete current line or selection of lines

Ctrl + Shift + L

Code Snippets (Visual C# Scheme) - Edit Code
Delete word to right of cursor

Ctrl + Delete

Code Snippets (Visual C# Scheme) - Edit Code
Delete word to left of cursor

Ctrl + Backspace

Code Snippets (Visual C# Scheme) - Edit Code
Enter blank line above cursor

Ctrl + Enter

Code Snippets (Visual C# Scheme) - Edit Code
Enter blank line below cursor

Ctrl + Shift + Enter

Code Snippets (Visual C# Scheme) - Edit Code
Make uppercase

Ctrl + Shift + U

Code Snippets (Visual C# Scheme) - Edit Code
Make lowercase (reverse upercase)

Ctrl + U

Code Snippets (Visual C# Scheme) - Edit Code
Comment selected text

Ctrl + K + C

Code Snippets (Visual C# Scheme) - Edit Code
Uncomment selected text

Ctrl + K + U

Code Snippets (Visual C# Scheme) - Edit Code
Remove white space and tabs in selection or around current cursor position

Ctrl + K + \

Code Snippets (Visual C# Scheme) - Edit Code
Format document to code formatting settings

Ctrl + K + D

Code Snippets (Visual C# Scheme) - Edit Code
Format selection to code formatting settings

Ctrl + K + F

Code Snippets (Visual C# Scheme) - Edit Code
Display parameter required for selected method

Ctrl + Shift + Space

Code Snippets (Visual C# Scheme) - Edit Code
Visualize whitespace (or press Ctrl+r, then Ctrl+w)

Ctrl + Shift + 8

Code Snippets (Visual C# Scheme) - Edit Code
Format document to code formatting settings

Ctrl + K + D

Code Snippets (Visual C# Scheme) - Edit Code
Format selection to code formatting settings

Ctrl + K + F

Code Snippets (Visual C# Scheme) - Edit Code
Transpose word to right of cursor; makes b=a out of a=b if cursor was in front of a

Ctrl + Shift + T

Code Snippets (Visual C# Scheme) - Edit Code
Transpose character left and right of cursor; cursor between ab would make ba

Ctrl + T

Code Snippets (Visual C# Scheme) - Edit Code
Transpose line: Move line below cursor up and current line down.

Shift + Alt + T

Code Snippets (Visual C# Scheme) - IntelliSense and Code Helper
Autocomplete word from completion list (or alt+right arrow)

Ctrl + Space

Code Snippets (Visual C# Scheme) - IntelliSense and Code Helper
Show parameter info

Ctrl + Shift + Space

Code Snippets (Visual C# Scheme) - IntelliSense and Code Helper
Display symbol declaration

Ctrl + F12

Code Snippets (Visual C# Scheme) - IntelliSense and Code Helper
Display symbol definition

F12

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

Ctrl + J

Code Snippets (Visual C# Scheme) - Blocks
If block

I

Code Snippets (Visual C# Scheme) - Blocks
Else block

E + L

Code Snippets (Visual C# Scheme) - Blocks
Do While Loop block

D + O

Code Snippets (Visual C# Scheme) - Blocks
For Loop block

F + O + R

Code Snippets (Visual C# Scheme) - Blocks
While loop block

W + H

Code Snippets (Visual C# Scheme) - Blocks
Lock block

L

Code Snippets (Visual C# Scheme) - Blocks
Break

B + R

Code Snippets (Visual C# Scheme) - Data Types
Short

S + H

Code Snippets (Visual C# Scheme) - Data Types
True

T + R

Code Snippets (Visual C# Scheme) - Data Types
False

F

Code Snippets (Visual C# Scheme) - Data Types
Float

F + L

Code Snippets (Visual C# Scheme) - Data Types
Byte

B + Y

Code Snippets (Visual C# Scheme) - Data Types
Bool

B + O

Code Snippets (Visual C# Scheme) - Data Types
Enum myEnum

E

Code Snippets (Visual C# Scheme) - Others
A new public class block

T

Code Snippets (Visual C# Scheme) - Others
Console.WriteLine

C + W

Code Snippets (Visual C# Scheme) - Others
MessageBox.show

M + B

Code Snippets (Visual C# Scheme) - Others
CrossAppDomainDelegate

C + R

Code Snippets (Visual C# Scheme) - Others
AccessViolationException

A + B

Code Snippets (Visual C# Scheme) - Others
Exception class

E + X

Code Snippets (Visual C# Scheme) - Others
Static Void Main block

S + V + M

Code Snippets (Visual C# Scheme) - Others
Parallel

P + U

Code Snippets (Visual C# Scheme) - Others
Public Int Property

P + R

Code Snippets (Visual C# Scheme) - Others
Stackalloc

S

Manage Visual Studio
Save current file

Ctrl + S

Manage Visual Studio
Save all files

Ctrl + Shift + S

Manage Visual Studio
Create new project

Ctrl + Shift + N

Manage Visual Studio
Open file

Ctrl + O

Manage Visual Studio
Open project

Ctrl + Shift + O

Manage Visual Studio
Add item to project

Ctrl + Shift + A

Manage Visual Studio
Close menu or dialog

Esc

Manage Visual Studio
Print

Ctrl + P

Manage Visual Studio
Toggle full screen mode

Shift + Alt + Enter

Manage Visual Studio
Close current tab

Ctrl + F4

Manage Visual Studio
Go to next / go to previous window

Ctrl + F6 / Ctrl + Shift + F6

Manage Visual Studio
Press and hold Ctrl+Tab, then using arrow keys gives a small task manager with all open files and views

Ctrl + Tab , then Arrow keys

Manage Visual Studio
Find current document in Solution Explorer

Ctrl - [ / Ctrl + S

Manage Visual Studio
Diagram

Ctrl + 1

Manage Visual Studio
Criteria

Ctrl + 2

Manage Visual Studio
SQL

Ctrl + 3

Manage Visual Studio
Results

Ctrl + 4

Manage Visual Studio
Rename

F2 / Ctrl + R / R

Bookmarks
Toogle bookmark

Ctrl + K + K

Bookmarks
Goto next bookmark

Ctrl + K + N

Bookmarks
Goto previous bookmark

Ctrl + K + P

Bookmarks
Goto next bookmark in folder

Ctrl + Shift + K + N

Bookmarks
Goto previous bookmark in folder

Ctrl + Shift + K + P

Bookmarks
Put focus on bookmark window

Ctrl + K + W

Bookmarks
Leave bookmark window and focus on editor

Esc

Bookmarks
Toggle code shortcut at current line*

Ctrl + K + H

Bookmarks
Clear all bookmarks

Ctrl + K + L

Bookmarks
Show Task List (including code shortcuts)

Ctrl + \ + T

Build and Debug
Build solution (or Ctrl+shift+b)

F6

Build and Debug
Rebuild solution

Ctrl + Alt + F7

Build and Debug
Cancel build process

Ctrl + Break

Build and Debug
Show error list

Ctrl + \ + E

Build and Debug
Toggle breakpoint

F9

Build and Debug
Insert new function breakpoint

Ctrl + B

Build and Debug
Start debugging

F5

Build and Debug
Debug / step into

F11

Build and Debug
Debug / step over

F10

Build and Debug
Debug / step out

Shift + F11

Build and Debug
Debug / run to cursor

Ctrl + F10

Build and Debug
Show Quickwatch window

Ctrl + Alt + Q

Build and Debug
Set current statement to be the next executed

Ctrl + Shift + F10

Build and Debug
Show nexst statement

Alt + * (on numeric keyboard)

Build and Debug
Show Exception dialog box

Ctrl + Alt + E

Build and Debug
Toggle between disassembly and user code view

Ctrl + F11

Build and Debug
Stop Debugging

Shift + F5

Build and Debug
Bypass debugger

Ctrl + F5

Build and Debug
Show attach to process window

Ctrl + Alt + P

Build and Debug
Break all executing threads

Ctrl + Alt +break

Tool Windows
Put cursor in the find/command box in toolbar

Ctrl + /

Tool Windows
Open code snippet manager window

Ctrl + K + B

Tool Windows
Open macro IDE window

Alt + F11

Tool Windows
Open bookmark window

Ctrl + K + W

Tool Windows
Open call hierarchy window

Ctrl + Alt + K

Tool Windows
Open class view window

Ctrl + Shift + C

Tool Windows
Open Command window

Ctrl + Alt + A

Tool Windows
Open Output window

Ctrl + Shift + O

Tool Windows
Open Resource view window

Ctrl + Shift + E

Tool Windows
Open Server explorer window

Ctrl + Alt + S

Tool Windows
Open Solution explorer window

Ctrl + Shift + L

Tool Windows
Close Find & Replace Window

Shift + Esc

For HTML Pages
Toggle between Design and Code behind pages

F7

For HTML Pages
Toggle between Design and HTML Source

Shift + F7

For HTML Pages
Cycle between design, split and source

Ctrl + Page Down / Page Up

For HTML Pages
Delete all breakpoints

Ctrl + Shift + F9

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


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


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


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


Nuance Power PDF
Delete bookmarks (in Review mode)
Operations

Ctrl + Z


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

Ctrl + Z


Waze Map Editor
Undo
Editing Segments

Ctrl + Z