diff --git a/Changelog.org b/Changelog.org index d73e923..47b7114 100644 --- a/Changelog.org +++ b/Changelog.org @@ -9,6 +9,11 @@ one across all buffers. - Support optional argument prompting in ~justl-exec-recipe-in-dir~. Fixes [[https://github.com/psibi/justl.el/issues/41][issue 41]]. +- Ability to set new working directory in justl buffers via + ~justl-set-new-working-dir~. This is useful to execute your recipes + with no-cd recipe attribute. +- Justl buffer names are changed to include filename too. This is made + in preparation for supporting just modules. * 0.14 diff --git a/justl.el b/justl.el index 24732a4..71b5895 100644 --- a/justl.el +++ b/justl.el @@ -530,8 +530,7 @@ They are returned as objects, as per the JSON output of \"just --dump\"." (defun justl--buffer-name () "Return justl buffer name." (let ((justfile (justl--find-justfile default-directory))) - (format "*just [%s]*" - (f-dirname justfile)))) + (format "*just [%s]*" justfile))) (defun justl--tabulated-entries (recipes) "Turn RECIPES to tabulated entries."