2016년 5월 31일 화요일

vim: grep 결과 컬러링

set grepprg=grep\ --color=always\ --exclude=tags\ --exclude=.git\ -n\ $*\ /dev/null
" --color=always: grep 결과에 색을 입혀준다.
" --exclude=GLOB: 매치된는 이름의 파일은 검색하지 않음
" :grep abc -wrn .  처럼 사용



참고
http://stackoverflow.com/questions/12764999/colorizing-the-output-of-make-grep-etc-in-vim