diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-07-22 19:57:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 19:57:58 +0200 |
commit | ad95b369856969ccb05b3f92b24d7262b4de3d71 (patch) | |
tree | 396e50f5f056362473fd592607786c7f31e9832e | |
parent | d2efcbf2dca6c2899ba0a1be7fc10dbf3f112d26 (diff) | |
download | rneovim-ad95b369856969ccb05b3f92b24d7262b4de3d71.tar.gz rneovim-ad95b369856969ccb05b3f92b24d7262b4de3d71.tar.bz2 rneovim-ad95b369856969ccb05b3f92b24d7262b4de3d71.zip |
fix(treesitter): update markdown parser and queries (#24429)
-rw-r--r-- | cmake.deps/deps.txt | 4 | ||||
-rw-r--r-- | runtime/queries/markdown_inline/highlights.scm | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/cmake.deps/deps.txt b/cmake.deps/deps.txt index bf39fa2dfb..bbe386941c 100644 --- a/cmake.deps/deps.txt +++ b/cmake.deps/deps.txt @@ -58,7 +58,7 @@ TREESITTER_PYTHON_URL https://github.com/tree-sitter/tree-sitter-python/archive/ TREESITTER_PYTHON_SHA256 ac92b4759c363fe284a1bfd9df2d204b5efa166042a1484eefdf8e03b3f37d57 TREESITTER_BASH_URL https://github.com/tree-sitter/tree-sitter-bash/archive/493646764e7ad61ce63ce3b8c59ebeb37f71b841.tar.gz TREESITTER_BASH_SHA256 99ebe9f2886efecc1a5e9e1360d804a1b49ad89976a66bb5c3871539cca5fb7e -TREESITTER_MARKDOWN_URL https://github.com/MDeiml/tree-sitter-markdown/archive/936cc84289f6de83c263ae8e659fb342867ceb16.tar.gz -TREESITTER_MARKDOWN_SHA256 4f2315930dc2c1bd42971a0b728cf4dafc57830c61f8abe3e2548cf230968713 +TREESITTER_MARKDOWN_URL https://github.com/MDeiml/tree-sitter-markdown/archive/v0.1.6.tar.gz +TREESITTER_MARKDOWN_SHA256 34cbeadfbe07454a5040163d04b3118ef0ac427a5cba39089de7384992729088 TREESITTER_URL https://github.com/tree-sitter/tree-sitter/archive/91e4d940169a0c0b024560632ef53c4f119117ca.tar.gz TREESITTER_SHA256 e15e335d127d38aaa73e727f3169df6015f43de1010d806e69b9e9222ad50fe1 diff --git a/runtime/queries/markdown_inline/highlights.scm b/runtime/queries/markdown_inline/highlights.scm index a70e34bb87..cd5da530d7 100644 --- a/runtime/queries/markdown_inline/highlights.scm +++ b/runtime/queries/markdown_inline/highlights.scm @@ -20,6 +20,8 @@ (uri_autolink) ] @text.uri @nospell +(shortcut_link (link_text) @nospell) + [ (link_label) (link_text) |