MPS 2017 (Windows)

Basic Editing

Delete the word starting from the current caret location up to the word start

Ctrl + Backspace

All hotkeys for MPS 2017 (Windows)

Advanced Editing
Comment/uncomment current line or selected block with line comments

Ctrl + /

Advanced Editing
Comment/uncomment code with block comments

Ctrl + Shift + /

Advanced Editing
Show the Highlighting level pop-up window to configure highlighting in the current file

Ctrl + Shift + Alt + H

Advanced Editing
Show parameters of the method call at the caret

Ctrl + P

Advanced Editing
Show the current method or class declaration when it is not visible

Alt + Q

Advanced Editing
Show an error or warning description at the caret

Ctrl + F1

Advanced Editing
Open browser with the documentation for the selected item

Shift + F1

Advanced Editing
Override base class methods in the current class

Ctrl + O

Advanced Editing
Surround selected code fragment with if, do, tags or other constructs

Ctrl + Alt + T

Advanced Editing
Code completion for any class, method or variable

Ctrl + Spacebar

Advanced Editing
Code Completion filtering the lookup list basing on expected type

Ctrl + Shift + Spacebar

Advanced Editing
Goes through the names of classes, methods, keywords and variables in the current visibility scope

Alt + /

Advanced Editing
Show a pop-up list of starting with a specified prefix

Ctrl + J

Advanced Editing
Surround the selection with one of the templates

Ctrl + Alt + J

Advanced Editing
In templates: move the caret to the next template variable

Tab

Advanced Editing
In templates: move the caret to the previous template variable

Shift + Tab

Basic Editing
Delete a character to the left of the caret

Backspace

Basic Editing
Undo last operation

Ctrl + Z

Basic Editing
Redo last undone operation

Ctrl + Shift + Z

Basic Editing
Cut a current line or a selected code block to the Clipboard

Ctrl + X

Basic Editing
Copy a current line or a selected code block to the Clipboard

Ctrl + C

Basic Editing
Paste from the Clipboard to the caret location

Ctrl + V

Basic Editing
Paste selected entry from the Clipboard to the caret location

Ctrl + Shift + V

Basic Editing
Move the caret one line up

Up Arrow

Basic Editing
Move the caret one line up selecting the text

Shift + Up Arrow

Basic Editing
Move the caret one line down

Down Arrow

Basic Editing
Move the caret one line down selecting the text

Shift + Down Arrow

Basic Editing
Move the caret one character to the left

Left Arrow

Basic Editing
Move the caret one character to the left selecting the text

Shift + Left Arrow

Basic Editing
Move the caret one character to the right

Right Arrow

Basic Editing
Move the caret one character to the right selecting the text

Shift + Right Arrow

Basic Editing
Move the caret down to the page bottom

Ctrl + PgDn

Basic Editing
Move the caret down to the page bottom, selecting the text

Ctrl + Shift + PgDn

Basic Editing
Move the caret up to the page top

Ctrl + PgUp

Basic Editing
Move the caret up to the page bottom, selecting the text

Ctrl + Shift + PgUp

Basic Editing
Move the caret one Page down

PgDn

Basic Editing
Move the caret one Page down, selecting the text

Shift + PgDn

Basic Editing
Move the caret one Page up

PgUp

Basic Editing
Move the caret one Page up, selecting the text

Shift + PgUp

Basic Editing
Scroll the text one line down

Ctrl + Down Arrow

Basic Editing
Scroll a line at caret to the center of the screen

Ctrl + M

Basic Editing
Scroll the text one line up

Ctrl + Up Arrow

Basic Editing
Move the caret to the end of line

End

Basic Editing
Move the caret to the end of line, selecting the text

Shift + End

Basic Editing
Move the caret to the beginning of line

Home

Basic Editing
Move the caret to the beginning of line, selecting the text

Shift + Home

Basic Editing
Move the caret to the next word

Ctrl + Right Arrow

Basic Editing
Move the caret to the next word, selecting it

Ctrl + Shift + Right Arrow

Basic Editing
Move the caret to the previous word

Ctrl + Left Arrow

Basic Editing
Move the caret to the previous word, selecting it

Ctrl + Shift + Left Arrow

Basic Editing
Move the caret to the end of text

Ctrl + End

Basic Editing
Move the caret to the end of text, selecting it

Ctrl + Shift + End

Basic Editing
Move the caret to the beginning of text

Ctrl + Home

Basic Editing
Move the caret to the beginning of text, selecting it

Ctrl + Shift + Home

