On Tue, Apr 24, 2018 at 01:37:36AM -0400, Eric Sunshine wrote: > On Tue, Apr 24, 2018 at 1:07 AM, Taylor Blau <me@xxxxxxxxxxxx> wrote: > > Take advantage of 'git-grep(1)''s new option, '--column-number' in order > > to teach Peff's 'git-jump' script how to jump to the correct column for > > any given match. > > > > 'git-grep(1)''s output is in the correct format for Vim's jump list, so > > no additional cleanup is necessary. > > > > Signed-off-by: Taylor Blau <me@xxxxxxxxxxxx> > > --- > > contrib/git-jump/git-jump | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > Based upon Ævar review[1], I was expecting to see git-jump/README > modified by this patch, as well. Perhaps you overlooked or forgot > about that review comment, or perhaps you disagreed with it? Yes, and thank you for pointing that out. I recall reading his mail and thought that when I prepared v3 that I had already included his changes, but I had in fact not done so. I amended the git-jump's README to prepare for v4, but was somewhat confused by Ævar's comment when I reread [1]. I believe he was suggesting updating the example to remove a reference to ag(1)'s '--column' when configuring jump.grepCmd to 'ag --column'. Since git-{grep,jump} support this now by default, I changed that line to simply 'ag', instead of 'ag --column', as such: diff --git a/contrib/git-jump/README b/contrib/git-jump/README index 4484bda410..7630e16854 100644 --- a/contrib/git-jump/README +++ b/contrib/git-jump/README @@ -37,3 +37,3 @@ Git-jump can generate four types of interesting lists: - 3. Any grep matches. + 3. Any grep matches, including the column of the first match on a line. @@ -67,3 +67,3 @@ git jump grep -i foo_bar # use the silver searcher for git jump grep -git config jump.grepCmd "ag --column" +git config jump.grepCmd "ag" -------------------------------------------------- @@ -84,3 +84,3 @@ leaving you to locate subsequent hits in that file or other files using the editor or pager. By contrast, git-jump provides the editor with a -complete list of files and line numbers for each match. +complete list of files, lines, and a column number for each match. --- Does this look OK? Thanks, Taylor