Chris Rawnsley
Chris Rawnsley
I think fzy algorithm is agnostic to input sort order (i.e. recent) unlike fzf. It gives its ordering based on [how each match scores](https://github.com/jhawthorn/fzy/blob/master/ALGORITHM.md#fzys-scoring).
The DevTools are a valid concern however I think that is small patch away from highlighting actions with certain properties, i.e. if error is true then display action as red....
`node-detective` has [ES2017 support](https://github.com/substack/node-detective/blob/4aa3713807feb699f18d83152e5475d0ec5345b6/index.js#L10) enabled already. On the specific point of object spread it is a ES2018 feature and only landed in Node 8.3. Perhaps it would be simpler to...
Appears to be fixed for me since 757b31309434d7adcd1361be26c1cd2a44d6ec9b
If you just want to set up with the built in `grep` command you can do this in your `vimrc`: ```vim if executable('ag') set grepprg=ag\ --vimgrep\ $* grepformat=%f:%l:%c:%m endif ```...