Eclipse

Editing text

Paste

Ctrl + V

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)
Paste text or an object.
Common tasks

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Excel 2010 (Windows)
Paste content from clipboard into selected cell.
Work with Data Selections - Work with Clipboard

Ctrl + V


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

ctrl + x / ctrl + c / ctrl + v


Emacs 23.2.1 (Linux)
Page forward / backward
Cursor Movement

Ctrl + V / Meta + 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


Unity3D 3 (Windows)
Copy / Cut / Paste
Editing

Ctrl + c / Ctrl + x / Ctrl + v


Microsoft Excel 2003 (Windows)
Paste selected text
Basic

Ctrl + v


Microsoft Word 2007 (Windows)
Paste the most recent addition to the Office Clipboard.
Edit and move text and graphics: Copy and move text and graphics

Ctrl + V


Inpage (Windows)
To paste text
For Editing

Ctrl + v


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 paste objects
For Editing of Objects

Ctrl + v


Inpage (Windows)
To paste selected Objects
To Change Picture

Ctrl + v


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

Ctrl + V


Microsoft Excel 2010 (Windows)
Paste content from clipboard into selected cell.
Insert and Edit Data - Work with Clipboard

Ctrl + V


Total Commander 8 (Windows)
Paste from clipboard to current dir.
Main Shortcuts

Ctrl + v


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)
Paste from clipboard
Text Editing

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Smartplant Review (Windows)
Paste Text
Standard Control Keys

Ctrl + v


Evernote (Windows)
Cut / Copy / Paste
Note Editor

Ctrl + x / Ctrl + c / Ctrl + v


Sublime Text (Windows)
Paste
Cut, Copy and Paste

Ctrl + V


Microsoft Excel 2010 (Windows)
Paste content from clipboard into selected cell.
Format Data - Work with Clipboard

Ctrl + V


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

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft PowerPoint 2010 (Windows)
Paste cut or copied object.
Work with Text and Objects

Ctrl + V


Texmaker 4.0.2 (Windows)
Paste
"Edit" menu

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


AutoCAD 2012 (Windows)
Paste object
Manage Workflow

Ctrl + V


FreeMind 0.9.0 (Windows)
Paste
Edit commands

Ctrl + V


Avid Media Composer 7 (Windows)
Paste
Editing

Ctrl + V


IntelliJ (Linux)
Paste from clipboard
Editing

Ctrl + V / Shift + Insert


IntelliJ (Windows)
Paste from clipboard
Editing

Ctrl + V / Shift + Insert


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

Ctrl + X / Ctrl + C / Ctrl + V


Microsoft Excel 2010 (Windows)
Paste content from clipboard into selected cell.
Formulas and Names - Work with Clipboard

Ctrl + V


Audacity 2 (Linux)
Paste selection at cursor
Frequently Used

Ctrl + V


Audacity 2 (Windows)
Save
File Menu

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Audacity 2 (Linux)
Paste selection at cursor
Edit Menu

Ctrl + V


Audacity 2 (Windows)
Paste
Edit Menu

Ctrl + V


Directory Opus (Windows)
Paste
Edit Menu

Ctrl + V


Adobe Photoshop CS5 (Windows)
Paste
Vanishing Point

Ctrl + V


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

Ctrl + V


WinRAR (Windows)
Paste files from clipboard
File Menu

Ctrl + V


Beyond Compare (Windows)
Paste
Edit Menu

Ctrl + V


Pro Tools (Windows)
Paste
Edit Menu

Ctrl + V


Axialis IconWorkshop (Windows)
Paste
Edit Menu

Ctrl + V


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)
Paste content from clipboard into selected cell
Excel Basics

Ctrl + V


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

Ctrl + V


FL Studio (Windows)
Paste selection
Playlist Action

Ctrl + V


Comsol 5 (Windows)
Paste copied text
Model Tree

Ctrl + V


Comsol 5 (Linux)
Paste copied text
Model Tree

