summaryrefslogtreecommitdiffstats
path: root/.emacs.d/ide-skel.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/ide-skel.el')
-rw-r--r--.emacs.d/ide-skel.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/ide-skel.el b/.emacs.d/ide-skel.el
index 90be871..eb70ec2 100644
--- a/.emacs.d/ide-skel.el
+++ b/.emacs.d/ide-skel.el
@@ -1481,7 +1481,7 @@ static char *close[] = {
(defvar ide-skel-dir-buffer nil)
-(defconst ide-skel-cvs-dir-regexp "\\(\\.svn\\|CVS\\)$")
+(defconst ide-skel-cvs-dir-regexp "\\(\\.svn\\|CVS\\|\\.git\\)$")
(defstruct ide-skel-project
root-path
@@ -3592,7 +3592,7 @@ Return a list of child widgets."
(defun ide-skel-proj-get-all-dirs (root-dir)
(condition-case err
- (split-string (shell-command-to-string (format "find %s -type d | grep -v '/CVS\\|/\\.svn'" root-dir))
+ (split-string (shell-command-to-string (format "find %s -type d | grep -v '/CVS\\|/\\.svn\\|/\\.git'" root-dir))
"\n" t)
(error nil)))