Skip to content

Instantly share code, notes, and snippets.

@eduardolfalcao
Last active July 14, 2020 18:56
Show Gist options
  • Save eduardolfalcao/eda909c246a392211c1ddb903240a3c4 to your computer and use it in GitHub Desktop.
Save eduardolfalcao/eda909c246a392211c1ddb903240a3c4 to your computer and use it in GitHub Desktop.
shift+v: select lines
y: copy selected lines
d: delete selected lines
p: paste
u: undo
insert (once): add text
insert (twice): replace
# find occurence of foo in all lines and replace by bar
:%s/foo/bar/g
# go to line
:lineNumber
# open different files in tabs
:tabe <filepath>
gt # go to next tab
gT # go to previous tab
{i}gt # go to tab in position i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment