Last active
September 6, 2019 22:08
-
-
Save ssledz/2f831d448865e76554ce99d8aa55ed31 to your computer and use it in GitHub Desktop.
This file contains 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
# legend | |
^ means ctrl | |
# ctags | |
:!ctags *.m | |
:ta[g][!] tagstring # edit the file containing tagstring | |
:po[p][!] # pop the tagstack by one element | |
:tags | |
^] # move to the location under the coursor | |
^T # return to the previous location | |
# macro (http://vim.wikia.com/wiki/Macros) | |
q<letter><commands>q # record macro | |
<number>@<letter> # execute macro number of times | |
@@ # execute macro again |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment