Beancount syntax highlighting (#7389)

Release Notes:

- Added syntax highlighting for [Beancount](https://beancount.github.io)
This commit is contained in:
Conrad Irwin 2024-02-05 11:07:26 -07:00 committed by GitHub
parent 4195f27964
commit e2e8e52ec4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 37 additions and 0 deletions

View file

@ -108,6 +108,7 @@ thiserror.workspace = true
tiny_http = "0.8"
toml.workspace = true
tree-sitter-bash.workspace = true
tree-sitter-beancount.workspace = true
tree-sitter-c-sharp.workspace = true
tree-sitter-c.workspace = true
tree-sitter-cpp.workspace = true

View file

@ -67,6 +67,7 @@ pub fn init(
};
language("bash", tree_sitter_bash::language(), vec![]);
language("beancount", tree_sitter_beancount::language(), vec![]);
language(
"c",
tree_sitter_c::language(),

View file

@ -0,0 +1,3 @@
name = "Beancount"
path_suffixes = ["beancount"]
brackets = [{ start = "\"", end = "\"", close = false, newline = false }]

View file

@ -0,0 +1,21 @@
(comment) @comment
(headline) @comment
[
(payee)
(narration)
(string)
] @string
(number) @number
(date) @function
(currency) @constant
(account) @identifier
[
(option)
(include)
(open)
(balance)
(pad)
(close)
] @keyword