Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. ## WebStorm keyboard shortcuts
  2. ###### List of helpful keyboard shortcuts for IntelliJ WebStorm 8 running on OSX
  3.  
  4. ```
  5. Alt+Up Select text blocks in incrementing size
  6. Alt+Down Deselect text blocks in decreasing size
  7. ```
  8. ```
  9. Shift+Shift Search Everywhere pop-up window
  10. ```
  11. ```
  12. Shift-Cmd+F Search entire project (highlight text to autofill search query)
  13. ```
  14. ```
  15. Shift-Alt+Click Create multiple carets
  16. ```
  17. ```
  18. Cmd+D Duplicate current line or selection
  19. Cmd+Delete Remove current line or selection
  20. Shift+Enter Add new line without breaking current line
  21. Cmd+Enter Add new line without moving caret
  22. ```
  23. ```
  24. Alt+Tab Move cursor between documents in split view
  25. ```
  26. ```
  27. Cmd+] Cycle backward to previous edit
  28. Cmd+[ Cycle forward to next edit
  29. ```
  30. ```
  31. fn+Up Jump up to next view in document
  32. fn+Down Jump down to next view in document
  33. ```
  34. ```
  35. Cmd+1 Show/Hide Sidebar File Menu
  36. ```
  37. ```
  38. Shift+Esc Hide the bottom tray
  39. ```
  40. ```
  41. Shift-Cmd+G Show/Hide Minimap (using CodeGlance plugin)
  42. ```
  43. ```
  44. Alt+F12 Show Console in Tray
  45. ```
  46. ```
  47. Cmd+Shift+G Open Line in Github
  48. ```
  49.  
  50. #### For Highlighted Text
  51.  
  52. ```
  53. Ctrl+G Highlight next instance of current selection (adds caret)
  54. Cmd-Ctrl+G Highlight all instances of current selections (adds carets)
  55. Shift-Ctrl+G Unselect previous highlight
  56. ```
  57. ```
  58. Cmd-Alt+J Wrap selection in new tag (works mostly with HTML)
  59. ```
  60. ```
  61. Shift-Ctrl+J Turn selection into single line
  62. ```
  63. ```
  64. Cmd + / Comment with line comment
  65. Cmd-Alt + / Comment with block comment
  66. ```
  67. ```
  68. Ctrl-Alt+I Auto-Indent Lines
  69. Cmd-Alt+L Reformat Code (applies alignment settings)
  70. ```
  71. ```
  72. Shift-Cmd+Up Move selection up 1 line
  73. Shift-Cmd+Down Move selection down 1 line
  74. ```
  75. ```
  76. Tab Indent selection
  77. Shift+Tab Unindent selection
  78. ```
  79.  
  80. #### Misc
  81.  
  82. ```kbd
  83. Alt+Click Close all other tabs except clicked tab
  84. ```
  85. ```
  86. Shift+F6 Rename... (Rename the selected symbol and correct all references)
  87. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement