.emacs-my
changeset 87 9258c46dc165
parent 84 f65916e51b79
child 88 9c77c6407546
equal deleted inserted replaced
86:0cf1b0216dac 87:9258c46dc165
   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