vim/ftplugin/python.vim

12 lines
372 B
VimL
Raw Normal View History

2018-12-12 09:02:12 +00:00
set softtabstop=8
set tabstop=4
set shiftwidth=4
set textwidth=79
set foldmethod=indent
set foldnestmax=1
nnoremap <silent> <buffer> <F5> :call SaveAndExecute('python')<CR>
command! CTagsPython !ctags -R --fields=+l --languages=python --python-kinds=-iv -f ./.tags-py $(python -c "import os, sys; print(' '.join('{}'.format(d) for d in sys.path if os.path.isdir(d)))")