vscode-just icon indicating copy to clipboard operation
vscode-just copied to clipboard

A Visual Studio Code plugin for working with Just.

Results 5 vscode-just issues
Sort by recently updated
recently updated
newest added

Thank you for this amazing project. Is there a way to have a formatter too? ![image](https://user-images.githubusercontent.com/41120635/167251677-07f2c7ae-395a-48cd-adc4-063aa321aa9d.png)

script syntax highlight & multiline string assignment in variable fixes issue #5 and issue #7

If you include a string in your justfile that span multiple lines with backslashes escaping the newlines, the syntax highlighting does not recognize the end of the string. In the...

The following is valid `Justfile` ```makefile example +ARGS='': echo {{ARGS}} ``` But this extension doesn't highlight it correctly.

[Just](https://github.com/casey/just) allows you to have inline scripts for recipes: ```makefile recipe: #!/usr/bin/env python import sys print("Hello from stderr", file=sys.stderr) ``` It would be nice if `vscode-just` could correctly syntax highlight...