diff --git a/autoload/Powerline/Colorschemes/default.vim b/autoload/Powerline/Colorschemes/default.vim index ab02a3fd..4d4c7fa8 100644 --- a/autoload/Powerline/Colorschemes/default.vim +++ b/autoload/Powerline/Colorschemes/default.vim @@ -84,7 +84,7 @@ let g:Powerline#Colorschemes#default#colorscheme = Pl#Colorscheme#Init([ \ 'i': ['brightestred', ['bold']], \ }), \ - \ Pl#Hi#Segments(['currenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], { + \ Pl#Hi#Segments(['currenttag', 'fullcurrenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], { \ 'n': ['gray8', 'gray2'], \ 'i': ['mediumcyan', 'darkestblue'], \ }), diff --git a/autoload/Powerline/Colorschemes/skwp.vim b/autoload/Powerline/Colorschemes/skwp.vim index 2819d1de..798caa44 100644 --- a/autoload/Powerline/Colorschemes/skwp.vim +++ b/autoload/Powerline/Colorschemes/skwp.vim @@ -105,7 +105,7 @@ let g:Powerline#Colorschemes#skwp#colorscheme = Pl#Colorscheme#Init([ \ 'i': ['base03', ['bold']], \ }), \ - \ Pl#Hi#Segments(['currenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], { + \ Pl#Hi#Segments(['currenttag', 'fullcurrenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], { \ 'n': ['gray5', 'gray2'], \ 'i': ['mediumcyan', 'base02'], \ }), diff --git a/autoload/Powerline/Segments/tagbar.vim b/autoload/Powerline/Segments/tagbar.vim index 42a04256..5db8cd95 100644 --- a/autoload/Powerline/Segments/tagbar.vim +++ b/autoload/Powerline/Segments/tagbar.vim @@ -1,5 +1,6 @@ let g:Powerline#Segments#tagbar#segments = Pl#Segment#Init(['tagbar', \ (exists(':Tagbar') > 0), \ - \ Pl#Segment#Create('currenttag', '%{tagbar#currenttag("%s", "")}', Pl#Segment#Modes('!N')) + \ Pl#Segment#Create('currenttag', '%{tagbar#currenttag("%s", "")}', Pl#Segment#Modes('!N')), + \ Pl#Segment#Create('fullcurrenttag', '%{tagbar#currenttag("%s", "", "f")}', Pl#Segment#Modes('!N')) \ ])