-
-
Save eduardolfalcao/eda909c246a392211c1ddb903240a3c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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