On Sun, May 10, 2020 at 07:34:09PM +0100, George Brown wrote: > Arguably the most interoperable way for "git jump" to work would be to > output the formatted lines and do nothing else, leaving it to users to > choose how to operate upon the output/invoke editors. Of course such > a change would break the workflow of anyone who uses "git jump" today > and isn't a valid option. Looks like I missed an exciting thread, but let me add a few thoughts as the author of git-jump: - I had no inkling that people would run it from within vim; I assumed they'd use more integrated tools like fugitive.vim. ;) I don't think it's wrong to do so, though. - The paragraph quoted above is the heart of the matter. The tool does two things: generate the list and open the editor. My thinking in combining them was that "generate the list" was pretty simple and just used existing tools anyway, but we have grown a _bit_ of a complexity over the years that might make it worth using. IMHO the right solution here is a command-line option to say "don't start an editor, just send output". Setting GIT_EDITOR=cat accomplishes the same thing, but it's much less obvious/discoverable. - I'm pretty sure git-jump does _not_ work with emacs or emacsclient. Somebody corresponded with me off-list about patches many years ago, but I can't remember what the hold-up was. If anybody is interested in pushing that forward, I'd be happy to dig it out my archive. However, it should work with gvim, and any isatty() check would potentially cause issues there. So I'd much prefer the caller say explicitly that they're not expecting the editor to start. So I'm OK to leave the status quo and let people use the GIT_EDITOR solution in this instance. But I'd also be happy to take a patch for "--no-editor" or similar if somebody wants to work it up. -Peff