comparison src/vim.h @ 20800:e76b83c07bd8 v8.2.0952

patch 8.2.0952: no simple way to interrupt Vim Commit: https://github.com/vim/vim/commit/be5ee8686a50acf07b823bd293f9c765e533d213 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 10 20:56:58 2020 +0200 patch 8.2.0952: no simple way to interrupt Vim Problem: No simple way to interrupt Vim. Solution: Add the SigUSR1 autocommand, triggered by SIGUSR1. (Jacob Hayes, closes #1718)
author Bram Moolenaar <Bram@vim.org>
date Wed, 10 Jun 2020 21:00:04 +0200
parents 6ff992bf4c82
children 69055d27e85e
comparison
equal deleted inserted replaced
20799:a3f74832de9b 20800:e76b83c07bd8
1314 EVENT_SAFESTATE, // going to wait for a character 1314 EVENT_SAFESTATE, // going to wait for a character
1315 EVENT_SAFESTATEAGAIN, // still waiting for a character 1315 EVENT_SAFESTATEAGAIN, // still waiting for a character
1316 EVENT_SESSIONLOADPOST, // after loading a session file 1316 EVENT_SESSIONLOADPOST, // after loading a session file
1317 EVENT_SHELLCMDPOST, // after ":!cmd" 1317 EVENT_SHELLCMDPOST, // after ":!cmd"
1318 EVENT_SHELLFILTERPOST, // after ":1,2!cmd", ":w !cmd", ":r !cmd". 1318 EVENT_SHELLFILTERPOST, // after ":1,2!cmd", ":w !cmd", ":r !cmd".
1319 EVENT_SIGUSR1, // after the SIGUSR1 signal
1319 EVENT_SOURCECMD, // sourcing a Vim script using command 1320 EVENT_SOURCECMD, // sourcing a Vim script using command
1320 EVENT_SOURCEPRE, // before sourcing a Vim script 1321 EVENT_SOURCEPRE, // before sourcing a Vim script
1321 EVENT_SOURCEPOST, // after sourcing a Vim script 1322 EVENT_SOURCEPOST, // after sourcing a Vim script
1322 EVENT_SPELLFILEMISSING, // spell file missing 1323 EVENT_SPELLFILEMISSING, // spell file missing
1323 EVENT_STDINREADPOST, // after reading from stdin 1324 EVENT_STDINREADPOST, // after reading from stdin