Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Agda #8285

Merged
merged 10 commits into from
Dec 16, 2023
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Language | Syntax Highlighting | Treesitter Textobjects | Auto Indent | Default LSP |
| --- | --- | --- | --- | --- |
| agda | ✓ | | | |
| astro | ✓ | | | |
| awk | ✓ | ✓ | | `awk-language-server` |
| bash | ✓ | ✓ | ✓ | `bash-language-server` |
Expand Down
2 changes: 2 additions & 0 deletions book/src/guides/adding_languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ below.
3. Refer to the
[tree-sitter website](https://tree-sitter.github.io/tree-sitter/syntax-highlighting#queries)
for more information on writing queries.
4. A list of highlight captures can be found [on the themes page](https://docs.helix-editor.com/themes.html#scopes).

> 💡 In Helix, the first matching query takes precedence when evaluating
> queries, which is different from other editors such as Neovim where the last
Expand All @@ -51,3 +52,4 @@ below.
grammars.
- If a parser is causing a segfault, or you want to remove it, make sure to
remove the compiled parser located at `runtime/grammars/<name>.so`.
- If you are attempting to add queries and Helix is unable to locate them, ensure that the environment variable `HELIX_RUNTIME` is set to the location of the `runtime` folder you're developing in.
29 changes: 28 additions & 1 deletion languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

[language-server]

als = { command = "als" }
awk-language-server = { command = "awk-language-server" }
bash-language-server = { command = "bash-language-server", args = ["start"] }
bass = { command = "bass", args = ["--lsp"] }
Expand Down Expand Up @@ -88,7 +89,7 @@ blueprint-compiler = { command = "blueprint-compiler", args = ["lsp"] }


[language-server.lua-language-server]
command = "lua-language-server"
command = "lua-language-server"

[language-server.lua-language-server.config.Lua.hint]
enable = true
Expand Down Expand Up @@ -2805,3 +2806,29 @@ roots = []
[[grammar]]
name = "gemini"
source = { git = "https://git.sr.ht/~sfr/tree-sitter-gemini", rev = "3cc5e4bdf572d5df4277fc2e54d6299bd59a54b3" }

[[language]]
name = "agda"
scope = "source.agda"
injection-regex = "agda"
file-types = ["agda"]
roots = []
comment-token = "--"
# language-servers = [ "als" ]
# the agda language server is of questionable functionality.
auto-format = false
indent = { tab-width = 2, unit = " " }

[language.auto-pairs]
'"' = '"'
"'" = "'"
'{' = '}'
'(' = ')'
'[' = ']'

# [language.debugger]
# ?? can this be used for proof assistant support? explore

[[grammar]]
name = "agda"
source = { git = "https://github.com/tree-sitter/tree-sitter-agda", rev = "c21c3a0f996363ed17b8ac99d827fe5a4821f217" }
124 changes: 124 additions & 0 deletions runtime/queries/agda/highlights.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
;; Punctuation
[ "." ";" ":"] @punctuation.delimiter
[ "(" ")" "{" "}" ] @punctuation.bracket

;; Constants
(integer) @constant.numeric.integer
; (float) @constant.numeric.float
(literal) @string

;; Pragmas and comments
(comment) @comment
(pragma) @attribute
(macro) @function.macro

;; Imports
(module_name) @namespace
(import_directive (id) @namespace)
[(module) (import) (open)] @keyword.control.import

;; Types
(typed_binding (expr) @type)
(record (expr) @type)
(data (expr) @type)
(signature (expr) @type)
(function (rhs (expr) @type))
; todo: these are too general. ideally, any nested (atom)
; https://github.com/tree-sitter/tree-sitter/issues/880

;; Variables
(untyped_binding (atom) @variable)
(typed_binding (atom) @variable)
(field_name) @variable.other.member

;; Functions
(function_name) @function
;(function (lhs
; . (atom) @function
; (atom) @variable.parameter))
; todo: currently fails to parse, upstream tree-sitter bug

;; Data
[(data_name) (record_name)] @constructor
((atom) @constant.builtin.boolean
(#any-of? @constant.builtin.boolean "true" "false" "True" "False"))

"Set" @type.builtin

; postulate
; type_signature
; pattern
; id
; bid
; typed_binding
; primitive
; private
; record_signature
; record_assignments
; field_assignment
; module_assignment
; renaming
; import_directive
; lambda
; let
; instance
; generalize
; record
; fields
; syntax
; hole_name
; data_signature

;; Keywords
[
"where"
"data"
"rewrite"
"postulate"
"public"
"private"
"tactic"
"Prop"
"quote"
"renaming"
"in"
"hiding"
"constructor"
"abstract"
"let"
"field"
"mutual"
"infix"
"infixl"
"infixr"
"record"
"overlap"
"instance"
"do"
] @keyword

[
"="
] @operator

; = | -> : ? \ .. ... λ ∀ →
; (_LAMBDA) (_FORALL) (_ARROW)
; "coinductive"
; "eta-equality"
; "field"
; "inductive"
; "interleaved"
; "macro"
; "no-eta-equality"
; "pattern"
; "primitive"
; "quoteTerm"
; "rewrite"
; "syntax"
; "unquote"
; "unquoteDecl"
; "unquoteDef"
; "using"
; "variable"
; "with"

Loading