Ctrl + V


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

Ctrl + C / Ctrl + X / Ctrl + V


Virtual DJ (Windows)
Video Open
All Shortcuts

Ctrl + V


Microsoft Excel 2010 (Windows)
Paste content from clipboard into selected cell.
The Rest - Work with Clipboard

Ctrl + V


Notepad++ 6 (Windows)
Paste
Edit menu

Ctrl + V


FL Studio (Windows)
Paste selection
Piano Roll Action

Ctrl + V


Linux Mint (Linux)
Paste
General

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Prezi (Web Application)
Copy selected object(s)
Editing

Ctrl + C / Ctrl + V


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

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl_V


Sway 2016 (Windows)
Paste (from clipboard)
Basic Commands

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


FreeMeta (Windows)
Paste text to textbox.
FreeMeta software all shortcut keys

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Clink (Windows)
Paste from clipboard
Clink Commands

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Onshape (Windows)
Paste
Assembly

Ctrl + V


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

Ctrl + C / Ctrl + X / Ctrl + V


Google Slides (Windows)
Paste
General Slides Shortcuts

Ctrl + V


Console2 (Windows)
Paste
30 Shortcuts for Console2 (Windows)

Ctrl + V


Clink (Windows)
paste-from-clipboard
BASH (GNU Readline) Line Editing

Ctrl + V


Android Studio (Windows)
Paste
Text Basic Shortcuts

Ctrl + V


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

Ctrl + C / Ctrl + V / Ctrl + X


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

Ctrl + V


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

Ctrl + V


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

Ctrl + V


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

Ctrl + V


Adobe Premiere CC (Windows)
Paste
General Shortcuts

Ctrl + V


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

Ctrl + C / Ctrl + X / Ctrl + V


Nuke 10 (Windows)
Paste Selected
Global Shortcuts

Ctrl + V


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

Ctrl + C / Ctrl + X / Ctrl + V


Nuke 10 (Linux)
Paste Selected
Global Shortcuts

Ctrl + V


Corel Painter 2017 (Windows)
Paste in place
General Shortcuts

Ctrl + V


Finale (Windows)
Paste
Edit Menu

Ctrl + V


InDesign CC (Windows)
Paste
Edit Menu shortcuts

Ctrl + V


FileMaker Pro (Windows)
Paste text from the Clipboard
Paste, Select, and Replace Values

Ctrl + V


Anime Studio (Windows)
Paste
General Shortcuts

Ctrl + V


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

Ctrl + C / Ctrl + X / Ctrl + V


IMVU (Windows)
Paste text into new chat balloon
Screen and View

Ctrl + V


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

Ctrl + C / Ctrl + X / Ctrl + V


Hexagon 2 (Windows)
Paste
General Shortcuts

Ctrl + V


Zoho Sheet (Windows)
Paste
Actions

Ctrl + V


Zoho Writer (Windows)
To Paste Contents of Document
General

Ctrl + V


3D Coat (Windows)
Paste
General Operations

Ctrl + V


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

Ctrl + V


Dynamics GP 2015 (Windows)
Paste
General Shortcuts

Ctrl + V


Dynamics SL 2015 (Windows)
Paste
General Shortcuts

Ctrl + V


Wondershare Editor (Windows)
Paste
Application control

Ctrl + V


GIMP (Linux)
Paste
Edit

Ctrl + V


Dynamics NAV 2015 (Windows)
Paste
General

Ctrl + V


Apple Photos (Windows)
Paste photo
Organize

Ctrl + V


Age of Empires (Windows)
Go to castle
Game Commands

Ctrl + V


Windows Movie Maker (Windows)
Paste
General

Ctrl + V


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

Ctrl + C / Ctrl + X / Ctrl+ V


GIMP (Windows)
Paste
Edit Shortcuts

Ctrl + V


Zoho Show (Windows)
Paste
Actions

Ctrl + V


AutoCAD 2016 (Windows)
Pastes data from the Windows Clipboard
General

