diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-25 11:47:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-25 11:47:49 -0700 |
commit | 75b1b04c63e3dfa02fd71caa95c17ed2c3b43050 (patch) | |
tree | 75b33ebe54fbe3ce500a8eaaa1c87eec193010d2 /builtin | |
parent | 94c734a60726c78048e0a7b136df88f1c9dc1d60 (diff) | |
parent | f7febbea07cf6d65f85b0cdb6684d2e3666c557e (diff) | |
download | git-75b1b04c63e3dfa02fd71caa95c17ed2c3b43050.tar.gz |
Merge branch 'sk/spawn-less-case-insensitively-from-grep-O-i' into maint
"git grep -O" to show the lines that hit in the pager did not work
well with case insensitive search. We now spawn "less" with its
"-I" option when it is used as the pager (which is the default).
* sk/spawn-less-case-insensitively-from-grep-O-i:
git grep -O -i: if the pager is 'less', pass the '-I' option
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/grep.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin/grep.c b/builtin/grep.c index 69ac2d8797..b8d440d0e0 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -874,6 +874,9 @@ int cmd_grep(int argc, const char **argv, const char *prefix) if (len > 4 && is_dir_sep(pager[len - 5])) pager += len - 4; + if (opt.ignore_case && !strcmp("less", pager)) + string_list_append(&path_list, "-I"); + if (!strcmp("less", pager) || !strcmp("vi", pager)) { struct strbuf buf = STRBUF_INIT; strbuf_addf(&buf, "+/%s%s", |