by shigemk2

当面は技術的なことしか書かない

emacs で、find & grep

(setq grep-find-command `("find . -type f -name '*' ! -path '*/.git/*' -print0 | xargs -0 grep -nH -e  /dev/null" . 80))

を、init.elに書く。
次に、

M-x grep-find

と打ち、ミニバッファの-eの後ろにワードを打ちこむと、サーチできる