Ctrl + V


Autodesk 3ds Max 2017 (Windows)
Clone
General user interface

Ctrl + V


Silhouette Studio (Windows)
Paste
General

Ctrl + V


Microsoft Projects 2016 (Windows)
Paste cut or copied object.
Working with OfficeArt Objects

Ctrl + V


AutoCad Architecture 2017 (Windows)
Pasteclip tool
General

Ctrl + V


Act! CRM (Windows)
Paste selected Text
General Shortcuts

Ctrl + v


Microsoft Projects 2016 (Windows)
Paste the copied or cut data.
Sheet View

Ctrl + V


Sublime Text (Linux)
Paste Line
General Editing Shortcuts

Ctrl + V


Asana (Web Application)
Paste selected task
Task Action Shortcuts(On Windows Plateform)

Ctrl + V


Microsoft Excel 2016 (Windows)
Paste cell(s) from clipboard
Cut, Copy, Paste, and Paste Special

Ctrl + V


WordPress (Windows)
Paste
General Editor Shortcuts

Ctrl + V


Sublime Text (MacOS)
Scroll down one page
Scrolling Shortcuts

Ctrl + V


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


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

Ctrl + V


IntelliJ (MacOS)
VCS Quick Popup
VCS/Local History

Ctrl + V


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

Ctrl + V


Logic Pro X (MacOS)
Send Selected Fader Values
Environment

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


Logic Pro X (MacOS)
Paste Lane
Step Editor

Ctrl + V


Adobe Flash Builder (Windows)
Paste
24 Shortcuts for Adobe Flash Builder (Windows)

Ctrl + V


Cloud9 (Windows)
Paste
Clipboard

Ctrl + V


JetBrains RubyMine (MacOS)
VCS Operations Popup
VCS/Local History

Ctrl + V


Autodesk SketchBook Pro (Windows)
Paste
Colors and Brushes

Ctrl + V


BrainSuite (Windows)
Toggle show Volume slices in 3D view
Main Window

Ctrl + V


JetBrains PyCharm (MacOS)
VCS Operations Popup
VCS/Local History

Ctrl + V


JetBrains AppCode (MacOS)
VCS Operations Popup
VCS/Local History

Ctrl + V


Daz 3D Bryce 7 (Windows)
Copy/Paste Terrain
Terrain Editing

Ctrl + C / Ctrl + V


Bash (Linux)
Display Sequence for Enter Key
Control Character

Ctrl + V


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


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

Ctrl + V


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

Ctrl + X / Ctrl + C / Ctrl + V


jEdit (Windows)
Paste
Clipboard and Register

Ctrl + V


DAZ Studio (Windows)
Paste to selected
Edit Commands

Ctrl + V


Autodesk Mudbox 2017 (Windows)
Set Topological Axis
Subdivison and Symmetry

Ctrl + V


DocuSign (Web Application)
Paste
Field Shortcuts

Ctrl + V


JetBrains PhpStorm (MacOS)
VCS Operations Popup
VCS/Local History

Ctrl + V


Corel PhotoPaint X6 (Windows)
Paste as New Object
Edit Menu

Ctrl + V


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

Ctrl + V


Corel Ventura 10 (Windows)
Paste
Text Formatting

Ctrl + V


Steinberg Cubase 9 (Windows)
Paste
Edit

Ctrl + V


Corel Draw X8 (Windows)
Paste
General

Ctrl + V


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

Ctrl + V


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

Ctrl + V


Opera (Windows)
Paste from clipboard
Text Editing

Ctrl + V


Corel Quattro Pro X8 (Windows)
Paste
Edit Menu

Ctrl + V / Shift + Insert


Gliffy (Windows)
Paste
Shape Shortcuts

Ctrl + V


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

Ctrl + V


Chief Architect (Windows)
Paste
General Editing

Ctrl + V


Flock (Windows)
Paste
General

Ctrl + V


