diff options
| author | Lewis Russell <lewis6991@gmail.com> | 2021-11-18 09:51:03 +0000 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-23 10:02:06 +0100 |
| commit | 011ac894ec5b9e36563d8629fb7734f43ddb27a8 (patch) | |
| tree | de0b252b7705bfa4304c08cd389fed0814ae6f1c /queries/vim | |
| parent | 89fbb9b39e9ff4049c797397721d44facbd246df (diff) | |
Prefer lua-match over match
as string.find is much quicker than vim.regex:match*
Diffstat (limited to 'queries/vim')
| -rw-r--r-- | queries/vim/highlights.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queries/vim/highlights.scm b/queries/vim/highlights.scm index a44e07ad..beec8697 100644 --- a/queries/vim/highlights.scm +++ b/queries/vim/highlights.scm @@ -1,6 +1,6 @@ (identifier) @variable ((identifier) @constant - (#match? @constant "^[A-Z][A-Z_0-9]*$")) + (#lua-match? @constant "^[A-Z][A-Z_0-9]*$")) ;; Keywords |
