This commit is contained in:
Mouinul Hossain 2025-09-19 21:41:11 +10:00 committed by GitHub
commit bbc6fb02c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,38 @@
[
"|"
"-"
] @punctuation.delimiter
(filename) @string.special.path
(row
[
(value)
(from)
(to)
] @number)
"col" @keyword
(col
[
(value)
(from)
(to)
] @number)
((item_type) @comment.error
(#eq? @comment.error "error"))
((item_type) @comment.warning
(#eq? @comment.warning "warning"))
((item_type) @comment.note
(#eq? @comment.note "note"))
((code_block) @markup.raw.block
(#set! priority 90))
(code_block
(language_delimiter) @markup.raw.block
(#set! conceal ""))

View file

@ -0,0 +1,8 @@
; Automatic language(slightly inaccurate).
; filename.lua | 10 col 5 | local value = 10;
(quickfix_item
(filename) @injection.filename
(range)
(code_block
.
(content) @injection.content .))