mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-22 13:26:46 +08:00
parent
68f5f1e50d
commit
07ac69570b
|
@ -183,13 +183,13 @@ values):
|
||||||
\ 'no' : 'N',
|
\ 'no' : 'N',
|
||||||
\ 'R' : 'R',
|
\ 'R' : 'R',
|
||||||
\ 'Rv' : 'R',
|
\ 'Rv' : 'R',
|
||||||
\ 'v' : 'V',
|
|
||||||
\ 'V' : 'V',
|
|
||||||
\ '' : 'V',
|
|
||||||
\ 's' : 'S',
|
\ 's' : 'S',
|
||||||
\ 'S' : 'S',
|
\ 'S' : 'S',
|
||||||
\ '' : 'S',
|
\ '' : 'S',
|
||||||
\ 't' : 'T',
|
\ 't' : 'T',
|
||||||
|
\ 'v' : 'V',
|
||||||
|
\ 'V' : 'V',
|
||||||
|
\ '' : 'V',
|
||||||
\ }
|
\ }
|
||||||
<
|
<
|
||||||
* define the set of filename match queries which excludes a window from having
|
* define the set of filename match queries which excludes a window from having
|
||||||
|
@ -206,7 +206,7 @@ values):
|
||||||
let g:airline_exclude_preview = 0
|
let g:airline_exclude_preview = 0
|
||||||
<
|
<
|
||||||
* disable the Airline customization for selective windows (this is a
|
* disable the Airline customization for selective windows (this is a
|
||||||
window-local variable so you can disable it for only some windows) >
|
window-local variable so you can disable it per-window) >
|
||||||
let w:airline_disabled = 1
|
let w:airline_disabled = 1
|
||||||
|
|
||||||
* Do not draw separators for empty sections (only for the active window) >
|
* Do not draw separators for empty sections (only for the active window) >
|
||||||
|
@ -220,6 +220,9 @@ values):
|
||||||
Set this to one, if you experience a sluggish Vim: >
|
Set this to one, if you experience a sluggish Vim: >
|
||||||
let g:airline_highlighting_cache = 0
|
let g:airline_highlighting_cache = 0
|
||||||
<
|
<
|
||||||
|
* disable airline on FocusLost autocommand (e.g. when Vim loses focus): >
|
||||||
|
let g:airline_focuslost_inactive = 1
|
||||||
|
<
|
||||||
==============================================================================
|
==============================================================================
|
||||||
COMMANDS *airline-commands*
|
COMMANDS *airline-commands*
|
||||||
|
|
||||||
|
|
|
@ -106,7 +106,9 @@ function! s:airline_toggle()
|
||||||
autocmd TerminalOpen * call <sid>on_colorscheme_changed()
|
autocmd TerminalOpen * call <sid>on_colorscheme_changed()
|
||||||
endif
|
endif
|
||||||
" Set all statuslines to inactive
|
" Set all statuslines to inactive
|
||||||
autocmd FocusLost * call airline#update_statusline_inactive(range(1, winnr('$')))
|
autocmd FocusLost * if get(g:, 'airline_focuslost_inactive', 0)|
|
||||||
|
\ call airline#update_statusline_inactive(range(1, winnr('$')))|
|
||||||
|
\ endif
|
||||||
" Refresh airline for :syntax off
|
" Refresh airline for :syntax off
|
||||||
autocmd SourcePre */syntax/syntax.vim
|
autocmd SourcePre */syntax/syntax.vim
|
||||||
\ call airline#extensions#tabline#buffers#invalidate()
|
\ call airline#extensions#tabline#buffers#invalidate()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user