Vim plugin for checkimpcont, a tool that detects possibly misleading string literal concatenations in Python sources.
- First, please install the Python script checkimpcont.py.
- After that, put the Vim plugin script in your
.vim/ftplugin/python
directory. - Alternatively, you can use
pathogen
to install the plugin.
In the .vimrc
file, you can define the key mapping that invokes the check
function. For instance, to map it to F6, use the following:
let g:checkimpcont_map = <F6>
The default value is <Leader>C.
Public domain.