Merge branch 'pull-1075' into develop

This commit is contained in:
ZyX 2014-09-16 20:08:51 +04:00
commit 558b608c94
1 changed files with 17 additions and 3 deletions

View File

@ -10,7 +10,21 @@ from powerline.segments.vim import window_cached
@window_cached
def current_tag(pl):
def current_tag(pl, flags='s'):
'''Return tag that is near the cursor.
:param str flags:
Specifies additional properties of the displayed tag. Supported values:
* s - display complete signature
* f - display the full hierarchy of the tag
* p - display the raw prototype
More info in the `official documentation`_ (search for
tagbar#currenttag”).
.. _`official documentation`: https://github.com/majutsushi/tagbar/blob/master/doc/tagbar.txt
'''
if not int(vim.eval('exists(":Tagbar")')):
return
return vim.eval('tagbar#currenttag("%s", "")')
return None
return vim.eval('tagbar#currenttag("%s", "", "{0}")'.format(flags))