Lines Matching refs:interrupt
2596 debugbreak({pid}) Number interrupt process being debugged
2752 interrupt() none interrupt script execution
2858 prompt_setinterrupt({buf}, {text}) none set prompt interrupt function
4012 or another valid interrupt key, confirm() returns 0.
4170 Specifically used to interrupt a program being debugged. It
7051 interrupt() *interrupt()*
7059 : call interrupt()
11328 CTRL-C will interrupt the command (on Unix at least).
13500 When an error or interrupt is detected and there is
13512 Moreover, an error or interrupt (dynamically) inside
13518 The value "Vim:Interrupt" is used for an interrupt
13564 interrupt or exception (see |:throw|).
13755 Exceptions may be raised by Vim on an error or on interrupt, see
13756 |catch-errors| and |catch-interrupt|. You can also explicitly throw an
13861 thrown by a ":throw" command. For uncaught error and interrupt exceptions
13862 implicitly raised by Vim, the error message(s) or interrupt message are shown
14075 Note that this method cannot be used to "rethrow" Vim error or interrupt
14104 normal control flow, on error, on an explicit ":throw", and on interrupt.
14170 cleanup actions for the try conditional. But, of course, interrupt and error
14172 Example where an error in the finally clause stops an interrupt from
14177 : echo "Press CTRL-C for interrupt"
14310 CATCHING INTERRUPTS *catch-interrupt*
14312 When there are active try conditionals, an interrupt (CTRL-C) is converted to
14342 : " Caught the interrupt. Continue with next prompt.
14346 You can interrupt a task here by pressing CTRL-C; the script then asks for
14350 your script, use the debug mode and execute the |>quit| or |>interrupt|
14362 catch everything, error exceptions, interrupt exceptions and exceptions
14386 Example: Catching all could make it nearly impossible to interrupt a script