dotfiles/vim/.vim/ftplugin/python.vim

18 lines
522 B
VimL
Raw Normal View History

2018-11-20 15:13:51 +01:00
" Python settings
" Shortcuts
imap <leader>ifm if<Space>__name__<Space>==<Space>'__main__':<CR>
2018-11-20 15:13:51 +01:00
" Compiling
map <C-c><C-c> <Esc>:!clear; python %<CR><CR>
2018-11-20 15:13:51 +01:00
" Use the below highlight group when displaying bad whitespace is desired.
highlight BadWhitespace ctermbg=red guibg=red
" Display tabs at the beginning of a line in Python mode as bad.
au BufRead,BufNewFile *.py,*.pyw match BadWhitespace /^\t\+/
" Make trailing whitespace be flagged as bad.
au BufRead,BufNewFile *.py,*.pyw,*.c,*.h match BadWhitespace /\s\+$/