.emacs-my
changeset 88 9c77c6407546
parent 87 9258c46dc165
child 89 a6344ca566e6
equal deleted inserted replaced
87:9258c46dc165 88:9c77c6407546
   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       ;; XXX Need use -prune for performance.
   319       grep-find-command "find . '(' -name .svn -o -name CVS -o -name .hg -o -name _darcs ')' -prune -o -type f -name '*' -print0 | xargs -0 -e grep -nH "
   320       grep-find-command "find . -type f ! -path '*.svn*' ! -path '*CVS*' ! -path '*.hg*' ! -path '*_darcs*' -name '*' -print0 | xargs -0 -e grep -nH "
       
   321       grep-highlight-matches nil ; do not set t because some grep do not has --color options
   320       grep-highlight-matches nil ; do not set t because some grep do not has --color options
   322       grep-tree-command "find <D> <X> -type f <F> -print0 | xargs -0 -e grep <C> -nH  <R>"
   321       grep-tree-command "find <D> <X> -type f <F> -print0 | xargs -0 -e grep <C> -nH  <R>"
   323       grep-use-null-device t)
   322       grep-use-null-device t)
   324 (setq blink-matching-paren-on-screen t)
   323 (setq blink-matching-paren-on-screen t)
   325 
   324