projectile-make-all-subdirs-projects
This commit is contained in:
parent
8f39f5d7ee
commit
1dfec9af73
@ -1286,6 +1286,13 @@ window is active in the perspective."
|
|||||||
:demand t
|
:demand t
|
||||||
:config
|
:config
|
||||||
(progn
|
(progn
|
||||||
|
(defun projectile-make-all-subdirs-projects (directory)
|
||||||
|
(cl-loop for file-info in (directory-files-and-attributes directory)
|
||||||
|
do (when (nth 1 file-info)
|
||||||
|
(write-region "" nil
|
||||||
|
(expand-file-name
|
||||||
|
(concat directory "/"
|
||||||
|
(nth 0 file-info) "/.projectile"))))))
|
||||||
(defun do-ag (&optional arg)
|
(defun do-ag (&optional arg)
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(if arg (helm-do-ag) (helm-projectile-ag)))
|
(if arg (helm-do-ag) (helm-projectile-ag)))
|
||||||
|
Loading…
Reference in New Issue
Block a user