1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 22:50:06 +08:00

fix(iedit): remove deepcopy

This commit is contained in:
wsdjeg 2022-04-08 18:05:17 +08:00
parent 8b0626e63f
commit e7344bab8b

View File

@ -803,7 +803,7 @@ endfunction
function! SpaceVim#plugins#iedit#paser(begin, end, symbol, expr) abort
let s:cursor_stack = []
call s:parse_symbol(a:begin, a:end, a:symbol, a:expr, 1)
return [deepcopy(s:cursor_stack), s:index]
return [s:cursor_stack, s:index]
endfunction
" vim:set et sw=2 cc=80 nowrap: