about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/lisp/init-project.el22
1 files changed, 14 insertions, 8 deletions
diff --git a/.emacs.d/lisp/init-project.el b/.emacs.d/lisp/init-project.el
index 0611b71..bacf4ac 100644
--- a/.emacs.d/lisp/init-project.el
+++ b/.emacs.d/lisp/init-project.el
@@ -48,21 +48,27 @@
   (add-to-list 'project-switch-commands '(?m "Magit" magit-status) t)
   (add-to-list 'project-switch-commands '(?q "Replace Regexp" project-query-replace-regexp) t)
 
+  ;; TODO remove this when happy with project-rootfile
   ;; project-root and project-try-local copied/modified from https://github.com/karthink/project-x/blob/master/project-x.el
-  (cl-defmethod project-root ((project (head local)))
-    "Return root directory of current PROJECT."
-    (cdr project))
-  (defun project-try-local (dir)
-    "Treat DIR as a project if it contains a .project file."
-    (if-let ((root (locate-dominating-file dir ".project")))
-        (cons 'local root)))
+  ;; (cl-defmethod project-root ((project (head local)))
+  ;;   "Return root directory of current PROJECT."
+  ;;   (cdr project))
+  ;; (defun project-try-local (dir)
+  ;;   "Treat DIR as a project if it contains a .project file."
+  ;;   (if-let ((root (locate-dominating-file dir ".project")))
+  ;;       (cons 'local root)))
   ;; Add this hook last so so that vc takes precedence over local
-  (add-hook 'project-find-functions 'project-try-local 90)
+  ;;(add-hook 'project-find-functions 'project-try-local 90)
   :bind
   ("C-x p P" . project-switch-src-project)
   ("C-x p M-p" . project-switch-project)
   ("C-x f" . project-recentf))
 
+(use-package project-rootfile
+  :after project
+  :config
+  (add-to-list 'project-find-functions #'project-rootfile-try-detect t))
+
 (use-package perspective
   ;; Don't restart persp-mode when re-evaluating, as it clears the current persp list
   :init (or persp-mode (persp-mode))
#n126'>126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163