You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function! Bar(argBar1, argBar2)
let c = 6
return a:argBar1.' '.a:argBar2 ##stop here
endfunction
function! Foo(argFoo1, argFoo2)
let c = 5
let b = Bar(a:argFoo1, a:argFoo2)
echo b.' '.c
endfunction
Stopping on Bar function after let c = 6
breakadd func 2 Bar
executing BPDUp
vim-breakpts fails with:
c: (ERROR): Vim(let):E121: Variable sin definir: a:level in function Foo[2]..Bar[2]..breakpts#ToJson, en la línea 3
After
remote_send
backtrace level is restarted to topmost so variables from lower level are not avaliable.Maybe a vim editor fix is needed. Investigate
The text was updated successfully, but these errors were encountered: