Jetbrains CLion (Windows)

Navigation Shortcuts

Navigate backward / navigate forward

Ctrl + Alt + Left Arrow / Right Arrow

All hotkeys for Jetbrains CLion (Windows)

Editing Shortcuts
Basic code completion (the name of any class, method or variable)

Ctrl + Spacebar

Editing Shortcuts
Smart code completion (filters the list of methods and variables by expected type)

Ctrl + Shift + Spacebar

Editing Shortcuts
Complete statement

Ctrl + Shift + Enter

Editing Shortcuts
Parameter info (within method call arguments)

Ctrl + P

Editing Shortcuts
Quick documentation lookup

Ctrl + Q

Editing Shortcuts
Brief Info

Ctrl + Mouse over code

Editing Shortcuts
Show descriptions of error or warning at caret

Ctrl + F1

Editing Shortcuts
Generate code... (Getters, Setters, Constructors, hashCode/equals, toString)

Alt + Insert

Editing Shortcuts
Override methods

Ctrl + O

Editing Shortcuts
Implement methods

Ctrl + I

Editing Shortcuts
Surround with… (if..else, try..catch, for, synchronized, etc.)

Ctrl + Alt + T

Editing Shortcuts
Comment/uncomment with line comment

Ctrl + /

Editing Shortcuts
Comment/uncomment with block comment

Ctrl + Shift + /

Editing Shortcuts
Select successively increasing code blocks

Ctrl + W

Editing Shortcuts
Decrease current selection to previous state

Ctrl + Shift + W

Editing Shortcuts
Show Intension actions and QuickFixes

Alt + Q

Editing Shortcuts
Reformat code

Ctrl + Alt + L

Editing Shortcuts
Optimize imports

Ctrl + Alt + O

Editing Shortcuts
Auto-indent line(s)

Ctrl + Alt + I

Editing Shortcuts
Indent/unindent selected lines

Tab / Shift + Tab

Editing Shortcuts
Cut current line or selected block to clipboard

Ctrl + X

Editing Shortcuts
Copy current line or selected block to clipboard

Ctrl + C

Editing Shortcuts
Paste from clipboard

Ctrl + V

Editing Shortcuts
Paste from recent buffers...

Ctrl + Shift + V

Editing Shortcuts
Duplicate current line or selected block

Ctrl + D

Editing Shortcuts
Delete line at caret

Ctrl + Y

Editing Shortcuts
Smart line join

Ctrl + Shift + J

Editing Shortcuts
Smart line split

Ctrl + Enter

Editing Shortcuts
Start new line

Shift + Enter

Editing Shortcuts
Toggle case for word at caret or selected block

Ctrl + Shift + U

Editing Shortcuts
Select till code block end/start