Kingsoft Presentation 2016 (Windows)
Paste
Editing Shortcuts

Ctrl + V


MusicBee (Windows)
Paste Copied Tags
Edit Controls

Ctrl + V


Poser Pro (Windows)
Paste
File

Ctrl + V


Kingsoft Writer 2016 (Windows)
Paste
Editing

Ctrl + V


Kingsoft Spreadsheets 2016 (Windows)
Paste
Other Shortcuts

Ctrl + V


Primevera P6 P6 (Windows)
Paste
General Shortcuts

Ctrl + V


Brackets (Windows)
Paste
99 Shortcuts for Brackets (Windows)

Ctrl + V


SPSS Modeler (Windows)
Paste
General Shortcuts

Ctrl + V


Adobe Captivate 2017 (Windows)
Paste what is on the clipboard (for example, slide, image, object, and so on)
General and Miscellaneous Shortcuts

Ctrl + V


TradeStation (Windows)
Paste
Editor Shortcuts

Ctrl + V


WinSCP 5 (Windows)
Paste files
File Management

Ctrl + V


Informix Genero 2.5.0 (Windows)
Paste from clipboard
Clipboard Shortcuts

Ctrl + V / Shift + Insert


Krita Painting 3 (Windows)
Paste
General

Ctrl + V


MPS 2017 (Windows)
Paste from the Clipboard to the caret location
Basic Editing

Ctrl + V


Forte (Windows)
Paste
Composition Window

Ctrl + V


Jetbrains CLion (Windows)
Paste from clipboard
Editing Shortcuts

Ctrl + V


VideoPad Video Editor (Windows)
Paste clip
Edit

Ctrl + V


GOM Player (Windows)
Flip - Output
Video Control

Ctrl + V


MOTU Digital Performer 9 (Windows)
Paste
General

Ctrl + V


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

Ctrl + V


Soundforge (Windows)
Paste data from the clipboard into the active window
Data Window

Ctrl + V


Siemens NX 11 (Windows)
Paste
Edit Menu

Ctrl + V


KMPlayer (Windows)
Open DVD File
General

Ctrl + V


PotPlayer (Windows)
Flip Input Picture On/Off
Standard Keyboard Controls

Ctrl + V


XYplorer (Windows)
Paste
General Shortcuts

Ctrl + V


Teamcenter (Windows)
Paste
Miscellaneous Shortcuts

Ctrl + V


Pegasus Mail (Web Application)
Paste
Edit menu

Ctrl + V


Xamarin Studio (MonoDevelop) (Windows)
Paste
Edit Menu

Ctrl + V


Unity3D 5 (Windows)
Paste
Edit

Ctrl + V


Vegas Pro 14 (Windows)
Paste from clipboard
General Editing

Ctrl + V


Editpad 7 (Windows)
Paste
Clipboard commands

Ctrl + V


eSignal (Windows)
Paste
49 Shortcuts for eSignal (Windows)

Ctrl + V


Vegas Pro 14 (Windows)
Paste from clipboard
Event Selection and Editing

Ctrl + V


Quickbooks Desktop (Windows)
Paste Transaction
Account Register Shortcuts

Ctrl + v


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

Ctrl + V


Synfig (Windows)
Paste the layer(s) from the clipboard above the currently selected layer
73 Shortcuts for Synfig (Windows)

Ctrl + V


Pencil2D (Windows)
Paste
57 Shortcuts for Pencil2D (Windows)

Ctrl + V


CrazyTalk 8 (Windows)
Paste
Editing Shortcuts

Ctrl + V


Bitcomet (Windows)
Paste
Global

Ctrl + V


SolidWorks (Windows)
Paste
Edit Menu

Ctrl + V


Quickbooks Desktop (Windows)
Paste cut or copied characters
General Editing

Ctrl + v


Tableau (Windows)
Paste clipboard
General

Ctrl + V


DrawPlus (Windows)
Paste
Object

Ctrl + V


