mirror of
https://github.com/neovim/neovim.git
synced 2026-07-23 01:12:49 +00:00
Recognize DTrace probe descriptions that are followed immediately by an
action block, such as:
BEGIN{ trace(1); }
syscall::open:entry{ trace(1); }
The fourth probe field now consumes the remaining non-whitespace text, and
the lookahead allows zero or more whitespace before the following token.
closes: vim/vim#20560
4ed61e0a19
Co-authored-by: Vladimír Marek <vlmarek13@gmail.com>