Ctrl + Shift + ] / [

Editing Shortcuts
Delete to word end

Ctrl + Delete

Editing Shortcuts
Delete to word start

Ctrl + Backspace

Editing Shortcuts
Expand/collapse code block

Ctrl + NumPad + / -

Editing Shortcuts
Expand all / collapse all

Ctrl + Alt + NumPad + / -

Editing Shortcuts
Close active editor tab

Ctrl + F4

Editing Shortcuts
Place caret in Multiple Location

Alt + Shift + Click

Editing Shortcuts
Restore Single Caret Mode

Esc

Editing Shortcuts
Add/Delete Next Occurance of Current Word to Selection

Alt + G / Alt + Shift + G

Find and Replace
Search everywhere

Double Shift

Find and Replace
Find

Ctrl + F

Find and Replace
Find next/Find previous

F3 / Shift + F3

Find and Replace
Replace

Ctrl + R

Find and Replace
Find in path

Ctrl + Shift + F

Find and Replace
Replace in path

Ctrl + Shift + R

Compile and Run
Build Project

Ctrl + F9

Compile and Run
Select configuration and run

Alt + Shift + F10

Compile and Run
Select configuration and debug

Alt + Shift + F9

Compile and Run
Run

Shift + F10

Compile and Run
Debug

Shift + F9

Debugging
Step over

F8

Debugging
Step into

F7

Debugging
Step out

Shift + F8

Debugging
Run to cursor

Alt + F9

Debugging
Evaluate expression

Alt + F8

Debugging
Resume program

F9

Debugging
Toggle breakpoint

Ctrl + F8

Debugging
View breakpoints

Ctrl + Shift + F8

Live Templates
Surround with Live Template

Ctrl + Alt + J

Live Templates
Insert Live Template

Ctrl + J

Live Templates
Indexed for( ; ; ) loop

for

Live Templates
Iterate range(C++11)

iter

Live Templates
Iterate using Begin/End Member Functions

itit

Live Templates
In CMake include directions with Boost

incboost

Live Templates
In CMake create New Function Definitor

function

Navigation Shortcuts
Go to class

Ctrl + N

Navigation Shortcuts
Go to file

Ctrl + Shift + N

Navigation Shortcuts
Go to symbol

Ctrl + Alt + Shift + N

Navigation Shortcuts
Go to next/previous editor tab

Alt + Right Arrow / Left Arrow

Navigation Shortcuts
Go back to previous tool window

F12

Navigation Shortcuts
Go to editor (from tool window)

Esc

Navigation Shortcuts
Hide active or last active window

Shift + Esc

Navigation Shortcuts
Close active run/messages/find/... tab

Ctrl + Shift + F4

Navigation Shortcuts
Go to line

Ctrl + G

Navigation Shortcuts
Recent files popup

Ctrl + E

Navigation Shortcuts
Navigate backward / navigate forward

Ctrl + Alt + Left Arrow / Right Arrow

Navigation Shortcuts
Navigate to last edit location

Ctrl + Shift + Backspace

Navigation Shortcuts
Select current file or symbol in any view

Alt + F1

Navigation Shortcuts
Go to declaration

Ctrl + B

Navigation Shortcuts
Go to implementation(s)

Ctrl + Alt + B

Navigation Shortcuts
Go to related Symbol(Header/Source File)

Ctrl + Alt + Home

Navigation Shortcuts
Open quick definition lookup

Ctrl + Shift + I

Navigation Shortcuts
Go to type declaration

Ctrl + Shift + B

Navigation Shortcuts
Go to super-method/super-class

Ctrl + U

Navigation Shortcuts
Go to previous/next method

Alt + Up Arrow / Down Arrow

Navigation Shortcuts
Move to code block end / move to code start

Ctrl + ] / [

Navigation Shortcuts
File structure popup

Ctrl + F12

Navigation Shortcuts
Type hierarchy

Ctrl + H

Navigation Shortcuts
Call hierarchy

Ctrl + Alt + H

Navigation Shortcuts
Next/previous highlighted error

F2 / Shift + F2

Navigation Shortcuts
Toggle bookmark

F11

Navigation Shortcuts
Toggle bookmark with mnemonic

Ctrl + F11

Navigation Shortcuts
Go to numbered bookmark

Ctrl + 0 ... 9

Navigation Shortcuts
Show bookmarks

Shift + F11

General
Open corresponding tool window

Alt + 0 ... 9

General
Inspect current file with current profile

Alt + Shift + I

General
Quick switch current scheme

Ctrl + `

General
Edit Application Settings

Ctrl + Alt + S

General
Hide All Tool Windows

Ctrl + Shift + F12

General
Add to Favourites

Alt + Shift + F

Usage Search
Find Usage

Alt + F7

Usage Search
Find Usages in File

Ctrl + F7

Usage Search
Highlight Usages in File

Ctrl + Shift + F7

Usage Search
Show Usages

Ctrl + Alt + F7

VCS/Local History
Commit Project to VCS

Ctrl + K

VCS/Local History
Update Project from VCS

Ctrl + T

VCS/Local History
View Recent Changes

Alt + Shift + C

VCS/Local History
VCS Quick Popup

Alt + `

Refactoring
Refactor This

Ctrl + Alt + Shift + T

Refactoring
Copy

F5

Refactoring
Move

F6

Refactoring
safe Delete

Alt + Delete

Refactoring
Rename

Shift + F6

Refactoring
Change Signature

Ctrl + F6

Refactoring
Extract Function

Ctrl + Alt + M

Refactoring
Inline

Ctrl + Alt + N

Refactoring
Introduce parameter

Ctrl + Alt + P

Refactoring
Introduce Variable

Ctrl + Alt + V

Refactoring
Introduce Constant

Ctrl + Alt + C

Refactoring
Introduce Define

Ctrl + Alt + D

Similar combinations for other applications


Firefox (MacOS)
Forward 15 seconds
Media Control

Right Arrow


Adobe Illustrator CS5 (MacOS)
Move one character right or left
Working with Type

Right Arrow / Left Arrow


Adobe Illustrator CS5 (Windows)
Move one character right or left
Working with Type

Right Arrow / Left Arrow


Virtual DJ (Windows)
Nudge -256
All Shortcuts

Right Arrow


Virtual DJ (Windows)
skip_beat +4
All Shortcuts

Right Arrow


Corel VideoStudio X9.5 (Windows)
Select Next Clip
Runtime Shortcuts

Right Arrow


Plex (Windows)
Move Right
Graphics(Audio/Video) Control

Right Arrow


Safari Browser (MacOS)
Scroll page horizontally
Navigation/Scroll Operation

Left/Right Arrow


Plex (MacOS)
Move Right
Graphics(Audio/Video) Control

Right Arrow


Plex (Windows)
Navigate Right
Navigation Controls

Right Arrow


Plex (MacOS)
Navigate Right
Navigation Controls

Right Arrow


Adobe Audition CC (Windows)
Move to previous marker
Marker/Tool/Clip Shortcuts

Ctrl + Alt + Left Arrow


Apple Numbers (MacOS)
Go to next sheet if selected in sheets pane
Navigation Shortcuts

Right Arrow / Down Arrow


Adobe Premiere CC (Windows)
Step forward
Panel Shortcuts

Right arrow


Adobe Premiere CC (MacOS)
Step forward
Panel Shortcuts

Right arrow


Nuke 10 (Windows)
Frame Forward
Timeline Viewer

Right Arrow


Nuke 10 (MacOS)
Frame Forward
Timeline Viewer

Right Arrow


Nuke 10 (Linux)
Frame Forward
Timeline Viewer

Right Arrow


Anime Studio (Windows)
Forward
General Shortcuts

Right arrow


Hexagon 2 (MacOS)
Turn Right
General Shortcuts

Right Arrow


Hexagon 2 (Windows)
Turn Right
General Shortcuts

Right Arrow


iMovie (MacOS)
Move the palyhead by one frame
Play video

Left arrow / Right arrow


Dynamics NAV 2015 (Windows)
Move to the next Character or Field
Normal Shortcuts

Right Arrow


Anime Studio (MacOS)
Forward
General Shortcuts

Right arrow


Apple Pages (MacOS)
Move one character to the right
Moving around within a document

Right Arrow


ArchiCAD 20 (Windows)
Scroll Right
Actions

Right Arrow


Windows Movie Maker (Windows)
Back
On timeline

Ctrl + Alt + Left arrow


Finder (MacOS)
Open the selected folder. This works only when in list view.
General

Right Arrow


Windows Movie Maker (Windows)
Select next item
On timeline

Right arrow


Apple Motion (MacOS)
Go to the next frame
Mark Menu

Right Arrow


Wondershare Editor (Windows)
Go to previous frame
Preview

Right arrow


iMovie (MacOS)
Forward one frame
Navigation

Right Arrow


Dynamics SL 2015 (Windows)
Move to next field
Grid/View Shortcuts

Tab / Right Arrow


Dynamics AX 2015 (Windows)
Expand the current node
Working with AOT

Right Arrow


Apple Photos (Windows)
Go to next photo
Edit

Right Arrow


ArchiCAD 20 (MacOS)
Scroll Right
Actions

Right Arrow


Ace Projects (Windows)
Go to right
Navigation Shortcuts

Right Arrow


Microsoft Projects 2016 (Windows)
Move one character to the right.
Moving around cells/text

Right Arrow


1Password (MacOS)
Show item details.
1Password Mini App Shortcuts

Right Arrow


CyberLink PhotoDirector 8 (Windows)
Go to next photo
FIle / Project features

Right arrow


Ace Projects (Windows)
Add previous occurrence to multi+selection
Multicursor Shortcuts

Ctrl + Alt + Left Arrow


Adobe Acrobat Pro (MacOS)
Next page
Navigation - Navigating a PDF

Right Arrow / Command + Page Down


Adobe Acrobat Pro (MacOS)
Expand the current bookmark (focus on Bookmarks panel)
Navigation - Navigation panels

Right Arrow / Shift + [ + ]


Autodesk 3ds Max 2017 (Windows)
Go forward to sibling
Material editor

Right Arrow


Adobe Acrobat Pro (MacOS)
Navigate through the other controls in the top bar - Home, Tools, Document
Navigation

Right Arrow / Left Arrow / Tab / Shift + Tab


Final Cut Pro (MacOS)
Forward one frame
Navigation

Right arrow


Adobe Acrobat Pro (MacOS)
Selects the next or previous column header for sorting
PDF Portfolios

Left Arrow / Right Arrow


ZenDesk (Windows)
Move Right
Navigation Shortcuts

Right Arrow


GitLab (Web Application)
Scroll Right
NetWork Graph Shortcuts

L / Right Arrow


TextMate 2 (MacOS)
Move Column Up/Down
General Shortcuts

Command + Ctrl + Left Arrow / Right Arrow


Final Cut Pro (MacOS)
Oepn bins
Browser

Right arrow


Mac OS Sierra 10.12 (MacOS)
Open the selected folder. This works only when in list view.
Finder Shortcuts

Right Arrow


TextMate 2 (MacOS)
Navigate Tabs
General Shortcuts

Command + Option + Left Arrow / Right Arrow


TextMate 2 (MacOS)
Scroll Column Up/Down
General Shortcuts

Command + Option + Ctrl + Left Arrow / Right Arrow


Slack (MacOS)
Move between Channels
Unread Navigation

Left Arrow / Right Arrow


Slack (Windows)
Move between Channels
Unread Navigation

Left Arrow / Right Arrow


Google Photos (Web Application)
Next Photo
General Shortcuts

Right Arrow


JetBrains PyCharm (Windows)
Navigate back/forward
Navigation

Ctrl + Alt + Left Arrow / Ctrl + Alt + Right Arrow


GTA V Cheats (Windows)
Phone Right
Cellphone Controls

Right Arrow


JetBrains RubyMine (Windows)
Navigate back/forward
Navigation Shortcuts

Ctrl + Alt + Left Arrow / Ctrl + Alt + Right Arrow


Amazon Kindle (Windows)
Move the focus of the book to the right of the current selection
Library

Right Arrow


Zimbra Collaboration Suite 8 (Windows)
Next Page of Items
Application

Right Arrow


JetBrains RubyMine (Linux)
Navigate back/forward
Navigation Shortcuts

Ctrl + Alt + Left Arrow / Ctrl + Alt + Right Arrow


Logic Pro X (MacOS)
Next/Previous Event
Score Editor

Right Arrow / Left Arrow


Zimbra Collaboration Suite 8 (Windows)
Show Submenu of Current Item
PopUp Menus

Right Arrow


Zimbra Collaboration Suite 8 (Windows)
Focus on Next Button
Horizontal Toolbars

Right Arrow


Zoho Mail (Web Application)
Collapse Folder
Default Keyboard Shortcuts

Right Arrow


Clarizen (Web Application)
Close Sub menu if in Focus
Navigation

Right Arrow


Clarizen (Web Application)
Moves the selected cell one cell to the Right if Entire Row is Highlighted
Main Grid

Tab / Right Arrow


Blender 3D (Windows)
Go to Next Frame
Universal

Right Arrow


Podio (Web Application)
Move between Items in App
MIscellaneous Shortcuts

Left Arrow / Right Arrow


Adobe Bridge CC (MacOS)
Move Right one item
35 Shortcuts for Adobe Bridge CC (MacOS)

Right Arrow


Adobe Bridge CC (Windows)
Move Right one item
35 Shortcuts for Adobe Bridge CC (Windows)

Right Arrow


Clarizen (Web Application)
Moves the selected cell one cell to the Right in days for days, work week, week and month views
Calender

Right Arrow


Clarizen (Web Application)
Moves between dates
Range Filter

Left Arrow / Right Arrow


Zoho Projects (Windows)
To Navigate Task Lists and Milestones
Other Actions

Left Arrow / Right Arrow


JetBrains PhpStorm (Windows)
Navigate back/forward
Navigation

Ctrl + Alt + Left Arrow / Ctrl + Alt + Right Arrow


Daz 3D Bryce 7 (Windows)
Move Positive on X-axis by 5.12 BU
Object Translation

Right Arrow


Daz 3D Bryce 7 (MacOS)
Move Positive on X-axis by 5.12 BU
Object Translation

Right Arrow


JetBrains PhpStorm (Linux)
Navigate back/forward
Navigation

Ctrl + Alt + Left Arrow / Ctrl + Alt + Right Arrow


Fifa Football 17 (Windows)
Mentality
Attacking (Keyboard + Mouse )

Lest arrow / RIght arrow


Fifa Football 17 (Windows)
Mentality
Defending (Mouse + Keyboard)

Left arrow / Right arrow


Opera (Windows)
Move one character to the right
Navigation

Right Arrow


Opera (MacOS)
Move one character to the right
Navigation

Right Arrow


ACDSee (Windows)
Rotate Current Image 90 counter clock wise
View Mode

Ctrl + Alt + Left Arrow


Corel Ventura 10 (Windows)
Move one Character
Cursor Movement

Left Arrow / Right Arrow


Pinnacle Studio Ultimate 20 (Windows)
Select Next Clip
Navigation

Right Arrow


Blender 3D (Windows)
Move Text Cursor 1 Position Forward
Font

Right Arrow


Steinberg Cubase 9 (Windows)
Right
Navigate

Right arrow


Steinberg Cubase 9 (MacOS)
Right
Navigate

Right arrow


Corel Draw X8 (Windows)
Nudge right
Objest Nudge Commands

RIght arrow


InCopy CC (Windows)
Move right/left one character
Navigation Shortcuts

Right Arrow / Left Arrow


InCopy CC (MacOS)
Move right/left one character
Navigation Shortcuts

Right Arrow / Left Arrow


HTML-Kit (Windows)
Select From current Position to Previous/Next Word
87 Shortcuts for HTML-Kit (Windows)

Ctrl + Shift + Left Arrow / Right Arrow


Corel Draw X8 (Windows)
Cursor right one character
Cursor Moves Using Text Tool

RIght arrow


iBooks (MacOS)
Go to Next Page/Image/Object
Keyboard Controls

Right Arrow / Down Arrow / PgDn


Final Fantasy XV (Windows)
Point camera right
Camera

Right arrow


MAGIX Movie Edit Pro (Windows)
1 frame forward
PlayBack Functions

Right arrow


InCopy CC (MacOS)
Move to next cell
Tables

Tab / Left Arrow / Right Arrow


Houdini (Windows)
Next frame
Main Menu

Right arrow


Apple Motion (MacOS)
Move right one item in the file stack
Library

Right Arrow


InCopy CC (Windows)
Move to next cell
Tables

Tab / Left Arrow / Right Arrow


Lightworks (Windows)
To Move Next Field
31 Shortcuts for Lightworks (Windows)

Right Arrow


Garageband 10 (MacOS)
Select next region on the selected track
MIsellaneous Shortcuts

Right Arrow


InCopy CC (MacOS)
Expand/Collapse element
Working with XML

Right Arrow / Left Arrow


InCopy CC (Windows)
Expand/Collapse element
Working with XML

Right Arrow / Left Arrow


Apple Motion (MacOS)
Go to the next frame
TimeLine Editing and Navigation

Right Arrow


InCopy CC (MacOS)
Go to previous/next validation error
Working with XML

Command + Left Arrow / Right Arrow


Garageband 10 (MacOS)
Select the next score event
MIsellaneous Shortcuts

Right Arrow


InCopy CC (Windows)
Go to previous/next validation error
Working with XML

Ctrl + Left Arrow / Right Arrow


Informix Genero 2.5.0 (Windows)
Right one character
Cursor Movement Shortcuts

Right Arrow


Kingsoft Presentation 2016 (Windows)
Next Slide
SlideShow

N / Right Arrow


IBM Director (Windows)
Navigate in browser history
14 Shortcuts for IBM Director (Windows)

Alt + Left Arrow / Right Arrow


Notes 9.0 (Windows)
Navigate Tabs in Horizontal List
26 Shortcuts for Notes 9.0 (Windows)

Left Arrow / Right Arrow


FxPro (Windows)
Scroll Right
Navigation and Scrolling

Right Arrow


MediaMonkey (Windows)
Previous Track
Standard Keyboard Shortcuts

Ctrl + B / Ctrl + Alt + Left Arrow


Tencent QQ Player (Windows)
Rewind
30 Shortcuts for Tencent QQ Player (Windows)

Right Arrow


MPS 2017 (Windows)
Move the caret one character to the right
Basic Editing

Right Arrow


PotPlayer (Windows)
5 Seconds Forward
Standard Keyboard Controls

Right Arrow


Vuze (Windows)
Scroll to the Left/Right End
General Shortcuts

Ctrl + Left Arrow / Right Arrow


Vuze (MacOS)
Scroll to the Left/Right End
General Shortcuts

Command + Left Arrow / Right Arrow


Krita Painting 3 (Windows)
Pan right
Pan

Right arrow


MetaTrader MT4 (Windows)
Chart Scrolling Right
Navigation

Right Arrow


VideoPad Video Editor (Windows)
Go to Start
Sequence Player

Ctrl + Alt + Left arrow


Soundforge (Windows)
Move one pixel right/left
Cursor Movements

Right Arrow / Left Arrow


XYplorer (Windows)
Go to Focused Item (Search Results only)
General Shortcuts

Ctrl + Alt + Left Arrow


Vegas Pro 14 (Windows)
Move left/right one pixel (when Quantize to Frames is turned off)
Cursor Placement,Loop Region and Time Selection

Left Arrow / Right Arrow


Vegas Pro 14 (Windows)
Move to previous/next marker
Cursor Placement,Loop Region and Time Selection

Ctrl + Left Arrow / Right Arrow


Vegas Pro 14 (Windows)
Move one frame left/right
Cursor Placement,Loop Region and Time Selection

Alt + Left Arrow / Right Arrow


Vegas Pro 14 (Windows)
Move left/right to event edit points (including fade edges)
Cursor Placement,Loop Region and Time Selection

Ctrl + Alt + Left Arrow / Right Arrow


Visual Studio Code (Windows)
Go back / forward
Navigation Shortcuts

Alt + Left Arrow/Right Arrow


Titanium (MacOS)
Previous/Next Word
Navigation

Option + Left Arrow / Right Arrow


ZBrush 4 (Windows)
Go to Next Camera Keyframe
Timeline

Right Arrow


Titanium (MacOS)
To Line Start/End
Navigation

Command + Left Arrow / Right Arrow


MPS 2017 (Windows)
Undo last navigation operation
Navigation between Source Code

Ctrl + Alt + Left Arrow


Visual Studio Code (Windows)
Focus into previous/next editor group
Editor Management

Ctrl + K then Ctrl + Left Arrow/Right Arrow


Visual Studio Code (Windows)
Move active editor group
Editor Management

Ctrl + K then Left Arrow/Right Arrow


Vegas Pro 14 (Windows)
Scroll Left/Right(Press Shift to scroll quickly)
RedEye Reduction

Right Arrow / Left Arrow


iClone 7 (Windows)
Rotate by Z Axis
Item Transform

Ctrl + Left/Right Arrow


Vegas Pro 14 (Windows)
Change audio track volume or video track compositing level (when focus is on track list)
Timeline and Track List

Ctrl + Left Arrow / Right Arrow


Vegas Pro 14 (Windows)
Change audio track panning or video track fade-to-color setting (when focus is on track list and automation controls are visible)
Timeline and Track List

Ctrl + Shift + Left Arrow / Right Arrow


iClone 7 (Windows)
Go to next frame.
Timeline Shortcuts

Right Arrow


Titanium (Windows)
Previous/Next Word
Navigation

Alt + Left Arrow / Right Arrow


Titanium (Windows)
To Line Start/End
Navigation

Ctrl + Left Arrow / Right Arrow


Smite (Windows)
Turn Right
Movement Controls

Right Arrow


Smite (MacOS)
Turn Right
Movement Controls

Right Arrow


progeCAD (Windows)
Pans the drawing window view right by one unit
51 Shortcuts for progeCAD (Windows)

Right Arrow


TurboCAD (Windows)
Scroll view right
171 Shortcuts for TurboCAD (Windows)

Right Arrow


Wordfast Pro (Windows)
Previous Term / Placeable
100 Shortcuts for Wordfast Pro (Windows)

Ctrl + Alt + Left Arrow


SpaceClaim (Windows)
Next view
71 Shortcuts for SpaceClaim (Windows)

Right Arrow


SpaceClaim (Windows)
Nudge Secondary Dimension by Small Distance or angle
71 Shortcuts for SpaceClaim (Windows)

Ctrl + Alt + Left Arrow / Ctrl + Alt + Right Arrow


Foxit Reader (Windows)
Next Page
30 Shortcuts for Foxit Reader (Windows)

Right Arrow


Foxit Reader (Linux)
Next Page
30 Shortcuts for Foxit Reader (Linux)

Right Arrow


Foxit Reader (MacOS)
Next Page
30 Shortcuts for Foxit Reader (MacOS)

Right Arrow


JW Player (Windows)
Seek forward or backward by 5 seconds
8 Shortcuts for JW Player (Windows)

Right Arrow / Left Arrow


AVS Audio Editor (Windows)
Move cursor right on the Timeline
Navigation

Right Arrow


AVS Video Editor (Windows)
Next frame
Timeline Shortcuts

Right Arrow


KeyCreator (Windows)
Pan Right
Pan

Right Arrow


eMachineShop (Windows)
Nudge selected line(s) Right
38 Shortcuts for eMachineShop (Windows)

Right Arrow


Adobe Photoshop Elements (MacOS)
Move 1 character left/right, 1 line down/up, or 1 word left/right
Text

Arrow Keys / Command + Left Arrow/Right Arrow


Adobe Photoshop Elements (Windows)
Move 1 character left/right, 1 line down/up, or 1 word left/right
Text

Arrow Keys / Ctrl + Left Arrow/Right Arrow


Altium Designer (Windows)
Move 3D body right along X-axis by one Snap Grid increment
3D Body Placement Shortcuts

Right Arrow


Tupi (Windows)
Play frame by frame forward
Player Module

Right Arrow