Skip to content
This repository was archived by the owner on Jan 12, 2019. It is now read-only.

Commit 9ba65bb

Browse files
voldmarLokaltog
authored andcommitted
Add tagbar:fullcurrenttag segment
Closes #180.
1 parent 3fc4ba9 commit 9ba65bb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

autoload/Powerline/Colorschemes/default.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ let g:Powerline#Colorschemes#default#colorscheme = Pl#Colorscheme#Init([
8484
\ 'i': ['brightestred', ['bold']],
8585
\ }),
8686
\
87-
\ Pl#Hi#Segments(['currenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], {
87+
\ Pl#Hi#Segments(['currenttag', 'fullcurrenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], {
8888
\ 'n': ['gray8', 'gray2'],
8989
\ 'i': ['mediumcyan', 'darkestblue'],
9090
\ }),

autoload/Powerline/Colorschemes/skwp.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ let g:Powerline#Colorschemes#skwp#colorscheme = Pl#Colorscheme#Init([
105105
\ 'i': ['base03', ['bold']],
106106
\ }),
107107
\
108-
\ Pl#Hi#Segments(['currenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], {
108+
\ Pl#Hi#Segments(['currenttag', 'fullcurrenttag', 'fileformat', 'fileencoding', 'pwd', 'filetype', 'rvm:string', 'rvm:statusline', 'virtualenv:statusline', 'charcode', 'currhigroup'], {
109109
\ 'n': ['gray5', 'gray2'],
110110
\ 'i': ['mediumcyan', 'base02'],
111111
\ }),
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
let g:Powerline#Segments#tagbar#segments = Pl#Segment#Init(['tagbar',
22
\ (exists(':Tagbar') > 0),
33
\
4-
\ Pl#Segment#Create('currenttag', '%{tagbar#currenttag("%s", "")}', Pl#Segment#Modes('!N'))
4+
\ Pl#Segment#Create('currenttag', '%{tagbar#currenttag("%s", "")}', Pl#Segment#Modes('!N')),
5+
\ Pl#Segment#Create('fullcurrenttag', '%{tagbar#currenttag("%s", "", "f")}', Pl#Segment#Modes('!N'))
56
\ ])

0 commit comments

Comments
 (0)