grep: Add the option '--open-files-in-pager'
commit678e484b7d4e6388edeec3470bbbcd206817c148
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sat, 12 Jun 2010 16:36:51 +0000 (12 11:36 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sun, 13 Jun 2010 16:16:38 +0000 (13 09:16 -0700)
tree27f426c9db30f349d54e56cb28ee91c37ef2a050
parent685359cf2d1996aed2f1b1e2857528819d27105d
grep: Add the option '--open-files-in-pager'

This adds an option to open the matching files in the pager, and if the
pager happens to be "less" (or "vi") and there is only one grep pattern,
it also jumps to the first match right away.

The short option was chose as '-O' to avoid clashes with GNU grep's
options (as suggested by Junio).

So, 'git grep -O abc' is a short form for 'less +/abc $(grep -l abc)'
except that it works also with spaces in file names, and it does not
start the pager if there was no matching file.

[jn: rebased and added tests; with error handling fix from Junio
squashed in]

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-grep.txt
builtin/grep.c
git.c
t/lib-pager.sh [new file with mode: 0644]
t/t7006-pager.sh
t/t7810-grep.sh [moved from t/t7002-grep.sh with 100% similarity]
t/t7811-grep-open.sh [new file with mode: 0755]