Guest User

Untitled

a guest
Aug 24th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. Tabs and Windows
  2. ================
  3. **Function** | **Shortcut**
  4. -------- | --------
  5. Previous Tab | `⌘`+ `Left Arrow`
  6. Next Tab | `⌘`+ `Right Arrow`
  7. Go to Tab | `⌘` + `Number`
  8. Go to Window | `⌘` + `Option` + `Number`
  9. Go to Split Pane by Direction | `⌘` + `Option` + `Arrow`
  10. Go to Split Pane by Order of Use | `⌘` + `]` , `⌘` + `[`
  11. Split Window Horizontally (same profile) | `⌘` + `D`
  12. Split Window Vertically (same profile) | `⌘` + `d`
  13. Split Window Horizontally (new profile) | `Option` + `⌘` + `H`
  14. Split Window Vertically (new profile) | `Option` + `⌘` + `V`
  15. Set Mark | `⌘` + `M`
  16. Jump to Mark | `⌘` + `J`
  17.  
  18. Basic Moves
  19. ===========
  20. **Function** | **Shortcut**
  21. -------- | --------
  22. Move back one character | `Ctrl` + `b`
  23. Move forward one character | `Ctrl` + `f`
  24. Delete current character | `Ctrl` + `d`
  25. Delete previous character | `Backspace`
  26. Undo | `Ctrl` + `-`
  27.  
  28. Moving Faster
  29. =============
  30. **Function** | **Shortcut**
  31. -------- | --------
  32. Move to the start of line | `Ctrl` + `a`
  33. Move to the end of line | `Ctrl` + `e`
  34. Move forward a word | `Option` + `f`
  35. Move backward a word | `Option` + `b`
  36. Clear the screen | `⌘` + `k`
  37.  
  38. Cut and Paste
  39. =============
  40. **Function** | **Shortcut**
  41. -------- | --------
  42. Cut from cursor to the end of line | `Ctrl` + `k`
  43. Cut from cursor to the end of word | `Option` + `d`
  44. Cut from cursor to the start of word | `Option` + `Backspace`
  45. Cut from cursor to previous whitespace | `Ctrl` + `w`
  46. Paste the last cut text | `Ctrl` + `w`
  47. Loop through and paste previously cut text | `Option` + `y`
  48. Loop through and paste the last argument of previous commands | `Option` + `.`
  49.  
  50. Search the Command History
  51. ==========================
  52. **Function** | **Shortcut**
  53. -------- | --------
  54. Search as you type | `Ctrl` + `r` and type the search term; Repeat `Ctrl` + `r` to loop through result
  55. Search the last remembered search term | `Ctrl` + `r` twice
  56. End the search at current history entry | `Ctrl` + `y`
  57. Cancel the search and restore original line | `Ctrl` + `g`
Add Comment
Please, Sign In to add comment