.emacs
changeset 5 ddf0660702ec
parent 4 46543c097be0
child 6 d1c4515c3cfa
equal deleted inserted replaced
4:46543c097be0 5:ddf0660702ec
   307 
   307 
   308 ;; ----------------------------------------------------------------------
   308 ;; ----------------------------------------------------------------------
   309 ;; *grep*
   309 ;; *grep*
   310 (setq grep-command "find . -name '*' -exec grep -nH '' {} ;"
   310 (setq grep-command "find . -name '*' -exec grep -nH '' {} ;"
   311       grep-find-command "find . -type f ! -path '*.svn*' ! -path '*CVS*' ! -path '*.hg*' -name '*' -print0 | xargs -0 -e grep -nH "
   311       grep-find-command "find . -type f ! -path '*.svn*' ! -path '*CVS*' ! -path '*.hg*' -name '*' -print0 | xargs -0 -e grep -nH "
   312       grep-highlight-matches t
   312       grep-highlight-matches nil ; do not set t because some grep do not has --color options
   313       grep-tree-command "find <D> <X> -type f <F> -print0 | xargs -0 -e grep <C> -nH  <R>"
   313       grep-tree-command "find <D> <X> -type f <F> -print0 | xargs -0 -e grep <C> -nH  <R>"
   314       grep-use-null-device t)
   314       grep-use-null-device t)
   315 (setq blink-matching-paren-on-screen t)
   315 (setq blink-matching-paren-on-screen t)
   316 
   316 
   317 ;; ----------------------------------------------------------------------
   317 ;; ----------------------------------------------------------------------