Tom Dalling

Results 15 comments of Tom Dalling

> No longer happening if I use `chruby` from master instead of `0.3.9`. For those using Homebrew, you can install chruby from the master branch using `brew install chruby --HEAD`.

Sounds like Visual Studio command line tools aren't available. Are you able to run `nmake` from the command line?

:thumbsup: This would be super handy for me too, as it would allow me to automate a few common procedures. Let me know if I can help with this, in...

Here's a workaround: ```vim map n (is-n)zv ``` The `zv` on the end will open folds so that the line is visible. This could be improved using `` to check...

Just wanted to "plus one" this and say that I've hit the same bug. I've tried to create a minimal reproducible example project, but I can't trigger the bug outside...

Here's a minimal reproduction project that shows the issue (see the README): https://github.com/tomdalling/JTCalendarBugReproduction I tried PR #218, and it mostly works. It causes some weirdness when repeatedly tapping the "Next...

I have a [personal workaround for this](https://github.com/tomdalling/config/blob/aee821868a9877e258d9e38b869af717a403db6a/nvim/plugin/infer_test_suite.vim). If you want to use it, you will need to tweak the patterns to work with whatever test framework you're using.

I think I've found the culprit. [`b:undo_ftplugin` within `vim-ruby`](https://github.com/vim-ruby/vim-ruby/blob/fbf85d106a2c3979ed43d6332b8c26a72542754d/ftplugin/ruby.vim#L136-L138) is responsible for resetting the `tags` option. I don't know why or how it is being executed, but if I remove...

After reading [Tim Pope's comment](https://github.com/vim-ruby/vim-ruby/issues/425#issuecomment-696534177), it seems that resetting the local `tags` option from a filetype plugin could be a common practice, in which case it makes sense to handle...

There are a couple of ways to do this currently (in RSchema v3). If those are the only keys in the hash, you can just use `either`: ```ruby RSchema.define do...