diff options
| author | Pau Ruiz Safont <unduthegun@gmail.com> | 2021-02-27 19:25:03 +0000 |
|---|---|---|
| committer | Stephan Seitz <stephan.lauf@yahoo.de> | 2021-02-28 22:32:07 +0100 |
| commit | 633b42b2a2552da3134dda84c8099d00cde915d2 (patch) | |
| tree | 91da7d5ac2bf08402a03800b72712d90264e0841 | |
| parent | svelte: also capture src as text.uri (diff) | |
| download | nvim-treesitter-633b42b2a2552da3134dda84c8099d00cde915d2.tar nvim-treesitter-633b42b2a2552da3134dda84c8099d00cde915d2.tar.gz nvim-treesitter-633b42b2a2552da3134dda84c8099d00cde915d2.tar.bz2 nvim-treesitter-633b42b2a2552da3134dda84c8099d00cde915d2.tar.lz nvim-treesitter-633b42b2a2552da3134dda84c8099d00cde915d2.tar.xz nvim-treesitter-633b42b2a2552da3134dda84c8099d00cde915d2.tar.zst nvim-treesitter-633b42b2a2552da3134dda84c8099d00cde915d2.zip | |
highlights(ocaml): add unit and pretty_printing_indication
| -rw-r--r-- | queries/ocaml/highlights.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/queries/ocaml/highlights.scm b/queries/ocaml/highlights.scm index 3d43aabf6..7ae9194cb 100644 --- a/queries/ocaml/highlights.scm +++ b/queries/ocaml/highlights.scm @@ -68,7 +68,7 @@ ; Constants ;---------- -(boolean) @constant +[(boolean) (unit)] @constant [(number) (signed_number)] @number @@ -80,7 +80,10 @@ (escape_sequence) @string.escape -(conversion_specification) @punctuation.special +[ + (conversion_specification) + (pretty_printing_indication) +] @punctuation.special ; Operators ;---------- |
