We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
+project-scan-for-projects
1 parent b181e8b commit d38da3dCopy full SHA for d38da3d
core/me-lib.el
@@ -722,10 +722,10 @@ recursive-p) to scan directories recursively."
722
723
(declare-function project-remember-projects-under "project")
724
725
-(defun +project-scan-for-projects (&optional dir)
726
- "Scan and remember projects under DIR or `+project-scan-dir-paths'."
+(defun +project-scan-for-projects (&rest dirs)
+ "Scan and remember projects under DIRS or `+project-scan-dir-paths'."
727
(interactive)
728
- (dolist (cons-dir (or dir +project-scan-dir-paths))
+ (dolist (cons-dir (or dirs +project-scan-dir-paths))
729
(let* ((cons-dir (ensure-list cons-dir))
730
(root-dir (car cons-dir))
731
(recursive (cdr cons-dir))
0 commit comments