Add option to show call signatures in command line

This commit is contained in:
Jacob Niehus
2014-10-19 14:35:11 -07:00
parent 0ce1af78b2
commit cfd71a6b54
5 changed files with 113 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ if g:jedi#auto_initialization
execute "nnoremap <silent> <buffer>".g:jedi#documentation_command." :call jedi#show_documentation()<CR>"
endif
if g:jedi#show_call_signatures == 1 && has('conceal')
if g:jedi#show_call_signatures > 0 && has('conceal')
call jedi#configure_call_signatures()
endif