Kevin Newton

Results 103 comments of Kevin Newton

Hey @jeremyevans yeah absolutely I'll move it up on my list

Hey @jeremyevans — I hope it's okay, I rebased and pushed a new commit straight to your branch. I've fixed up all of the cases for prism, so it should...

You probably need to specify the plugin on the command line or in a configuration file. Try adding `--plugins=ruby` to your invocation.

Also since this isn't an issue with this plugin specifically, but with plugins in general, I'm going to transfer this to the main repository.

❤️ Here's what I ended up settling on: ```ruby def bytesplice(range, value) previous_encoding = encoding begin force_encoding(Encoding::ASCII_8BIT) self[range] = value ensure force_encoding(previous_encoding) end self end ``` but note that this...

The _parser_ side of things in the new project is pretty far off, but the _lexer_ side of things is actually quite a bit closer. Maybe it's worth investigating using...

Hey @mame! I hit this same thing with ripper when I was writing prettier. I ended up solving it by taking the source, splitting it up into multiples lines, and...

@mame I see, I think I understand the problem better now. In that case it would probably be nice to have `Ruby::AST::Node` have methods like `{first,last}_character_column` or something similar.

I'm assuming this has something to do with how plugins are loaded because the XML plugin is using all the standard stuff (unlike the Ruby plugin, which has a whole...

Also, I'm not entirely clear. @kamitchell in the original request you wrote: > This is looking like a plugin loading issue in itself...I can reproduce the problem with other plugins...