diff options
| author | Pau Ruiz Safont <unduthegun@gmail.com> | 2020-09-06 19:07:30 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.lauf@yahoo.de> | 2020-09-06 20:52:56 +0200 |
| commit | 4db39e27c960ef613f3a31cf3a92778d0d03d506 (patch) | |
| tree | 12051c8e380051f35a5c9d3c8a219a01e4b4699e | |
| parent | fix: contional > conditional in lua hl.scm (diff) | |
| download | nvim-treesitter-4db39e27c960ef613f3a31cf3a92778d0d03d506.tar nvim-treesitter-4db39e27c960ef613f3a31cf3a92778d0d03d506.tar.gz nvim-treesitter-4db39e27c960ef613f3a31cf3a92778d0d03d506.tar.bz2 nvim-treesitter-4db39e27c960ef613f3a31cf3a92778d0d03d506.tar.lz nvim-treesitter-4db39e27c960ef613f3a31cf3a92778d0d03d506.tar.xz nvim-treesitter-4db39e27c960ef613f3a31cf3a92778d0d03d506.tar.zst nvim-treesitter-4db39e27c960ef613f3a31cf3a92778d0d03d506.zip | |
fix: ocaml highlight
The string.special group was removed from highlight.lua, replace its
uses by the string group.
| -rw-r--r-- | queries/ocaml/highlights.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/queries/ocaml/highlights.scm b/queries/ocaml/highlights.scm index 7c4ba08d5..69c28a3eb 100644 --- a/queries/ocaml/highlights.scm +++ b/queries/ocaml/highlights.scm @@ -69,9 +69,8 @@ (comment) @comment -[(string) (quoted_string)] @string +[(string) (quoted_string) (conversion_specification)] @string (escape_sequence) @string.escape -(conversion_specification) @string.special (infix_operator) @operator |
