justl.el

Major mode for driving just files.

GPL-3.0 License

Stars
62

Bot releases are visible (Hide)

justl.el - v0.14 Latest Release

Published by github-actions[bot] 8 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/psibi/justl.el/compare/v0.13...v0.14

justl.el - v0.13

Published by github-actions[bot] about 1 year ago

What's Changed

Full Changelog: https://github.com/psibi/justl.el/compare/v0.12...v0.13

justl.el - v0.12

Published by github-actions[bot] over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/psibi/justl.el/compare/v0.11...v0.12

justl.el - v0.11

Published by github-actions[bot] almost 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/psibi/justl.el/compare/v0.10...v0.11

justl.el - v0.10

Published by github-actions[bot] about 2 years ago

What's Changed

Full Changelog: https://github.com/psibi/justl.el/compare/v0.9...v0.10

justl.el - v0.9

Published by github-actions[bot] over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/psibi/justl.el/compare/v0.8...v0.9

justl.el - v0.8

Published by github-actions[bot] over 2 years ago

What's Changed

Full Changelog: https://github.com/psibi/justl.el/compare/v0.7...v0.8

justl.el - v0.7

Published by github-actions[bot] over 2 years ago

What's Changed

Full Changelog: https://github.com/psibi/justl.el/compare/v0.6...v0.7

justl.el - v0.6

Published by github-actions[bot] over 2 years ago

What's Changed

Full Changelog: https://github.com/psibi/justl.el/compare/v0.5...v0.6

justl.el - v0.5

Published by github-actions[bot] over 2 years ago

What's Changed

Full Changelog: https://github.com/psibi/justl.el/compare/v0.4...v0.5

justl.el - v0.4

Published by github-actions[bot] over 2 years ago

What's Changed

Full Changelog: https://github.com/psibi/justl.el/compare/v0.3...v0.4

justl.el - v0.3

Published by github-actions[bot] about 3 years ago

  • 0.3
  • Add ability to turn off color in the output. Useful for eshell
    integration which doesn't recognize color without additional setup.

  • Integration with eshell done. You can now execute the recipies in
    either eshell or open eshell and give positional arguments etc for
    the recipe before executing it. The key binding for it is E and
    W.

  • Handle recipe names starting with /@/

  • Add justl-go-to-recipe function which will take you to the
    justfile where the recipe under the cursor is present. It's default
    key binding is RET

  • Change behaviour of executing recipes. It now reads the recipe to
    see if it has any input parameters and asks the value explicitly
    along with some smart behavior for default values. Eg:

#+begin_example just
push2 version1 version2:
echo {{version1}} {{version2}}
#+end_example

It will ask the values for both version1 and version2 explicitly in
the above case.

  • Implement justl--exec-recipe-with-args to provide explicit
    arguments to it. It's shortcut in justl buffer is w.
  • 0.2
  • Address various comments from the melpa maintainers.
  • Use sharp quotes #' to provide hints to the byte compiler which
    will warn if the function is undefined.
  • 0.1
  • Initial version released