Basic Editing
Select the entire text opened in the editor

Ctrl + A

Basic Editing
Delete the line where the caret is currently located

Ctrl + Y

Basic Editing
Delete the word starting from the current caret location up to the word end

Ctrl + Delete

Basic Editing
Delete the word starting from the current caret location up to the word start

Ctrl + Backspace

Basic Editing
Toggle insert/overwrite modes

Insert

Basic Editing
Duplicate selected block or the line at the caret

Ctrl + D

Basic Editing
Toggle case of the selected text block

Ctrl + Shift + U

Basic Editing
Move the caret to the current code block end, highlighting the block limits

Ctrl + ]

Basic Editing
Move the caret to the current code block end, selecting the code beginning from the initial caret location

Ctrl + Shift + ]

Basic Editing
Move the caret to the current code block start, highlighting the block limits

Ctrl + [

Basic Editing
Move the caret to the current code block start, selecting the code beginning from the initial caret location

Ctrl + Shift + [

Basic Editing
Start a new line after the current one positioning the caret in accordance with the current indentation level

Shift + Enter

Basic Editing
Start a new line before the current one

Ctrl + Alt + Enter

Basic Editing
Concatenate the selected lines into one or concatenate the line where the caret is currently located with the next line

Ctrl + Shift + J

Basic Editing
Split the selected line at the point where the caret is located, leaving the caret at the end of the first line

Ctrl + Enter

Basic Editing
Select successively increasing code blocks starting from the current caret location

Ctrl + W

Basic Editing
Remove sequentially the selection made by the action

Ctrl + Shift + W

Basic Editing
Move the selected block to the next indentation level

Tab

Basic Editing
Move the selected block to the previous indentation level

Shift + Tab

Basic Editing
Indent the current line or selected block according to the General settings

Ctrl + Alt + I

Code Folding
Expand the current collapsed fragment

Ctrl + NumPad +

Code Folding
Collapse the current folding region

Ctrl + NumPad -

Code Folding
Expand the current folded fragment and all the subordinate collapsed folding regions within that fragment

Ctrl + Alt + NumPad +

Code Folding
Collapse the current folding region and all the subordinate folding regions within it

Ctrl + Alt + NumPad -

Code Folding
Expand all collapsed fragments within the selection, or, if nothing is selected, expand all the collapsed fragments in the current file

Ctrl + Shift + NumPad +

Code Folding
Collapse all folding regions within the selection, or, if nothing is selected, collapse all the folding regions in the current file

Ctrl + Shift + NumPad -

Code Folding
Expand the current fragment and all the nested fragments up to the specified level

Ctrl + NumPad 1..5

Code Folding
Expand all the collapsed fragments in the file up to the specified nesting level

Ctrl + Shift + NumPad 1..5

Code Folding
Collapse the selected fragment and create a custom folding region for it to make it "foldable" / Expand the current fragment and remove the corresponding custom folding region to make the fragment "unfoldable"

Ctrl + .

Running and Debugging
Run a program

Shift + F10

Running and Debugging
Quickly select run/debug configuration and run or edit it

Shift + Alt + F10

Running and Debugging
Repeat execution with the same settings, with the same tab of the Run tool window having the focus

Ctrl + F5

Running and Debugging
Repeat execution with the same settings, with the same tab of the editor having the focus

Shift + F10

Running and Debugging
Debug a program

Shift + F9

Running and Debugging
Quickly select run/debug configuration and debug or edit it

Shift + Alt + F9

Running and Debugging
Step to the next line in the current file See Stepping Through the Program

F8

Running and Debugging
Step to the next executed line See Stepping Through the Program

F7

Running and Debugging
Select the method to step in, if the current line contains multiple method call expressions See Choosing a Method to Step Into

Shift + F7

Running and Debugging
Step to a first executed line after returning from the current method See Stepping Through the Program

Shift + F8

Running and Debugging
Run until the next line in this method or file, skipping the methods referenced at the current execution point and ignoring breakpoints See Stepping Through the Program

Shift + Alt + F8

Running and Debugging
Steps into the method called in the current execution point even if this method is to be skipped See Stepping Through the Program

Shift + Alt + F7

Running and Debugging
Run to the line where the caret is located See Stepping Through the Program

Alt + F9

Running and Debugging
Run to the line where the caret is located, ignoring breakpoints See Stepping Through the Program

Ctrl + Alt + F9

Running and Debugging
Resume program execution

F9

Running and Debugging
Terminate a debugging session

Shift + F2

Running and Debugging
Evaluate an arbitrary expression

Alt + F8

Running and Debugging
Evaluate an arbitrary expression without calling Evaluate Expression dialog

Ctrl + Alt + F8

Running and Debugging
Toggle breakpoint at the current line

Ctrl + F8

Running and Debugging
View/manage all breakpoints

Ctrl + Shift + F8

General Shortcuts
Close an active tab in a tool window (for example, Find tool window)

Ctrl + Shift + F4

General Shortcuts
Close an active editor

Ctrl + F4

General Shortcuts
Open an editor for the selected item or items and give focus to the last opened file

F4

General Shortcuts
Export contents of a tool window to a text file This feature applies to the Version Control Tool Window, Messages Tool Window, and other tool windows that provide the export button  on the window toolbar

Alt + O

General Shortcuts
Create a new class, file or directory See Populating Modules

Alt + Insert

General Shortcuts
Save all files and settings

Ctrl + S

General Shortcuts
When several tabs are open in the editor or a view, open the next tab to the right (or first tab if the current one is the last)

Alt + Right Arrow

General Shortcuts
When several tabs are open in the editor or a view, open the next tab to the left (or last tab if the current one is the first)

Alt + Left Arrow

General Shortcuts
Display intention actions (if any) for the code where the caret is currently located, or the selected GUI component in a form

Alt + Enter

General Shortcuts
Detect all externally changed files and reload them from disk

Ctrl + Alt + Y

Search
Initiate text search

Ctrl + F

Search
Initiate text search and replace

Ctrl + R

Search
Navigate to the next/previous occurrence of a selected word in the editor

F3 / Shift + F3

Search
Search in the editor for the word where the caret is currently located

Ctrl + F3

Search
Initiate text search

Ctrl + F

Search
Initiate search for a text string in the specified scope

Ctrl + Shift + F

Search
Initiate search and replace in the specified scope

Ctrl + Shift + R

Search
Initiate search for usages of the selected symbol in the specified scope

Alt + F7

Search
Initiate search for usages of the selected symbol in the current file

Ctrl + F7

Search
Highlight usages of a symbol at caret

Ctrl + Shift + F7

Search
Show usages of a symbol at caret in a pop-up window Use list of found usages to jump to the desired location

Ctrl + Alt + F7

Search
Find an action, bypassing menus See Finding Actions

Ctrl + Shift + A

Navigation between Bookmarks
Navigate to a numbered bookmark with the corresponding number

Ctrl + Specified Number

Navigation between Bookmarks
Turn anonymous bookmark on or off

F11

Navigation between Bookmarks
Turn bookmark with mnemonic on or off

Ctrl + F11

Navigation between Bookmarks
Open Bookmarks dialog to manage existing bookmarks and navigate between them

Shift + F11

Navigation between IDE Components
Move focus from the current file, class, method or reference to a data source, to a view suggested in the Select Target pop-up menu Refer to Navigating Between IDE Components

Alt + F1

Navigation between IDE Components
Collapse all nodes in a tree view

Ctrl + NumPad -

Navigation between IDE Components
Expand all nodes in a tree view

Ctrl + NumPad +

Navigation between IDE Components
Navigate between files opened in the editor, and tool windows

Ctrl + Tab

Navigation between IDE Components
Open a tool window with the specified number

Alt + Number

Navigation between IDE Components
Hide the currently active tool window

Shift + Esc

Navigation between IDE Components
Activate the last focused tool window

F12

Navigation between Source Code
Display the Structure pop-up window for quick navigation through the current file

Ctrl + F12

Navigation between Source Code
Move focus from the current file, class, method or reference to a data source table to a view suggested in the Select Target pop-up menu See Navigating Between IDE Components

Alt + F1

Navigation between Source Code
Show the list of recently opened files

Ctrl + E

Navigation between Source Code
Show the list of recently updated files

Ctrl + Shift + E

Navigation between Source Code
Browse hierarchy for the selected class class

Ctrl + H

Navigation between Source Code
Navigate directly to a class in project by specifying its name in a pop-up dialog box

Ctrl + N

Navigation between Source Code
Navigate directly to a file in project by specifying its name in a pop-up dialog box

Ctrl + Shift + N

Navigation between Source Code
Show the list of recently opened files

Ctrl + E

Navigation between Source Code
Show the list of recently updated files

Ctrl + Shift + E

Navigation between Source Code
Navigate to any line in the current file by specifying its number

Ctrl + G

Navigation between Source Code
Navigate to declaration of a symbol at caret

Ctrl + B

Navigation between Source Code
Navigate to implementation of the item at caret

Ctrl + Alt + B

Navigation between Source Code
Navigate to a type declaration of a symbol at caret, the symbol being a variable or a method call

Ctrl + Shift + B

Navigation between Source Code
Navigate to a super method declaration of a method under the caret

Ctrl + U

Navigation between Source Code
Navigate to a test for the class at caret, if any, or navigate from a test to a test subject

Ctrl + Shift + T

Navigation between Source Code
Navigate between files with complicated relationships between them

Ctrl + Alt + Home

Navigation between Source Code
Navigate to the next method declaration in the active editor tab

Alt + Down Arrow

Navigation between Source Code
Navigate to the previous method declaration in the active editor tab

Alt + Up Arrow

Navigation between Source Code
Navigate to the start of the current code block

Ctrl + [

Navigation between Source Code
Navigate to the end of the current code block

Ctrl + ]

Navigation between Source Code
Undo last navigation operation

Ctrl + Alt + Left Arrow

Navigation between Source Code
Redo last undone navigation operation

Ctrl + Alt + Right Arrow

Navigation between Source Code
Navigate to a previous found item

Ctrl + Alt + Up Arrow

Navigation between Source Code
Navigate to a next found item

Ctrl + Alt + Down Arrow

Navigation between Source Code
Move through the most recent change points

Ctrl + Shift + Backspace

Navigation between Source Code
Navigate to the next found error/warning

F2

Navigation between Source Code
Navigate to the previous found error/warning

Shift + F2

Refactoring
Rename the selected file, class, field, method, etc and change all references to it accordingly

Shift + F6

Refactoring
Change the signature of the selected method and update all the corresponding method calls

Ctrl + F6

Refactoring
Move the selected class, package or static member to another package or class and update all the corresponding references

F6

Refactoring
Create a copy of the selected class, file or directory in the same or different directory or package

F5

Refactoring
Delete the selected class, method or field checking its usages

Alt + Delete

Refactoring
Turn the selected code fragment into a method

Ctrl + Alt + M

Refactoring
Create a new variable and use the selected expression as its value

Ctrl + Alt + V

Refactoring
Create a new field and use the selected expression as its value

Ctrl + Alt + F

Refactoring
Create a new constant (static final field) and use the selected expression as its value

Ctrl + Alt + C

Refactoring
Turn the selected expression into a new method parameter

Ctrl + Alt + P

Refactoring
Inline the selected method or variable

Ctrl + Alt + N

Similar combinations for other applications


Microsoft Excel 2010 (Windows)
Show active cell within selection.
Work with Data Selections - Manage Active Selections

Ctrl + Backspace


Microsoft OneNote 2010 (Windows)
Delete one word to the left / right.
Basic Editing and Formatting

ctrl + backspace / ctrl + delete


Eclipse Helios (Windows)
Delete previous word
Edit Text

Ctrl + Backspace


Thunderbird (Windows)
Delete previous word
Compose and Edit Message

Ctrl + Backspace


Thunderbird (Linux)
Delete previous word
Compose and Edit Message

Ctrl + Backspace


SharpDevelop 4.0 (Windows)
Delete word
Standard Editor Shortcuts

Ctrl + Delete / Ctrl + Backspace


Microsoft Word 2007 (Windows)
Delete one word to the left.
Edit and move text and graphics: Delete text and graphics

Ctrl + Backspace


Visual Studio 2015 (Windows)
Delete word to left of cursor
Code Editor - Edit Code

Ctrl + Backspace


Microsoft Excel 2010 (Windows)
Show active cell within selection.
Insert and Edit Data - Manage Active Selections

Ctrl + Backspace


Visual Studio 2015 (Windows)
Delete word to left of cursor
Coding - Edit Code

Ctrl + Backspace


Oracle SQL Developer 4 (Windows)
Delete to start of Previous word
Code Editor

Ctrl + Backspace


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

Ctrl + Backspace


Opera (Linux)
Go to parent directory
History

Ctrl + Backspace


Sublime Text (Windows)
Delete word to the left
Deletions

Ctrl + Backspace


Microsoft Excel 2010 (Windows)
Show active cell within selection.
Format Data - Manage Active Selections

Ctrl + Backspace


UltraEdit (Windows)
Delete the word preceding the cursor
Select/Delete/Insert Shortcuts

Ctrl + Backspace


Photoshop Lightroom 4 (Windows)
Delete rejected photo(s)
Managing photos and catalog

Ctrl + Backspace


Microsoft PowerPoint 2010 (Windows)
Delete one word to the left.
Work with Text and Objects

Ctrl + Backspace


Microsoft Excel 2010 (Windows)
Show active cell within selection.
Formulas and Names - Manage Active Selections

Ctrl + Backspace


IntelliJ (Linux)
Delete to word start
Editing

Ctrl + Backspace


IntelliJ (Windows)
Delete to word start
Editing

Ctrl + Backspace


Notepad2 (Windows)
Delete word before/left
Char, Word

Ctrl + Backspace


Beyond Compare (Windows)
Delete to start of word
Edit Menu

Ctrl + Backspace


Microsoft Excel 2013 (Windows)
Show active cell within selection
Navigate Inside Selected Text Blocks

Ctrl + Backspace


Directory Opus (Windows)
Go root
Misc.

Ctrl + Backspace


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

Ctrl + Delete / Ctrl + Backspace


Microsoft Excel 2010 (Windows)
Show active cell within selection.
The Rest - Manage Active Selections

Ctrl + Backspace


Virtual DJ (Windows)
Goto last folder
All Shortcuts

Ctrl + Backspace


Windows 10 Command Prompt (Windows)
Delete word left to the Cursor
Enter and Manipulate Text

Ctrl + Backspace


Adobe Photoshop CS5 (Windows)
Fill with foreground or background color
Painting

Alt + Backspace / Ctrl + Backspace


Notepad++ 6 (Windows)
Delete to start of word
Edit menu

Ctrl + Backspace


FileMaker Pro (Windows)
Delete Next word
Text Shortcuts - Delete and Edit Text

Ctrl + Delete / Ctrl + Backspace


Microsoft OneNote 2016 (Windows)
Delete one word to the left of cursor
Basic Editing and Formatting

Ctrl + Backspace


Photoshop Lightroom CC (Windows)
Delete rejected photo(s)
Managing Photos and Catalogs

Ctrl + Backspace


Microsoft Excel 2016 (Windows)
When navigated away while editing formula; jump back to active cell while keeping formula intact.
Select Cells - Basics

Ctrl + Backspace


Adobe After Effects CC (Windows)
Delete a Footage item without a warning
Footage

Ctrl + Backspace


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

Ctrl + Delete / Ctrl + Backspace


Microsoft Excel 2016 (Windows)
When navigated away while editing formula; jump back to active cell while keeping formula intact.
Format Cells - Basics

Ctrl + Backspace


Microsoft Excel 2016 (Windows)
When navigated away while editing formula; jump back to active cell while keeping formula intact.
Formulas - Basics

Ctrl + Backspace


Microsoft Excel 2016 (Windows)
When navigated away while editing formula; jump back to active cell while keeping formula intact.
Manage Workbooks - Basics

Ctrl + Backspace


AutoCad Architecture 2017 (Windows)
Deletes the word
Text Editing

Ctrl + Backspace


Microsoft Excel 2016 (Windows)
When navigated away while editing formula; jump back to active cell while keeping formula intact.
Excel Auto Tables and Data Forms - Basics

Ctrl + Backspace


JetBrains RubyMine (Windows)
Delete to word start
Editing Shortcuts

Ctrl + Backspace


Microsoft Excel 2016 (Windows)
Show active cell within selection; helps with large selections when active cell is off screen
Navigate Multi-Cell Selections

Ctrl + Backspace


JetBrains RubyMine (Linux)
Delete to word start
Editing Shortcuts

Ctrl + Backspace


Logic Pro X (MacOS)
Clear cables only
Environment

Ctrl + Backspace


Adobe Dreamweaver (Windows)
Delete word left
Coding Shortcuts

Ctrl + Backspace


JetBrains PyCharm (Windows)
Delete to word start
Editing

Ctrl + Backspace


Logic Pro X (MacOS)
Silence
Audio File Editor

Ctrl + Backspace


Cloud9 (Windows)
Remove Word Left
Remove Text

Ctrl + Backspace


JetBrains PhpStorm (Windows)
Delete to word start
Editing

Ctrl + Backspace


SharePoint 2016 (Windows)
Delete all of the word in front of the cursor, but not the previous space
Rich Text Editing

Ctrl + Backspace


JetBrains PhpStorm (Linux)
Delete to word start
Editing

Ctrl + Backspace


jEdit (Windows)
Delete Word Before
Text Editing

Ctrl +Backspace


Corel PhotoPaint X6 (Windows)
Fill
Edit Menu

Ctrl + Backspace


Corel Draw X8 (Windows)
Undo
General

Ctrl + Z / Ctrl + Backspace


HTML-Kit (Windows)
Delete One word From Left
87 Shortcuts for HTML-Kit (Windows)

Ctrl + Backspace


Corel Ventura 10 (Windows)
Delete one word from Left/Right
Text Selection

Ctrl + Backspace / Ctrl + Delete


InCopy CC (Windows)
Delete word in front of insertion point (Galley and Story views)
Navigation Shortcuts

Ctrl + Backspace/Delete


Brackets (Windows)
Delete Group Before
99 Shortcuts for Brackets (Windows)

Ctrl + Backspace


Informix Genero 2.5.0 (Windows)
Delete to start of word (backward-kill-word)
Editing Shortcuts

Ctrl + Backspace


Jetbrains CLion (Windows)
Delete to word start
Editing Shortcuts

Ctrl + Backspace


Aptana Studio 3 (Windows)
Delete Word from Left Side
Deletion

Ctrl + Backspace


Editpad 7 (Windows)
Delete the start of the current word
Select and Edit Text

Ctrl + Backspace


Libreoffice Writer (Windows)
Delete text to beginning of word In a list
General

Ctrl + Backspace


GOM Player (Windows)
Root Menu
DVD Control

Ctrl + Backspace


Delphi 10 (Windows)
Delete the word to the beginning
193 Shortcuts for Delphi 10 (Windows)

Ctrl + Backspace


CodeLite 10 (Windows)
Delete to start of word.
Editor

Ctrl + Backspace


TurboCAD (Windows)
Insert all elements as large as possible
171 Shortcuts for TurboCAD (Windows)

Ctrl + Backspace


RStudio (Windows)
Delete word left
Editing (Console and Source)

Ctrl + Backspace


Wordfast Pro (Windows)
Delete Previous Word
100 Shortcuts for Wordfast Pro (Windows)

Ctrl + Backspace


Chromebook (Linux)
Delete the previous word
34 Shortcuts for Chromebook (Linux)

Ctrl + Backspace


Modo (Windows)
Collapse
Tools

Ctrl + Backspace


Inkscape (Windows)
Go to parent group/layer
Selector

Ctrl + BackSpace


Inkscape (Windows)
Delete without preserving shape
Node Tool

Ctrl + BackSpace/ Ctrl + Del


Adobe Photoshop Elements (Windows)
Fill selection/layer with foreground or background color
Painting and Brushes

Alt + Backspace / Ctrl + Backspace


Altium Designer (Windows)
Redo
CAM Editor Shortcuts

Ctrl + Y / Ctrl + Backspace


Altium Designer (Windows)
Delete to beginning of previous word
Common Shortcuts

Ctrl + Backspace


Google Spreadsheets (Web Application)
Scroll to the active cell when multiple cells are selected
Movement within worksheets

Ctrl + Backspace


Microsoft Word 2010 (Windows)
Delete one word to the right / to the left
Navigate within Documents - Move and Delete Text

Ctrl + Delete / Ctrl + Backspace


Open Office Writer 3 (Windows)
Delete text to beginning of word
General OpenOffice Writer Shortcuts

Ctrl + Backspace


Adobe After Effects CS5 (Windows)
Delete a footage item without a warning
Footage

Ctrl + Backspace


Microsoft Word 2010 (Windows)
Delete one word to the right / to the left
Edit Documents - Move and Delete Text

Ctrl + Delete / Ctrl + Backspace


Microsoft Excel 2007 (Windows)
Delete one word to the left.
Smart-Art Graphics : Work with Text

Ctrl + Backspace


InDesign CS5 (Windows)
Delete word in front of insertion point (Story Editor)
Navigating Through and Editing Text

Ctrl + Backspace / Delete


Microsoft Word 2010 (Windows)
Delete one word to the right / to the left
Formats - Move and Delete Text

Ctrl + Delete / Ctrl + Backspace


Adobe Photoshop CS4 (Windows)
Fills selection/layer with foreground or background color
Shortcut Keys for painting objects

Alt + backspace , / Ctrl + Backspace


Microsoft Word 2010 (Windows)
Delete one word to the right / to the left
Manage Word View - Move and Delete Text

Ctrl + Delete / Ctrl + Backspace


Microsoft Word 2010 (Windows)
Delete one word to the right / to the left
Tables - Move and Delete Text

Ctrl + Delete / Ctrl + Backspace