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:
parent
8b0626e63f
commit
e7344bab8b
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user