equal
deleted
inserted
replaced
314 |
314 |
315 |
315 |
316 ;; ---------------------------------------------------------------------- |
316 ;; ---------------------------------------------------------------------- |
317 ;; *grep* |
317 ;; *grep* |
318 (setq grep-command "find . -name '*' -exec grep -nH '' {} ;" |
318 (setq grep-command "find . -name '*' -exec grep -nH '' {} ;" |
319 grep-find-command "find . -type f ! -path '*.svn*' ! -path '*CVS*' ! -path '*.hg*' -name '*' -print0 | xargs -0 -e grep -nH " |
319 ;; XXX Need use -prune for performance. |
|
320 grep-find-command "find . -type f ! -path '*.svn*' ! -path '*CVS*' ! -path '*.hg*' ! -path '*_darcs*' -name '*' -print0 | xargs -0 -e grep -nH " |
320 grep-highlight-matches nil ; do not set t because some grep do not has --color options |
321 grep-highlight-matches nil ; do not set t because some grep do not has --color options |
321 grep-tree-command "find <D> <X> -type f <F> -print0 | xargs -0 -e grep <C> -nH <R>" |
322 grep-tree-command "find <D> <X> -type f <F> -print0 | xargs -0 -e grep <C> -nH <R>" |
322 grep-use-null-device t) |
323 grep-use-null-device t) |
323 (setq blink-matching-paren-on-screen t) |
324 (setq blink-matching-paren-on-screen t) |
324 |
325 |