Skip to content

Commit

Permalink
further distills default *textmate-gf-ignore*
Browse files Browse the repository at this point in the history
* addes java 'classes' path to ignore (helpful for Clojure development)
* Don't ignore "./file.txt", since it's possible that the project root
is "./"
  • Loading branch information
timcharper committed Aug 26, 2010
1 parent 63ba1ff commit d11765c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion textmate.el
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@

;;; Minor mode

(defvar *textmate-gf-exclude* "/\\/\\.|(\\/|^)(\\.|vendor|fixtures|tmp|log|build)($|\\/)|(\\.xcodeproj|\\.nib|\\.framework|\\.app|\\.pbproj|\\.pbxproj|\\.xcode|\\.xcodeproj|\\.bundle|\\.pyc)$"
(defvar *textmate-gf-exclude*
"(/|^)(\\.+[^/]+|vendor|fixtures|tmp|log|classes|build)($|/)|(\\.xcodeproj|\\.nib|\\.framework|\\.app|\\.pbproj|\\.pbxproj|\\.xcode|\\.xcodeproj|\\.bundle|\\.pyc)(/|$)"
"Regexp of files to exclude from `textmate-goto-file'.")

(defvar *textmate-project-roots*
Expand Down

0 comments on commit d11765c

Please sign in to comment.