I found out that the language_for_file_internal implementation does not match the documentation about path_suffixes. Instead of suffixes that support glob patterns, they are extension names (without including the dot), and names of hidden files (i.e. files that start with a dot).
So, .just has to be changed to just; and .justfile, .Justfile, and .JUSTFILE aren't required.
Wildcards don't work either. The current best solution for that is using file_types in settings.json.
I found out that the language_for_file_internal implementation does not match the documentation about path_suffixes. Instead of suffixes that support glob patterns, they are extension names (without including the dot), and names of hidden files (i.e. files that start with a dot).
So,
.just
has to be changed tojust
; and.justfile
,.Justfile
, and.JUSTFILE
aren't required.Wildcards don't work either. The current best solution for that is using
file_types
insettings.json
.I added a folder with tests.