tree-sitter-just icon indicating copy to clipboard operation
tree-sitter-just copied to clipboard

Treesitter grammar for Justfiles (casey/just)

Results 11 tree-sitter-just issues
Sort by recently updated
recently updated
newest added

Hello, thanks for this plugin. I've ran into the following issue with using backticks evaluation and curly braces: Example: ``` cert-manager-version := `go list -f '{{ .Version }}' -m github.com/cert-manager/cert-manager`...

bug
help wanted

It seems the treesitter will error on a private alias. Using InspectTree I see the error, remove the private anno and fixed. Example: ``` alias foo := bar [private] alias...

bug
question

This grammar has gotten quite a bit better and Helix can probably update. The change for this just means bumping the checkout version and updating the queries - the queries...

compatibility

Zed also uses tree-sitter grammars, but no Just at this time: https://github.com/zed-industries/zed/tree/a6dbaac6538c1648de1943f071d006d5acb5a5bc/crates/languages/src Wouldn't hurt to add.

help wanted
good first issue

Adds a nix devenv to this grammar, it notably makes it much easier to have autocompletion in `scanner.c` on macOS (and Linux, even if that was less of a problem)

Currently, [rule groups](https://github.com/IndianBoy42/tree-sitter-just) are not supported and even produce a parse error, — breaking any highlighting based on it. Example: ```just [group('python')] fmt: ruff format || true ``` ![Capture d’écran...

I installed with nvim-treesitter, and this is the result in the kitchen sink example from the just repo: ![image](https://github.com/user-attachments/assets/d9ffb22a-558e-4163-b70e-27257bccac60) The syntax highlighting is wrong until the next `/`. The relevant...

Hey! First of all, thanks for creating this grammar for Justfiles. I have a small issue when I tried to compile the grammar for the WASM target via [WASI SDK](https://github.com/WebAssembly/wasi-sdk):...

Added support for new attribute shorthand: ```just [attr_key: "value"] foo: echo "bar" ``` https://github.com/casey/just/blob/fa5770e71aa93402068ebc9e179e493fc94f8532/tests/attributes.rs#L202-L205