better support for in call displays (bugfixes)

This commit is contained in:
David Halter
2012-10-13 00:15:04 +02:00
parent 15426a3d51
commit 48ab6c613f
2 changed files with 13 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ if g:jedi#show_function_definition == 1 && has('conceal')
syn match jediFatSymbol "*" contained conceal
syn match jediFat "\*[^*]\+\*" contained contains=jediFatSymbol
syn match jediSpace "\v[ ]+( )@=" contained
exe 'syn match jediFunction "'.l1.'" contains=jediIgnore,jediFat,jediSpace'
exe 'syn match jediFunction "'.l1.'" keepend extend contains=jediIgnore,jediFat,jediSpace'
hi def link jediIgnore Ignore
hi def link jediFatSymbol Ignore
@@ -31,5 +31,4 @@ if g:jedi#show_function_definition == 1 && has('conceal')
syn region pythonRawString
\ start=+[uU]\=[rR]\z('''\|"""\)+ end="\z1" keepend
\ contains=pythonSpaceError,pythonDoctest,@Spell,jediFunction
endif