]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zsh/functions/g
Make zathura configuration file aware
[dotfiles.git] / zsh / .zsh / functions / g
1 local GREP_ARGS=(
2     --devices=skip
3     --colour=always
4     --with-filename
5     --line-number
6     --dereference-recursive
7     --binary-files=without-match
8     --exclude-dir=.git
9     --exclude-dir=.tags
10 )
11 grep $GREP_ARGS $@ | less