Hi!
First thanks for this amazing bar.
Having a question: is there a way to reload the lightline's config without having to quit/launch (n)vim ?
Calling the following three functions will reload the config.
lightline#init()lightline#colorscheme()lightline#update()For example:
command! LightlineReload call LightlineReload()
function! LightlineReload()
call lightline#init()
call lightline#colorscheme()
call lightline#update()
endfunction
Working, thanks!
Hi,
These functions does not seem to reload "line's theme". If i change the background setting and/or the colorscheme, and then call LightlineReload, it does update its colors.
Am i missing something?
@nikaro Refer to #424.
Most helpful comment
Calling the following three functions will reload the config.
lightline#init()lightline#colorscheme()lightline#update()For example: