Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: work around breakage caused by rg v13.0.0
v13.0.0 broke a number of tools in Neovim, but not in Vim, as described here: BurntSushi/ripgrep#1892 My reading of that is that changes to Neovim will/may be required, because the `rg` author is right that rg's handling is "technically correct" and I don't think he's going to change it. Luckily, we don't have to take sides in that argument because there is a straightforward enough workaround of always providing a path to search (ie. ".", only if one isn't already provided by the user). <tangential-rant> As I lamented here: https://twitter.com/wincent/status/1413536091425198082 installing and building docvim on this machine (in order to include the update to the "HISTORY" section in the docs) is a frickin' ordeal. It takes: 1. 5.53s to clone the repo. 2. 3m56s to install GHC. 3. 3m24s to build the project. 4. 1.64s to run the built tool. Which seems massively out-of-proportion for something that clocks in at 1,380 lines of Haskell according to `sloccount`. On the upside, this is one of the few tasks I can throw at this Linux box that actually taxes the machine. 😆 Steps: git clone git@git.wincent.com:public/docvim.git cd docvim bin/docvim \ -c ~/.vim/pack/bundle/opt/ferret \ ~/.vim/pack/bundle/opt/ferret/README.md \ ~/.vim/pack/bundle/opt/ferret/doc/ferret.txt # That did't work; need to build first, then retry: bin/build bin/docvim \ -c ~/.vim/pack/bundle/opt/ferret \ ~/.vim/pack/bundle/opt/ferret/README.md \ ~/.vim/pack/bundle/opt/ferret/doc/ferret.txt Closes: #78
- Loading branch information