iClone 7 (Windows)
Paste keys or clips
Timeline Shortcuts

Ctrl + V


Google Data Studio
Paste
General (Windows)

Ctrl + V


Solid Edge (Windows)
Paste
Standard Shortcuts

Ctrl + V


Impro-Visor (Windows)
paste copied chords and melody (from invisible clipboard)
Cut/Paste/Copy

Ctrl + V


Spotify (Windows)
Paste
General

Ctrl + V


Rhino (Windows)
Paste
Default Shortcuts

Ctrl + V


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

Ctrl + V


Cabinet Vision (Windows)
Paste Cabinet
Selection Shortcuts

Ctrl + V


CodeLite 10 (Windows)
Paste text from clipboard
Editor

Ctrl + V


Vim (Linux)
Start visual block mode
Making text (Visual mode)

Ctrl + v


Solidworks 2019
Drawings. Copies and pastes drawing views.
Copy/Paste

Ctrl + V


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

Ctrl + V


OpenSCAD (MacOS)
Navigate Page down
Navigation Shortcuts

Ctrl + V


Webflow (Windows)
Paste
Copy/paste

Ctrl + V


TurboCAD (Windows)
Insert the clipboard contents
171 Shortcuts for TurboCAD (Windows)

Ctrl + V


winIDEA
Insert Clipboard contents
Edit

Ctrl + V


FlashFXP (Web Application)
View File
54 Shortcuts for FlashFXP (Web Application)

Ctrl + V


Xyplorer
Paste
Edit Menu

Ctrl + V


Simplify3D
Paste selection
Edit menu

Ctrl + V


Surfcam (Windows)
Display Views dialog box
60 Shortcuts for Surfcam (Windows)

Ctrl + V


RStudio (Windows)
Paste
Editing (Console and Source)

Ctrl + V


Shopify
Paste
General

Ctrl + V


Kate (Linux)
Paste
29 Shortcuts for Kate (Linux)

Ctrl + V


Kate (Windows)
Paste
38 Shortcuts for Kate (Windows)

Ctrl + V


progeCAD (Windows)
Pastes the contents of the Windows clipboard into the active drawing
51 Shortcuts for progeCAD (Windows)

Ctrl + V


CuteFTP (Windows)
Paste
General

Ctrl + V


PSPad (Windows)
Paste - Insert clipboard text to cursor position
Edit

Ctrl + V


Comodo IceDragon (Windows)
Paste
Editing Options

Ctrl + V


Modo (Windows)
Paste
General/System

Ctrl + V


Webflow
Paste
Copy / paste

Ctrl + V


ChessBase 13
Paste all games marked for copying in the selected database
Database window

Ctrl + V


Geany (Linux)
Paste
Cut and Paste

Ctrl + V


Geany (Windows)
Paste
Cut and Paste

Ctrl + V


VariCAD (Windows)
Objects from Clipboard
Hot Keys

Ctrl + V


App Maker
Paste text from the clipboard
Code editor shortcuts

Ctrl + V


FEKO (Windows)
Paste from clipboard
General Shortcuts

Ctrl + V / Shift + Ins


FEKO (Linux)
Paste from clipboard
General Shortcuts

Ctrl + V / Shift + Ins


PhotoFiltre (Windows)
Paste clipboard contents
Selection, past and text

Ctrl + V


IRONCAD (Windows)
Paste
File/Editing Keys

Ctrl + V


Roblox Studio
Paste
General Editing

Ctrl + V


Ulead PhotoImpact 8 (Windows)
Pastes data from the clipboard as an object
Edit Menu

Ctrl + V


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

Ctrl + V


Easel
Paste
General

Ctrl + V


Chromebook (Linux)
Paste text currently in clipboard
34 Shortcuts for Chromebook (Linux)

Ctrl + V


Ableton Live 9 (Windows)
Paste
Editing

Ctrl + V


Ulead PhotoImpact 8 (Windows)
Opens the Color Balance dialog box
Format Menu

