Guest User

Untitled

a guest
May 6th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. h1. Sublime Text 2 - Useful Shortcuts (Ubuntu)
  2.  
  3. h2. General
  4.  
  5. | *Ctrl+KB* | toggle side bar |
  6. | *Ctrl+Shift+P* | command palette |
  7. | *Ctrl+`* | python console |
  8. | *Ctrl+N* | new file |
  9.  
  10. h2. Editing
  11.  
  12. | *Ctrl+L* | select line (repeat select next lines) |
  13. | *Ctrl+D* | select word (repeat select others occurrences in context for multiple editing) |
  14. | *Ctrl+Shift+M* | select content into brackets |
  15. | *Ctrl+Backspace* | delete previous word |
  16. | *Ctrl+Delete* | delete next word |
  17. | *Ctrl+Shift+K* | delete line |
  18. | *Ctrl+KK or Ctrl+Shift+Delete* | delete from cursor to end of line |
  19. | *Ctrl+K+Backspace or Ctrl+Shift+Backspace* | delete from cursor to start of line |
  20. | *Ctrl+Shift+D* | duplicate line(s) |
  21. | *Ctrl+J* | join lines |
  22. | *Ctrl+KU* | upper case |
  23. | *Ctrl+KL* | lower case |
  24. | *Ctrl+ /* | comment |
  25. | *Ctrl+Shift+/* | block comment |
  26. | *Ctrl+Z* | undo |
  27. | *Ctrl+Y* | redo or repeat |
  28. | *Ctrl+U* | soft undo (movement undo) |
  29. | *Ctrl+Shift+V* | past and ident |
  30. | *Ctrl+Space* | autocomplete |
  31.  
  32. | *Ctrl+M* | jump to matching brackets |
  33.  
  34. h2. Navigation/Goto Anywhere
  35.  
  36. | *Ctrl+P* | goto anyway. Search files by name in your project. |
  37. | *Ctrl+R* | goto symbol(functions and classes) in the file. Same as *Ctrl+P*, then type *@*|
  38. | *Ctrl+;* | goto word in current file. Same as *Ctrl+P*, then type *#*|
  39. | *Ctrl+G* | goto line in current file. Same as *Ctrl+P*, then type *:*|
  40.  
  41. h2. Find/Replace
  42.  
  43. | *Ctrl+F* | find |
  44. | *Ctrl+H* | replace |
  45. | *Ctrl+Shift+F* | find in files |
  46. | *Ctrl+I* | incremental search |
  47. | *F3* | find next |
  48. | *Ctrl+Shift+H* | replace selected |
  49. | *Ctrl+E* | copy selection to find buffer |
  50. | *Ctrl+Shift+E* | copy selection to replace buffer |
  51.  
  52. h2. Splits/Tabs
  53.  
  54. | *Alt+Shift+1* | single column |
  55. | *Alt+Shift+2/3/4* | two/three/four columns (vertical split) |
  56. | *Alt+Shift+5* | grid (4 groups) |
  57. | *Alt+Shift+8/9* | two/three rows (horizontal split) |
  58. | *Ctrl+[1,2,3,4]* | focus group |
  59. | *Ctrl+Shift+[1,2,3,4]* | move file to group |
  60. | *Ctrl+[1,2,3...]* | select tab |
  61.  
  62. h2. Bookmarks
  63.  
  64. | *Ctrl+F2* | toggle bookmark |
  65. | *F2* | next bookmark |
  66. | *Shift+F2* | previous bookmark |
  67. | *Ctrl+Shift+F2* | clear bookmarks |
Add Comment
Please, Sign In to add comment