Open hseg opened 4 years ago
Consider
if foo() let l:bar = 'hello' endif let l:baz = l:bar . ' world'
If foo() fails, vim will error out on the assignmant of l:baz complaining l:bar is undefined.
foo()
l:baz
l:bar
Consider
If
foo()
fails, vim will error out on the assignmant ofl:baz
complainingl:bar
is undefined.