Ctrl + V


WinRAR
Paste files from clipboard
File menu

Ctrl + V


KiCad 5.0.2
Add MicroVia
Pcbnew

Ctrl + V


GibbsCAM (Windows)
Paste
Edit Menu

Ctrl + V


Vectorworks (Windows)
Paste
Edit Menu

Ctrl + V


KiCAD (Windows)
Add Microvia
PCB

Ctrl + V


KiCAD (Linux)
Add Microvia
PCB

Ctrl + V


ArtRage 4.5 5 (Windows)
Paste Clipboard To New Layer
Menus

Ctrl + V


SpaceClaim (Windows)
Paste
71 Shortcuts for SpaceClaim (Windows)

Ctrl + V


DaVinci Resolve 14 (Windows)
Paste
Edit

Ctrl + V


Inkscape (Windows)
Paste clipboard - This places the clipboard objects at the Mouse cursor, or at the center of the window if Mouse is outside the canvas
Objects

Ctrl + V


Cobalt (Windows)
Paste
70 Shortcuts for Cobalt (Windows)

Ctrl + V


FaceRig Studio
Paste
Camera editor

Ctrl + V


Arduino (Windows)
Paste
29 Shortcuts for Arduino (Windows)

Ctrl + V


Arduino (Linux)
Paste
29 Shortcuts for Arduino (Linux)

Ctrl + V


Target 3001! (Windows)
Paste/Insert
Editing Shortcuts

Ctrl + V / Shift + Insert


gEDA (Linux)
Paste from buffer
Other Important Shortcuts

Ctrl + V


Huggle
View page (latest revision)
Page

Ctrl + V


Sage Simply Accounting (Windows)
Paste copied selection
General

Ctrl + V


The Secret of Monkey Island
Version number
Function and Command keys

Ctrl + V


RStudio
Paste
Editing (Console and Source)

Ctrl + V


CoSpaces Edu
Paste blocks
CoBlocks

Ctrl + V


MyPaint (Windows)
Paste
Show Layer Menu

Ctrl + V


AVS Audio Editor (Windows)
Pastes from internal clipboard
Edit

Ctrl + V


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

Ctrl + V / Shift + Insert


GeoGebra
Paste
Windows shortcuts

Ctrl + V


WavePad Sound Editor (Windows)
Paste
Edit Operations

Ctrl + V


Oracle RightNow
Paste
Text editing

Ctrl + V


Balsamiq Mockups (Windows)
Paste
Edit/History

Ctrl + V


FlightGear
Reset view modes to pilot view
Display options

Ctrl + V


SolveSpace (Windows)
Paste
Edit menu

Ctrl + V


KeyCreator (Windows)
Paste from Clipboard
General Shortcuts

Ctrl + V


TopSolid (Windows)
Paste Selected Operation
Operation Manager

Ctrl + V


BobCAD (Windows)
Paste
22 Shortcuts for BobCAD (Windows)

Ctrl + V


CamBam (Windows)
Paste from the clipboard
32 Shortcuts for CamBam (Windows)

Ctrl + V


BricsCAD (Windows)
Pastes the contents of the Clipboard into the drawing (PASTECLIP command)
Other Shortcuts

Ctrl + V


DraftSight (Windows)
Paste Data
37 Shortcuts for DraftSight (Windows)

Ctrl + V


BricsCAD (Linux)
Pastes the contents of the Clipboard into the drawing (PASTECLIP Ctrl)
Other Shortcuts

Ctrl + V


Brave Browser (Windows)
Paste
Page Navigation and Display

Ctrl + V


AVS Video Editor (Windows)
Paste object
Text Properties

Ctrl + V / Shift + Insert


Adobe Illustrator
Paste
Frequently used shortcuts

Ctrl + V


eMachineShop (Windows)
Paste the clipboard contents to the Design
38 Shortcuts for eMachineShop (Windows)

Ctrl + V


Figma (Web Application)
Paste
Edit

Ctrl + V


FlexiSign Pro 8.1 (Windows)
Paste
Selection

Ctrl + V


Aspire (Windows)
Create Mirror Copy Vertically
Mirror Shortcuts

Ctrl + V


EasyWorship
Paste text from the Windows clipboard into the text editor
Editor

Ctrl + V


VCarve Pro (Windows)
Create Mirror Copy Vertically
Mirror

Ctrl + V


Tinkercad (Windows)
Paste
26 Shortcuts for Tinkercad (Windows)

Ctrl + V


Substance Painter
Paste layer
Non-editable shortcuts

Ctrl + V


LDCad
Paste LDraw data from the clipboard into the model. A dialog with options might show up first if needed
Editor

Ctrl + V


Aspire (Windows)
Paste the selected vectors
Node Editing

Ctrl + V


VCarve Pro (Windows)
Paste the selected vectors
Node Editing

Ctrl + V


Ableton Live 10
Paste
Editing

Ctrl + V


SuperMemo (Windows)
Paste from Clipboard
129 Shortcuts for SuperMemo (Windows)

Ctrl + V


Altium Designer (Windows)
Paste
Output Job Editor Shortcuts

Ctrl + V / Shift + Insert


Cisco Jabber
Paste
Instant messages

Ctrl + V


Altium Designer (Windows)
Paste
CAM Editor Shortcuts

Ctrl + V / Shift + Insert


Altium Designer (Windows)
Paste waveform
CAM Editor Shortcuts

Ctrl + V / Shift + Insert


Altium Designer (Windows)
Paste
SimData Editor Shortcuts

Ctrl + V / Shift + Insert


Tableau
Paste clipboard
Authoring views (Tableau Desktop)

Ctrl + V


BlackBerry Classic
Paste
Ctrl shortcuts

Ctrl + V


Altium Designer (Windows)
Paste
Common Shortcuts

Ctrl + V / Shift + Insert


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

Ctrl + V


4K Video Downloader
Paste link
General

Ctrl + V


Ubuntu
Paste/insert the selected text/object
Common application shortcuts

Ctrl + V


AutoCAD
Paste object
Manage Workflow

Ctrl + V


Microsoft Sticky Notes
Paste
Formatting

Ctrl + V


draw.io
Paste
Canvas

Ctrl + V


Claws Mail
Paste
Compose window

Ctrl + V


Siemens NX
Paste
Edit menu

Ctrl + V


Tibia
Paste a copy of the text from the clipboard
Text editing

Ctrl + V


HitFilm
Paste selection
General

Ctrl + V


Shotcut
Paste
Timeline

Ctrl + V


Winamp
Stop after current track
Main window

Ctrl + V


PyCharm 2018.2
Paste from the Clipboard to the caret location.
Basic editing

Ctrl + V


Asana
Paste Tasks (One per line)
Task Actions

Ctrl + V


QuickBooks Desktop
Paste
Standard Text Editing

Ctrl + V


Nimbus Note
Paste
General

Ctrl + V


Nimbus Capture (PC)
Paste as new
Editor

Ctrl + V


Novelty Visual Novel Maker
Paste objects
Controls

Ctrl + V


ArtRage Studio Pro
Paste
Edit Commands

Ctrl + V


Evernote for Windows
Paste
Note Editor

Ctrl + V


Quicken 2018
Void a transaction
Register and Write Checks

Ctrl + V


UiPath Studio
Pastes the copied activity or activities inside the selected item
Selected activity

Ctrl + V


Confluence
Paste
Editor

Ctrl + V


Autodesk Stingray
Paste selected keys
Story editor

Ctrl + V


ActivePresenter 7
Paste
General

Ctrl + V


Aegisub
Paste subtitles
Default

Ctrl + V


Bluebeam Revu
Paste
Markup & editing

Ctrl + V


Alteryx
Click insdie another color box and use this shortcut to paste the color values
Other shortcuts

Ctrl + V