-
-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
Description
just
has module feature:
https://github.com/casey/just?tab=readme-ov-file#modules1190
According to README, justfile can declare modules by mod
statement like this:
# justfile
mod bar
a:
@echo A
# bar.just
b:
@echo B
Then @echo B
can be call like this:
$ just bar b
B
$ just bar::b
B
However, fzf-make
doesn't detect modules currently.
kyu08