-
Notifications
You must be signed in to change notification settings - Fork 112
Additional Examples
Linwei edited this page Oct 14, 2016
·
2 revisions
:AsyncRun pandoc --output $(VIM_FILENOEXT).pdf %:p
:AsyncRun chrome %
:AsyncRun C:\Program\ Files\ (x86)\Google\Chrome\Application\chrome.exe %
Updating tags is very slow for large projects. Previously, there is nothing you can do while waiting ctags running. And now with AsyncRun, we can continue editing / navigating our source code while running the ctags:
:AsyncRun ctags -R --fields=+S .
:AsyncRun ctags -R -f %:p:h/ctags.out --fields=+iaS %:p:h
:AsyncRun ctags -R -f $(VIM_FILEDIR)/ctags.out --fields=+iaS %:p:h
(NOTE: The last two commands will be expanded as the same thing)