Are any of the below "goto" like constructs possible? If so, how?
- function/procedure exit
- loop break
- loop continue
--jeroen
there's the :return command, which does just that.- function/procedure exit
The closest thing I can think of is using :error to intentionally stop everything within a ":do", and handle it further in "on-error", but then again, that's more like try...catch.- loop break
AFAIK, nope.- loop continue