November 2018
Beginner
330 pages
7h 21m
English
You probably don't want to have to manually run the ctags -R . command every time you make changes to the code. The simplest way to address this is to add the following to your .vimrc file:
" Regenerate tags when saving Python files.autocmd BufWritePost *.py silent! !ctags -R &
The preceding snippet runs ctags -R every time you save a Python file.