Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
Fix: Add missing $ in \\.jar so that only files that end with .jar ar…
Browse files Browse the repository at this point in the history
…e ignored

Fix: Add missing $ in \\.swp so that only files that end with .swp are ignored

Fix: Add missing $ in \\.pyc so that only files that end with .pyc are ignored

Fix: Add ^ to target/, so that only the target directory would be ignored

Removed file.ignore-pattern \\.git, \\.DS_Store, and \\.nrepl-port

Changed file.ignore-pattern ~ to ~$

Removed extraneous parentheses in file.ignore-pattern (^\\..*)
and reduced pattern to ^\\.
  • Loading branch information
Dadie committed Jun 18, 2015
1 parent 20681a3 commit 29fe31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/settings/default/default.behaviors
Expand Up @@ -52,7 +52,7 @@
[:app :lt.objs.workspace/init-workspace-cache-dir]
[:app :lt.objs.metrics/init-metrics]
[:app :lt.objs.keyboard/chord-timeout 1000]
[:app :lt.objs.files/file.ignore-pattern "(^\\..*)|\\.class$|target/|svn|cvs|\\.git|\\.pyc|~|\\.swp|\\.jar|.DS_Store|\\.nrepl-port"]
[:app :lt.objs.files/file.ignore-pattern "^\\.|\\.class$|^target/|svn|cvs|\\.pyc$|~$|\\.swp$|\\.jar$"]
[:app :lt.objs.style/provide-skin "dark" "core/css/skins/new-dark.css"]
[:app :lt.objs.style/provide-skin "light" "core/css/skins/new-dark.css"]
[:app :lt.objs.style/provide-skin "new-dark" "core/css/skins/new-dark.css"]
Expand Down

0 comments on commit 29fe31c

Please sign in to comment.