parent
2fec415a5d
commit
ee4afdeedb
|
@ -149,7 +149,7 @@ function! airline#init#bootstrap()
|
||||||
call airline#parts#define_raw('file', '%f%m')
|
call airline#parts#define_raw('file', '%f%m')
|
||||||
call airline#parts#define_raw('path', '%F%m')
|
call airline#parts#define_raw('path', '%F%m')
|
||||||
call airline#parts#define('linenr', {
|
call airline#parts#define('linenr', {
|
||||||
\ 'raw': '%{g:airline_symbols.linenr}%4l',
|
\ 'raw': '%{g:airline_symbols.linenr}%l',
|
||||||
\ 'accent': 'bold'})
|
\ 'accent': 'bold'})
|
||||||
call airline#parts#define('maxlinenr', {
|
call airline#parts#define('maxlinenr', {
|
||||||
\ 'raw': '/%L%{g:airline_symbols.maxlinenr}',
|
\ 'raw': '/%L%{g:airline_symbols.maxlinenr}',
|
||||||
|
@ -213,9 +213,9 @@ function! airline#init#sections()
|
||||||
endif
|
endif
|
||||||
if !exists('g:airline_section_z')
|
if !exists('g:airline_section_z')
|
||||||
if airline#util#winwidth() > 79
|
if airline#util#winwidth() > 79
|
||||||
let g:airline_section_z = airline#section#create(['windowswap', 'obsession', '%3p%%'.spc, 'linenr', 'maxlinenr', spc.':%3v'])
|
let g:airline_section_z = airline#section#create(['windowswap', 'obsession', '%p%%'.spc, 'linenr', 'maxlinenr', ':%v'])
|
||||||
else
|
else
|
||||||
let g:airline_section_z = airline#section#create(['%3p%%'.spc, 'linenr', ':%3v'])
|
let g:airline_section_z = airline#section#create(['%p%%'.spc, 'linenr', ':%v'])
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
if !exists('g:airline_section_error')
|
if !exists('g:airline_section_error')
|
||||||
|
|
|
@ -43,9 +43,9 @@ describe 'init sections'
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'section z should be line numbers'
|
it 'section z should be line numbers'
|
||||||
Expect g:airline_section_z =~ '%3p%%'
|
Expect g:airline_section_z =~ '%p%%'
|
||||||
Expect g:airline_section_z =~ '%4l'
|
Expect g:airline_section_z =~ '%l'
|
||||||
Expect g:airline_section_z =~ '%3v'
|
Expect g:airline_section_z =~ '%v'
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should not redefine sections already defined'
|
it 'should not redefine sections already defined'
|
||||||
|
|
Loading…
Reference in New Issue