diff options
| author | Brian Ryall <me@brianryall.xyz> | 2024-02-28 22:13:51 -0500 |
|---|---|---|
| committer | 再生花 <hoangtun0810@gmail.com> | 2024-02-29 12:35:31 +0900 |
| commit | 4a8901b0d5398b45e075fcdbf9b8fe546349cc14 (patch) | |
| tree | cb36a4ffe984be940fdc513204d9f2700cbf4d6e | |
| parent | Update parsers: dtd, gitattributes, hyprlang, tcl, wing, xml (diff) | |
| download | nvim-treesitter-4a8901b0d5398b45e075fcdbf9b8fe546349cc14.tar nvim-treesitter-4a8901b0d5398b45e075fcdbf9b8fe546349cc14.tar.gz nvim-treesitter-4a8901b0d5398b45e075fcdbf9b8fe546349cc14.tar.bz2 nvim-treesitter-4a8901b0d5398b45e075fcdbf9b8fe546349cc14.tar.lz nvim-treesitter-4a8901b0d5398b45e075fcdbf9b8fe546349cc14.tar.xz nvim-treesitter-4a8901b0d5398b45e075fcdbf9b8fe546349cc14.tar.zst nvim-treesitter-4a8901b0d5398b45e075fcdbf9b8fe546349cc14.zip | |
feat(beancount): refactor scanner to c
| -rw-r--r-- | lockfile.json | 2 | ||||
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lockfile.json b/lockfile.json index 5eb1debe0..edc7000e1 100644 --- a/lockfile.json +++ b/lockfile.json @@ -33,7 +33,7 @@ "revision": "c9ba4568af24cd3403029730687c0a43d1350a43" }, "beancount": { - "revision": "dd6f4ec9b01dd18cc4aa8c8517738414fb98cd63" + "revision": "b2c12eb49e308f33312269da1e31469f40c7b3c1" }, "bibtex": { "revision": "ccfd77db0ed799b6c22c214fe9d2937f47bc8b34" diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index c9c22886d..aef843213 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -170,7 +170,7 @@ list.bass = { list.beancount = { install_info = { url = "https://github.com/polarmutex/tree-sitter-beancount", - files = { "src/parser.c", "src/scanner.cc" }, + files = { "src/parser.c", "src/scanner.c" }, }, maintainers = { "@polarmutex" }, } |
