Commit graph

673 commits

Author SHA1 Message Date
Uy Ha
fbbfa3bda0 Move macro to @function.macro capture 2021-07-02 08:37:02 +02:00
Uy Ha
a8a7200241 Change captures:
- Disable highlight for `variable_ref`
- Capture `ENV` and `CACHE` as `@symbol`
- Capture '$', '{', '}', '(', ')' as punctuation
2021-07-02 08:37:02 +02:00
Uy Ha
c214c7c563 Remove query for specific keywords for now 2021-07-02 08:37:02 +02:00
Uy Ha
e121e52b2d Add comment parsing and highlight whole bracket argument 2021-07-02 08:37:02 +02:00
Uy Ha
6a2ce27949 Fix wrong name:
- `fold.scm` -> `folds.scm`
2021-07-02 08:37:02 +02:00
Uy Ha
b090c94a7a Capture variable_ref instead of variable for @variable 2021-07-02 08:37:02 +02:00
Uy Ha
d1a5d827ae Change @parameter capture to @string 2021-07-02 08:37:02 +02:00
Uy Ha
0a2828a04c Move keywords to their appropriate capture:
- Unary and binary operator to `@keyword.operator`
- Boolean constants to `@boolean`
2021-07-02 08:37:02 +02:00
Uy Ha
4ab1647f20 Highlight only command name instead of the whole call 2021-07-02 08:37:02 +02:00
Uy Ha
4bc6b7c85a Remove non-foldable commands (incorrect copy and paste) 2021-07-02 08:37:02 +02:00
Uy Ha
485cedeed6 Add fold.scm 2021-07-02 08:37:02 +02:00
Uy Ha
90cddb0112 Refine highlights.scm:
- Match repeat, conditional, etc. to their corresponding commands
- Clean up `@parameter` match
- Add `$ENV` and `$CACHE` to queries
2021-07-02 08:37:02 +02:00
Uy Ha
df024e233a Add highlights.scm 2021-07-02 08:37:02 +02:00
Akin Sowemimo
106eb8e500 feat(dart): add function call expression highlight
This is a work around since currently the upstream grammar does not
support a call_expression
2021-07-02 01:56:55 +02:00
Michael Hoffmann
bd00e4064f Update queries/hcl/highlights.scm
Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2021-07-02 01:56:25 +02:00
mhoffm
a40bce5e36 work on queries; fix macos build 2021-07-02 01:56:25 +02:00
mhoffm
1914317ae7 work on queries 2021-07-02 01:56:25 +02:00
mhoffm
2ea75bf3aa add basic injections 2021-07-02 01:56:25 +02:00
mhoffm
590898bbb7 fix highlights.scm 2021-07-02 01:56:25 +02:00
mhoffm
d6758b2673 improve queries 2021-07-02 01:56:25 +02:00
mhoffm
4a29ccba9b improve queries 2021-07-02 01:56:25 +02:00
mhoffm
9275a15aad add hcl parser 2021-07-02 01:56:25 +02:00
Stephan Seitz
6d5b4f19f3 python(highlights): don't use type for APP 2021-07-01 22:50:33 +02:00
Munif Tanjim
b8d7853b88 highlights(typescript): fix indentifier for type imports 2021-07-01 22:50:06 +02:00
Gregory Anders
dbbedfec88
query: Only highlight predicate name (#1461)
Only highlight the name of the predicate using TSFunction rather than
the entire predicate block.
2021-07-01 20:43:09 +00:00
Stephan Seitz
2e073285dc highlights(go): modernize highlights.scm 2021-07-01 22:38:26 +02:00
Akin Sowemimo
5fa8d5741d feat(dart): add function call query (commented) 2021-07-01 16:02:24 +02:00
Akin Sowemimo
f67a749b0f feat(dart): add multiplicative_operator
and fix conditional_assignable_selector
2021-07-01 16:02:24 +02:00
Ashish Panigrahi
aba5e9b4d5 feat: add comment highlighting in LaTeX 2021-07-01 10:33:16 +02:00
Farbod Salamat-Zadeh
efbd01f539
Add common quasiquote highlights/injections for Haskell (#1440) 2021-07-01 00:43:08 +00:00
Stephan Seitz
b09e889e3d highlights(latex): highlight chapter*, section*, part* ...
Fixes #1454
2021-06-30 20:36:02 +02:00
tk-shirasaka
fe47dbe02b
Adds support for PHP's arrow funcion (#1427)
Co-authored-by: shirasaka <shirasaka@n-create.co.jp>
2021-06-28 10:10:58 -05:00
Jaehwang Jerry Jung
c04aa172a3 fix typo in query 2021-06-26 12:19:08 +02:00
elianiva
f9bce468a0 feat(haskell): improve highlight query
Co-authored-by: Farbod Salamat-Zadeh <12140044+farbodsz@users.noreply.github.com>
2021-06-26 12:10:52 +02:00
elianiva
684b74bea1 feat: add haskell highlights 2021-06-26 12:10:52 +02:00
Joakker
c699cc2e47 Use #any-of? instead of #match? where posible 2021-06-25 00:22:48 +02:00
tami5
89b1254cde rust: inject html to html! macro 2021-06-21 08:52:38 +02:00
Folke Lemaitre
d1f6a2a3d8 feat: added self as builtin keyword for Lua 2021-06-17 15:53:20 +02:00
Farbod Salamat-Zadeh
5c30f2af04 highlight: add SCSS single_line_comment 2021-06-15 19:59:45 +02:00
Stephan Seitz
8eb37c4409 parsers: add tree-sitter-cuda 2021-06-14 07:30:51 +02:00
Steven Sojka
eb6fdb5085 chore(injections): remove duplicated regex injection for js 2021-06-11 16:15:14 +02:00
Cédric Barreteau
07fe5a2aba Update ledger highlight queries 2021-06-11 14:00:48 +02:00
Santos Gallegos
709f3a73b3 Rust: fix macros highlights
- The derive query was incorrect, it was only matching `#[derive(derive)]`
- Macros were being highlighted as keywords
- Procedural macros symbols weren't highlighted (`#`, `#!`)
2021-06-11 07:54:56 +02:00
Alex Chen
3b516c8e2b c++ highlights: don't capture all identifiers with uppercase initials as types 2021-06-10 08:16:53 +02:00
Gregory Anders
a7dac748ba Update zig highlights
Highlight the built-in `@import` function with the TSInclude highlight
group. Also highlight character literals using TSCharacter instead of
TSNumber.
2021-06-10 07:37:34 +02:00
Akin Sowemimo
fce41bbb6e fix: assignable selector was removed/hidden 2021-06-06 23:57:01 +02:00
Omar Zeghouani
0c5b61b2aa Fix boolean highlight 2021-06-06 23:10:00 +02:00
Omar Zeghouani
1289f56fe9 Use any_of predicate for builtin functions 2021-06-06 23:10:00 +02:00
Luxed
dad4903048 highlights(c_sharp): Add preprocessor directives queries 2021-06-04 23:56:26 +02:00
Luxed
fde9521f9e folds(c_sharp): Add basic folding 2021-06-04 23:56:26 +02:00