mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-02-21 18:38:56 +08:00
Merge pull request #2462 from KSR-Yasuda/feature/CustomSpellCheckCommand
Custom Spell Check Command Support
This commit is contained in:
commit
4b96f58902
@ -66,7 +66,7 @@ endfunction
|
|||||||
|
|
||||||
function! airline#parts#spell()
|
function! airline#parts#spell()
|
||||||
let spelllang = g:airline_detect_spelllang ? printf(" [%s]", toupper(substitute(&spelllang, ',', '/', 'g'))) : ''
|
let spelllang = g:airline_detect_spelllang ? printf(" [%s]", toupper(substitute(&spelllang, ',', '/', 'g'))) : ''
|
||||||
if g:airline_detect_spell && &spell
|
if g:airline_detect_spell && (&spell || (exists('g:airline_spell_check_command') && eval(g:airline_spell_check_command)))
|
||||||
let winwidth = airline#util#winwidth()
|
let winwidth = airline#util#winwidth()
|
||||||
if winwidth >= 90
|
if winwidth >= 90
|
||||||
return g:airline_symbols.spell . spelllang
|
return g:airline_symbols.spell . spelllang
|
||||||
|
Loading…
x
Reference in New Issue
Block a user