mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 10:30:05 +08:00
15 lines
344 B
VimL
15 lines
344 B
VimL
|
|
||
|
function! indent_blankline#Refresh()
|
||
|
try
|
||
|
lua require("indent_blankline").refresh()
|
||
|
catch /E12/
|
||
|
return
|
||
|
catch
|
||
|
if g:indent_blankline_debug
|
||
|
echohl Error
|
||
|
echom 'indent-blankline encountered an error on refresh: ' . v:exception
|
||
|
echohl None
|
||
|
endif
|
||
|
endtry
|
||
|
endfunction
|