Lines Matching refs:caught
1912 v:dying Normally zero. When a deadly signal is caught it's set to
1913 one. When multiple signals are caught the number increases.
1918 < Note: if another deadly signal is caught when v:dying is one,
1967 v:exception The value of the exception most recently caught and not
1973 : echo "caught " .. v:exception
1975 < Output: "caught oops".
2411 v:throwpoint The point where the exception most recently caught and not
13514 can be caught as if it were thrown by a |:throw|
13524 error exception is not caught, always beginning with
13535 been caught by a previous ":catch". Otherwise, these
13537 When {pattern} is omitted all errors are caught.
13580 If the exception is not caught, the command processing
13583 :try | throw "oops" | catch /^oo/ | echo "caught" | endtry
13762 Exceptions can be caught or can cause cleanup code to be executed. You can
13791 appropriate actions. Exceptions from the try block may be caught. Exceptions
13805 ":catch" commands is thrown in the try block, the exception is not caught by
13809 the ":endtry" are not executed and the exception might be caught elsewhere,
13817 exception might, however, be caught elsewhere, see |try-nesting|.
13823 clause is propagated and can be caught elsewhere, see |try-nesting|.
13872 script file. Then you see when an exception is thrown, discarded, caught, or
13891 command. Unless it is caught there, the expression evaluation is abandoned.
13929 Exceptions can be caught by a try conditional with one or more |:catch|
13930 commands, see |try-conditionals|. The values to be caught by each ":catch"
13932 gets executed when a matching exception is caught.
13970 exception most recently caught as long it is not finished.
13977 : echo 'Nothing caught'
14004 Nothing caught
14007 Nothing caught
14018 An exception that is not caught by a try conditional can be caught by
14034 clause is executed. The exception is then caught by the outer try
14038 You can catch an exception and throw a new one to be caught elsewhere from the
14106 to exceptions. When not caught, they terminate the script after the finally
14419 command takes place. If an exception is thrown and not caught in the sequence
14435 autocommand abandons the ":write". The exception is then caught and the
14444 is thrown that can be caught by the caller of the command.
14653 be caught only from an active try conditional. If you want an immediate
14675 Syntax errors in the exception handling commands are never caught by any of
14691 : echo 'outer catch-all caught "' . v:exception . '"'
14698 outer catch-all caught "Vim(catch):E54: Unmatched \("