Updates git functions, vimrc, etc.

This commit is contained in:
William Carroll 2016-12-19 20:53:45 -05:00
parent 17f7e0c453
commit 9c8ffdb504
8 changed files with 62 additions and 18 deletions

View file

@ -13,10 +13,10 @@ function vfzopen() {
if [ ! -z "$exclude_dirs" ]; then
filename=$(find . -type f -name "$filetype" | \
xargs grep -l "$search_query" | fzf)
xargs grep -l "$search_query" | fzf-tmux)
else
filename=$(find . -type f -name "$filetype" -not -path "./${exclude_dir}/*" \
| xargs grep -l "$search_query" | fzf)
| xargs grep -l "$search_query" | fzf-tmux)
fi