grizzl / fiplr

[DEPRECATED] An Emacs Fuzzy Find in Project Package
187 stars 14 forks source link

Better default ignores #53

Open mcandre opened 9 years ago

mcandre commented 9 years ago

Could fiplr ignore more binaries and metadata directories out of the box?

As a workaround, I manually ignore several of these in my .emacs:

    (setq fiplr-ignored-globs
          '((directories
             ;; Version control
             (".git"
              ".svn"
              ".hg"
              ".bzr"
              ;; NPM
              "node_modules"
              ;; Bower
              "bower_components"
              ;; Maven
              "target"
              ;; Python
              "__pycache__"))
            (files
             ;; Emacs
             (".#*"
              ;; Vim
              "*~"
              ;; Objects
              "*.so"
              "*.o"
              "*.obj"
              ;; Media
              "*.jpg"
              "*.png"
              "*.gif"
              "*.pdf"
              ;; Archives
              "*.gz"
              "*.zip"))
catesandrew commented 9 years ago

+1

mcandre commented 8 years ago

And build/, .gradle/ for Gradle projects!