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
This commit is contained in:
Aulddays
2016-12-04 21:59:49 +08:00
committed by perry
parent f191ccd6fb
commit a69e6b8cc0

View File

@@ -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,