Will Spurgin

Results 56 comments of Will Spurgin

@solnic I think you'll want to update that DSL extension recommendation to ```ruby result.update(name => value) if result.output && !result[name] ``` Otherwise it'll break nested paths because `output` will be...

Fixed lint errors seen in https://github.com/neovim/neovim/actions/runs/3265613418

@zeertzjq can I get a rerun on CI / windows? It looks like an unrelated failure (random nvim process crash). The [previous run](https://github.com/neovim/neovim/actions/runs/3265613418/jobs/5368700356) before the lint fixes passed on windows.

@justinmk Hi again! Looks like this fix works with Windows now too 🚀 - can I request your review (as you had the most context on the original PRs/issues)?

@zeertzjq I think Justin might be occupied on other more important work than this teeny PR. I see that reviews aren't required for PRs to be merged, but is there...

I'm still having this issue on 0.1.4. `set noshowcmd` & `set nolazyredraw` makes the lag go away. All single motion `w j k l h b` etc. will be laggy...

I use [graphlient](https://github.com/ashkan18/graphlient) (which uses `graphql-client` under the hood). And this whole dynamic query thing has been tickling my brain. I totally respect the idea that the library is trying...

👋 Appreciate the PR! We've moved to GitHub actions now thought

Like with #176 I don't want to add to the existing Batches mocking/testing since it's gonna get either a major overhaul or disappear depending on what I learn from Sidekiq....

Late to the party but I think the matcher you're looking for is `at` e.g., ```ruby Timecop.freeze do AwesomeJob.perform_in 0.seconds 'Awesome', true # test with... expect(AwesomeJob).to have_enqueued_sidekiq_job('Awesome', true).at(Time.now) end ```...