mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 09:40:04 +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
|
function! SpaceVim#plugins#iedit#paser(begin, end, symbol, expr) abort
|
||||||
let s:cursor_stack = []
|
let s:cursor_stack = []
|
||||||
call s:parse_symbol(a:begin, a:end, a:symbol, a:expr, 1)
|
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
|
endfunction
|
||||||
|
|
||||||
" vim:set et sw=2 cc=80 nowrap:
|
" vim:set et sw=2 cc=80 nowrap:
|
||||||
|
Loading…
Reference in New Issue
Block a user