diff options
| author | Andrew Helwer <ahelwer@protonmail.com> | 2021-08-18 14:50:38 -0400 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-08-20 18:56:14 +0200 |
| commit | 17d75b31eab93d0b50c1dc342a18fdeac368752e (patch) | |
| tree | 2d79d3bcf6d1ea49712d7c8fb25a2fc47587819d | |
| parent | Filetype is tla (diff) | |
| download | nvim-treesitter-17d75b31eab93d0b50c1dc342a18fdeac368752e.tar nvim-treesitter-17d75b31eab93d0b50c1dc342a18fdeac368752e.tar.gz nvim-treesitter-17d75b31eab93d0b50c1dc342a18fdeac368752e.tar.bz2 nvim-treesitter-17d75b31eab93d0b50c1dc342a18fdeac368752e.tar.lz nvim-treesitter-17d75b31eab93d0b50c1dc342a18fdeac368752e.tar.xz nvim-treesitter-17d75b31eab93d0b50c1dc342a18fdeac368752e.tar.zst nvim-treesitter-17d75b31eab93d0b50c1dc342a18fdeac368752e.zip | |
Fixed lua style issues, updated grammar version to fix macOS build issues
| -rw-r--r-- | lockfile.json | 2 | ||||
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lockfile.json b/lockfile.json index b5d2521b0..4afdcb34c 100644 --- a/lockfile.json +++ b/lockfile.json @@ -186,7 +186,7 @@ "revision": "fcc5f6f4d194dede4e676834ff28a506e39e17b4" }, "tlaplus": { - "revision": "36e7863609f5fbb4b0e39b1a035f5b3245f974f6" + "revision": "63ab99903cce883e8db392888c526fe2ffd00b1a" }, "toml": { "revision": "8bd2056818b21860e3d756b5a58c4f6e05fb744e" diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 56f390fcb..6893cc10d 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -394,10 +394,10 @@ list.hcl = { list.tlaplus = { install_info = { url = "https://github.com/tlaplus-community/tree-sitter-tlaplus", - files = { "src/parser.c", "src/scanner.cc" } + files = { "src/parser.c", "src/scanner.cc" }, }, maintainers = { "@ahelwer" }, - filetype = "tla" + filetype = "tla", } list.toml = { |
