Alexei Mozaidze
|
46f8778fbf
|
feat(fennel)!: update parser and queries (#6460)
|
2024-04-22 11:57:55 +02:00 |
|
再生花
|
31641d72a4
|
feat(format-scripts): linewrap predicates
"format-ignore".kick()
|
2024-02-23 10:42:01 +02:00 |
|
Alexei Mozaidze
|
7d1bab6546
|
feat(fennel)!: switch to maintained parser (#6132)
Change the Fennel parser to a simpler and more consistent one, along with updating all the queries.
|
2024-02-21 13:44:01 +00:00 |
|
Pham Huy Hoang
|
57a8acf0c4
|
chore: query formatting
|
2024-01-19 16:58:37 +01:00 |
|
Christian Clason
|
1ae9b0e455
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(3f44b89685/highlight/src/lib.rs (L20-L72)):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
|
2024-01-19 16:58:37 +01:00 |
|
ShellCode33
|
d9e75a1736
|
queries/*/highlights.scm : remove @spell for strings
|
2023-08-07 16:39:40 +01:00 |
|
Chinmay Dalal
|
82c9486539
|
fix(fennel): capture method calls as @method.call
|
2023-07-31 06:47:45 -04:00 |
|
Chinmay Dalal
|
b26b11f971
|
fix(fennel): capture function calls as @function.call
|
2023-06-21 11:20:58 -04:00 |
|
Amaan Qureshi
|
85330918f0
|
perf: remove match where possible
|
2023-04-21 18:24:17 -04:00 |
|
kawas44
|
c07c1c5b98
|
feat(spell): support lisp like languages
Add spell to commonlisp, scheme, racket, clojure and fennel.
|
2023-03-29 17:48:30 -04:00 |
|
Stephan Seitz
|
4b9aec69bd
|
highlights(fennel): fix "collect" "icollect" "accumulate"
They are now anonymous nodes.
Fixes #2707
|
2022-04-01 16:58:05 +02:00 |
|
Otto Modinos
|
99d4f72a5c
|
feat(fennel): update parser and queries
|
2021-09-30 17:54:45 +02:00 |
|
Otto Modinos
|
02350ab7da
|
fix(fennel): update parser and all the queries
|
2021-09-10 22:24:25 +02:00 |
|
Stephan Seitz
|
49f2b33687
|
Fix fennel queries
|
2021-03-16 18:52:43 +01:00 |
|
TravonteD
|
72905524c2
|
Add fennel support
|
2020-08-16 20:40:33 -04:00 |
|