Skip to content

Commit 346d7bf

Browse files
committed
clear/show callsigs on BufWritePre/BufWritePost
1 parent a9ec7e2 commit 346d7bf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

autoload/jedi.vim

+5
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,11 @@ function! jedi#configure_call_signatures(...) abort
583583
autocmd InsertLeave <buffer> call jedi#clear_call_signatures()
584584
endif
585585

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+
586591
if g:jedi#show_call_signatures_delay > 0
587592
if has('timers')
588593
if g:jedi#show_call_signatures_modes =~# 'n'

0 commit comments

Comments
 (0)