diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-10-01 11:15:36 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-10-01 11:15:36 -0500 |
commit | 4a4c421f10daf139460b436695cef85c220551d4 (patch) | |
tree | 31ad2667e8b6fecac7aa63e9c42bdf2c9e76e329 | |
parent | 95d7f9c741cadccb4c7005a1a18039452fd96e6d (diff) | |
download | dotfiles-4a4c421f10daf139460b436695cef85c220551d4.tar.gz dotfiles-4a4c421f10daf139460b436695cef85c220551d4.zip |
Emacs/Eshell: Pass `noerror' to `vc-responsible-backend'
-rw-r--r-- | common/.emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/.emacs.d/init.el b/common/.emacs.d/init.el index 1cc30a8..1aebc7b 100644 --- a/common/.emacs.d/init.el +++ b/common/.emacs.d/init.el @@ -2577,7 +2577,7 @@ Only works on a single file." (if-let* ((dir (or dir (eshell/pwd))) (prj (project-current nil dir)) (dir (project-root prj)) - (vc (vc-responsible-backend dir))) + (vc (vc-responsible-backend dir 'noerror))) (let* ((dirty (if (my/vc-dirty-p dir) "*" "")) |