110 JetBrains AppCode Keyboard Shortcuts

AppCode has developed an IDE that closely resembles IntelliJ. JetBrains AppCode Shortcuts embrace a keyboard-centric approach, as nearly all actions can be performed using keyboard shortcuts.

Below, we will introduce you to JetBrains AppCode Shortcuts that will help you start working with AppCode more efficiently and become a more productive programmer. For future reference, you can download the JetBrains AppCode Shortcuts list in PDF format.

Editing Shortcuts

ActionJetBrains AppCode Shortcuts
CopyCommand + C
PasteCommand + V
CutCommand + X
Paste from BufferCommand + Shift + V
Generate CodeCommand + N
Override MethodsCommand + O
Basic Code CompletionCommand + Spacebar
Complete Current StatementCommand + Shift + Return
Quick Documentation LookupCommand + J
Parameter InformationCommand + P
Move Line UpOption + Shift + Up Arrow key
Move Line DownOption + Shift + Down Arrow key
Surround WithCommand + Option + T
Comment or Uncomment with Line CommentCommand + /
Comment or Uncomment with Block CommentCommand + Option + /
Show Description of Error or Warning at CaretCommand + F1
Indent Selected LinesTab
Unindent Selected LinesShift + Tab
Show Intention Actions and Quick FixesOption + Return
Reformat CodeCommand + Option + L
Duplicate Current LineCommand + D
AutoIndent LinesCommand + Option + I
Delete line at caretCommand + Backspace
Start NewlineShift + Return
Show Intention Actions or Quick-FixesOption + Return
Decrease Current Selection to Previous StateOption + Down Arrow key
Select Successively Increasing Code blocksOption + Up Arrow key
Expand AllCommand + Shift + +
Collapse AllCommand + Shift + –
Expand Code blockCommand + +
Collapse Code blockCommand + –
Delete to end wordCommand + Delete
Delete to Word and startCommand + Backspace
Select till the code block endCommand + Shift + Option + ]
Select till the code block startsCommand + Shift + Option + [
Toggle Carnel or Snake CaseShift + Option + U

Navigation Control Shortcuts

ActionJetBrains AppCode Shortcuts
Go to ClassCommand + O
Go to FileCommand + Shift + O
Go to SymbolCommand + Option + Shift + O
Go back to the Previous Tool WindowF12
Go to EditorEsc
Hide Active or Last Active WindowShift + Esc
Next highlighted ErrorF2
Previous highlighted ErrorShift + F2
Go to the Top of the PageCommand + PageUp key
Go to the Bottom of the PageCommand + PageDown key
Go to LineCommand + L
Recent files PopupCommand + E
Select current fileOption + F1
Go to the Next TabCommand + Left Arrow key
Go to the Previous TabCommand + Right Arrow key
Go to DeclarationCommand + B
Go to Type DeclarationCommand + Shift + B
Navigate backCommand + Option + Left Arrow key
Navigate forwardCommand + Option + Right Arrow key
Go to the last edit locationCommand + Shift + Backspace
Go to super method or superclassCommand + U
Type HierarchyCommand + H
Method HierarchyCommand + Shift + H
Call HierarchyCommand + Option + H
Toggle BookmarkShift + F6
Toggle Bookmark with MnemonicOption + F3
Show BookmarksShift + F3
Show Navigation barCommand + Up Arrow key
Close Active Run or MessagesCommand + Shift + F4
Edit SourceF4
View SourceCommand + Down Arrow key
Show DiagramCommand + Shift + Option + U
Diagram PopupCommand + Option + U
File Structure PopupCommand + F12
Open Quick Definition LookupCommand + Y

Debugging Shortcuts

ActionJetBrains AppCode Shortcut keys
Run to CursorOption + F9
Step OutShift + F8
Step OverF8
Step IntoF7
Evaluate ExpressionOption + F8
Toggle BreakpointCommand + F8
View BreakpointsCommand + Shift + F8
Resume ProgramF9

Compile and Run Shortcuts

ActionJetBrains AppCode Shortcut keys
Build ProjectCommand + F9
RunCommand + R
DebugCommand + D
Select Configuration and RunCommand + Option + R
Select Configuration and DebugCommand + Option + D
Run Context Configuration from EditorCommand + Shift + R
Debug Context Configuration from EditorCommand + Shift + D

Find & Replace Shortcuts

ActionJetBrains AppCode Shortcut keys
FindCommand + F
ReplaceCommand + R
Find NextCommand + G
Find PreviousCommand + Shift + G
Find in PathCommand + Shift + F
Replace in PathCommand + Shift + R

Code Refactoring Shortcuts

ActionJetBrains AppCode Shortcut keys
CopyF5
MoveF6
RenameShift + F6
Change SignatureCommand + F6
InlineCommand + Option + N
Refactor this Quick ListCommand + T
Extract MethodCommand + Option + M
Extract FieldCommand + Option + F
Extract ParameterCommand + Option + P
Extract ConstantCommand + Option + C
Extract VariableCommand + Option + V

Other JetBrains AppCode Shortcuts

ActionJetBrains AppCode Shortcut keys
Find Usage in FileCommand + F7
Find UsageOption + F7
Highlight Usage in FileCommand + Shift + F7
Show UsageCommand + Option + F7
Commit Project to VCSCommand + K
Update Project from VCSCommand + T
View Recent ChangesOption + Shift + C
VCS Operations PopupCommand + V
Insert Live TemplateCommand + J

Apple Xcode can be seen as a 99% alternative to JetBrains AppCode. One reason is that you don’t need to convert anything to use AppCode. You can seamlessly transition from Xcode to AppCode. I would recommend taking a look at the Apple Xcode Shortcuts.

READ NEXT:

Back to top button