aboutsummaryrefslogtreecommitdiff
path: root/test/functional/autocmd/signal_spec.lua
Commit message (Collapse)AuthorAge
* test: simplify platform detection (#21020)dundargoc2022-11-22
| | | | | Extend the capabilities of is_os to detect more platforms such as freebsd and openbsd. Also remove `iswin()` helper function as it can be replaced by `is_os("win")`.
* test: introduce skip() #21010dundargoc2022-11-13
| | | | | | | This is essentially a convenience wrapper around the `pending()` function, similar to `skip_fragile()` but more general-purpose. Also remove `pending_win32` function as it can be replaced by `skip(iswin())`.
* feat(events): support SIGWINCH for Signal event #18029Loong Wang2022-04-10
| | | closes #15411
* events: add "Signal" event #9564Marco Hinz2019-02-04
..which gets triggered when SIGUSR1 is sent to the nvim process. Closes #9562