PHPStorm Flashcards
Default keyboard shortcuts for PHPStorm by Jetbrains. Includes all shortcuts on the default keymap PDF for version 8.0.
Ctrl + Space
Basic code completion (the name of any class, method or variable)
Ctrl + Shift + Enter
Complete statement
Ctrl + P
Parameter info (within method call arguments)
Ctrl + Q
Quick documentation lookup
Ctrl + mouse over code
Brief Info
Ctrl + F1
Show descriptions of error or warning at caret
Alt + Insert
Generate code… (Getters, Setters, Constructors)
Ctrl + O
Override methods
Ctrl + I
Implement methods
Ctrl + Alt + T
Surround with… (if..else, try..catch, for, etc.)
Ctrl + /
Comment/uncomment with line comment
Ctrl + Shift + /
Comment/uncomment with block comment
Ctrl + W
Select successively increasing code blocks
Ctrl + Shift + W
Decrease current selection to previous state
Alt + Q
Context info
Alt + Enter
Show intention actions and quick-fixes
Ctrl + Alt + L
Reformat code
Ctrl + Alt + I
Auto-indent line(s)
Tab / Shift + Tab
Indent/unindent selected lines
Ctrl + X or Shift + Delete
Cut current line or selected block to clipboard
Ctrl + C or Ctrl + Insert
Copy current line or selected block to clipboard
Ctrl + V or Shift + Insert
Paste from clipboard
Ctrl + Shift + V
Paste from recent buffers…
Ctrl + D
Duplicate current line or selected block