From a69e6b8cc022d1f2ef65333c2e7b81f2f13cd7f9 Mon Sep 17 00:00:00 2001 From: Aulddays Date: Sun, 4 Dec 2016 21:59:49 +0800 Subject: [PATCH] Change default g:jedi#call_signature_escape to avoid collision Syntax highlighting on chars in g:jedi#call_signature_escape may break the funciton parameter hint from jedi-vim. Change its default value to non python syntax symbols to reduce chance of collision --- autoload/jedi.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/jedi.vim b/autoload/jedi.vim index 00c5754..7dfa782 100644 --- a/autoload/jedi.vim +++ b/autoload/jedi.vim @@ -27,7 +27,7 @@ let s:default_settings = { \ 'documentation_command': "'K'", \ 'show_call_signatures': 1, \ 'show_call_signatures_delay': 500, - \ 'call_signature_escape': "'=`='", + \ 'call_signature_escape': "'?!?'", \ 'auto_close_doc': 1, \ 'max_doc_height': 30, \ 'popup_select_first': 1,