Skip to content

Commit

Permalink
Apply the .cc -> .c change to the lua script
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Jan 5, 2024
1 parent dc8742d commit bbcf982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can also add the parser manually using (This is similar to what is done in `
require("nvim-treesitter.parsers").get_parser_configs().just = {
install_info = {
url = "https://github.com/IndianBoy42/tree-sitter-just", -- local path or git repo
files = { "src/parser.c", "src/scanner.cc" },
files = { "src/parser.c", "src/scanner.c" },
branch = "main",
-- use_makefile = true -- this may be necessary on MacOS (try if you see compiler errors)
},
Expand Down
2 changes: 1 addition & 1 deletion lua/tree-sitter-just/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function M.setup(arg)
"start",
"tree-sitter-just"
) or "https://github.com/IndianBoy42/tree-sitter-just", -- local path or git repo
files = { "src/parser.c", "src/scanner.cc" },
files = { "src/parser.c", "src/scanner.c" },
branch = "main",
},
maintainers = { "@IndianBoy42" },
Expand Down

0 comments on commit bbcf982

Please sign in to comment.