David Briscoe

Results 137 issues of David Briscoe

I want all of my scripts to explicitly start in the current dirvish working directory, so I use the example from the doc: let g:dirvish_shdo_preamble = 'cd {}' Other users...

`:help quickfix-error-lists` describes how you can navigate between recent quickfix lists with `:colder` and `:newer`. It adds this note: > When adding a new error list, it becomes the current...

enhancement

On the latest (96d832a), AsyncGrep doesn't end when run on some invalid input. For example, when not terminating your strings: ``` grep \\" % ``` Fails with an error like...

bug

Extract the prg determining code (from asynccommand.vim) to a function to make it easier for someone to implement commands like #29.

refactoring

Trying to merge loader.lua and show L or R in a diff and I get errors in those buffers. ```viml :edit loader.lua :MergetoolStart :MergetoolToggleLayout LmR ``` LOCAL: > fatal: Not...

This PR isn't really mergeable because it's based on a bunch of my other PRs. Since they touched readme, it's not worth it to disentangle them. But if you merge...

Fix #13: add g:mergetool_args_order. Add g:mergetool_args_order to renames arguments as hidden files with the same names as git (BASE, REMOTE, LOCAL). This allows mergetool to behave as if invoked by...

Fix buffer already exists error on win32. Cannot create a buffer called 'remote' if there's already one called 'REMOTE' because win32 is not case-sensitive. When we use as git-mergetool, there's...

Fix #12: We were assuming users had 'hidden' set. mergetool#start ends with two steps: prefer_revision and set_layout. prefer_revision modifies the current buffer to remove conflict markers. set_layout closes all but...

I find tab completion or `:Unite command` gets cluttered with the myriad of merge commands, so I made this change to slim down the possibilities to what's relevant. It doesn't...