aboutsummaryrefslogtreecommitdiff
path: root/plugin/jedi.vim
blob: dca883830fdd12d55c244f167425d8e1b4848699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" JEDI: ==============================================================================================================
augroup JEDI
    if has("python") || has('python3')
        let g:jedi#completions_enabled        = 0 " we do not need completions, because we have YouCompleteMe
        let g:jedi#show_call_signatures       = 1 " which sadly does not support signatures like jedi
        let g:jedi#show_call_signatures_delay = 0
        let g:jedi#auto_vim_configure         = 0
        let g:pymode_rope                     = 0 " https://github.com/davidhalter/jedi-vim/issues/163
        " autocmd FileType python jedi.preload_module('os', 'sys', 'math')
        " let g:pymode_options_max_line_length          = 120
        " let g:syntastic_python_flake8_args='--ignore=F821,E302,E501,E241,E301'

        packadd jedi-vim
    endif " has("python")
augroup END
..