diff options
| author | Amaan Qureshi <amaanq12@gmail.com> | 2023-08-16 03:05:59 -0400 |
|---|---|---|
| committer | Amaan Qureshi <amaanq12@gmail.com> | 2023-08-16 03:23:24 -0400 |
| commit | 64d1696d6d2e389e99542bddf1579e527b000398 (patch) | |
| tree | 24eb9ecc3bc4ec29a171a5e876a64d4f5bebd691 /queries/python | |
| parent | Fix HEEx directive injections (diff) | |
| download | nvim-treesitter-64d1696d6d2e389e99542bddf1579e527b000398.tar nvim-treesitter-64d1696d6d2e389e99542bddf1579e527b000398.tar.gz nvim-treesitter-64d1696d6d2e389e99542bddf1579e527b000398.tar.bz2 nvim-treesitter-64d1696d6d2e389e99542bddf1579e527b000398.tar.lz nvim-treesitter-64d1696d6d2e389e99542bddf1579e527b000398.tar.xz nvim-treesitter-64d1696d6d2e389e99542bddf1579e527b000398.tar.zst nvim-treesitter-64d1696d6d2e389e99542bddf1579e527b000398.zip | |
fix(python,starlark): update parsers & add escape_interpolation
Diffstat (limited to 'queries/python')
| -rw-r--r-- | queries/python/highlights.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/queries/python/highlights.scm b/queries/python/highlights.scm index c18b74867..e0c1491a5 100644 --- a/queries/python/highlights.scm +++ b/queries/python/highlights.scm @@ -155,7 +155,10 @@ (#lua-match? @preproc "^#!/")) (string) @string -(escape_sequence) @string.escape +[ + (escape_sequence) + (escape_interpolation) +] @string.escape ; doc-strings |
