1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 23:49:19 +08:00

fix(highlight): update highlight after toggle_item

This commit is contained in:
wsdjeg 2022-04-08 17:33:45 +08:00
parent c8867113c3
commit 8b0626e63f

View File

@ -340,6 +340,7 @@ endfunction
" key binding: Tab toggle_item {{{
function! s:toggle_item() abort
let s:cursor_stack[s:index].active = s:cursor_stack[s:index].active ? 0 : 1
call s:update_highlight()
endfunction
" }}}