Merge pull request #220 from cslux/master

Inhibit message from `ffip-project-root`
This commit is contained in:
Vincent Zhang 2019-09-13 21:42:57 -05:00 committed by GitHub
commit 349d7c0084
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -684,7 +684,8 @@ If the actual char height is larger, it respects the actual char height."
(when-let ((project (project-current)))
(expand-file-name (car (project-roots project))))))
(and (fboundp 'ffip-get-project-root-directory)
(ignore-errors (ffip-get-project-root-directory)))
(let ((inhibit-message t))
(ignore-errors (ffip-get-project-root-directory))))
(and (bound-and-true-p projectile-mode)
(ignore-errors (projectile-project-root)))
default-directory))))