mirror of
https://github.com/neovim/neovim.git
synced 2026-01-06 13:27:43 +00:00
Closing parentheses were often highlighted as errors.
Add a syntax sync command to reduce the error.
Also fix that `defined` was not highlighted as an operator inside
parentheses. E.g.:
```
if defined foo (
if defined bar (
...
)
)
```
The first `defined` was highlighted but the second one was not.
related: vim/vim#15453
11c92be897
Co-authored-by: Ken Takata <kentkt@csc.jp>