1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 10:30:05 +08:00
SpaceVim/bundle/indent-blankline.nvim/autoload/indent_blankline.vim

15 lines
344 B
VimL
Raw Normal View History

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