Skip to content

Instantly share code, notes, and snippets.

@j1g54w1337
Last active February 6, 2022 17:20
Show Gist options
  • Select an option

  • Save j1g54w1337/65aadcaaf90434871e8f5c546ebd16d7 to your computer and use it in GitHub Desktop.

Select an option

Save j1g54w1337/65aadcaaf90434871e8f5c546ebd16d7 to your computer and use it in GitHub Desktop.
vim tips and trick

Vim tips and tricks

Delete word

dw

Delete from cursor position to end of line

d$ or D

Delete all lines from current cursor position to below

:+,$d

Delete next X lines (in this example 2 lines)

:+,+2d

Change word

cw

Jump to end of line and go into INSERT mode

SHIFT D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment