Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. hjkl = left down up right
  2.  
  3. [number?] dd = delete a line also copys it to clipboard
  4.  
  5. G = move to the very bottom
  6.  
  7. gg = move to the very top
  8.  
  9. { = go up an empty line
  10.  
  11. } = go down an empty line
  12.  
  13. [number]hjkl = move that amount of numbers in any direction
  14.  
  15. u = undo
  16.  
  17. ctrl r = redo
  18.  
  19. ctrl v = multicursor
  20.  
  21. . = redo the last command
  22.  
  23. yy = copy to clipboard
  24.  
  25. p / P = paste below / Paste above
  26.  
  27. w / W = next word / Next word after space
  28.  
  29. b / B = go back a word / back a word after space
  30.  
  31. t[alphanumeric char] = go before alphanumeric value on the line
  32.  
  33. f[alphanumeric char] = go ontop of alphanumeric value
  34.  
  35. % = will take you to the closing alpha keys like {[<]>}
  36.  
  37. c[w] = change word
  38.  
  39. d[w] = delete a word
  40.  
  41. dd / D = delete a line / delete from cursor to end of line
  42.  
  43. C = delete from cursor and put you in imput mode
  44.  
  45. C/D[t][}] = will delete till that character ex () => { foo bar }
  46.  
  47. * = find word where the cursor is
  48.  
  49. ; = go to next
  50.  
  51. zz = center to where the cursos is of line
  52.  
  53. i / I = input where the cursor is / input to the start of the line
  54.  
  55. x = delete letter from where the cursor is over the charcters
  56.  
  57. << / >> = tab left / right
  58.  
  59. q[key map macro to] / @[key macros mapped to] = repeat an action / use macro
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement