We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9ec7e2 commit 346d7bfCopy full SHA for 346d7bf
autoload/jedi.vim
@@ -583,6 +583,11 @@ function! jedi#configure_call_signatures(...) abort
583
autocmd InsertLeave <buffer> call jedi#clear_call_signatures()
584
endif
585
586
+ if g:jedi#show_call_signatures_modes =~# 'n'
587
+ autocmd BufWritePre <buffer> call jedi#clear_call_signatures()
588
+ autocmd BufWritePost <buffer> call jedi#show_call_signatures()
589
+ endif
590
+
591
if g:jedi#show_call_signatures_delay > 0
592
if has('timers')
593
if g:jedi#show_call_signatures_modes =~# 'n'
0 commit comments