diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-05-05 12:57:36 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-05-05 23:22:11 +0200 |
| commit | 3d4eb9d544cbbe39544586890b5de83a48de3680 (patch) | |
| tree | acb9effe033f76350fe279049d59f52a6d419bca /runtime/queries/markdown_inline | |
| parent | 97b7ddc376bfcca01a5fd9e6e20e424a0f45b4f3 (diff) | |
| download | rneovim-3d4eb9d544cbbe39544586890b5de83a48de3680.tar.gz rneovim-3d4eb9d544cbbe39544586890b5de83a48de3680.tar.bz2 rneovim-3d4eb9d544cbbe39544586890b5de83a48de3680.zip | |
fix(treesitter): update queries
Diffstat (limited to 'runtime/queries/markdown_inline')
| -rw-r--r-- | runtime/queries/markdown_inline/highlights.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/runtime/queries/markdown_inline/highlights.scm b/runtime/queries/markdown_inline/highlights.scm index e38ef3d7b0..233ab411cd 100644 --- a/runtime/queries/markdown_inline/highlights.scm +++ b/runtime/queries/markdown_inline/highlights.scm @@ -33,10 +33,17 @@ ] @markup.link (#set! conceal "")) +[ + (link_label) + (link_text) + (link_title) + (image_description) +] @markup.link.label + (inline_link - (link_text) @markup.link.label - (link_destination) @markup.link - (#set! @markup.link.label "url" @markup.link)) + (link_text) @_label + (link_destination) @_url + (#set! @_label "url" @_url)) ; Conceal image links (image @@ -80,13 +87,6 @@ (uri_autolink) ] @markup.link.url @nospell -[ - (link_label) - (link_text) - (link_title) - (image_description) -] @markup.link.label - ; Replace common HTML entities. ((entity_reference) @character.special (#eq? @character.special " ") |