Andrew Swerlick

Results 14 comments of Andrew Swerlick

What's the recommended next steps for apps that were using 3.2.0.2 and can no longer build since that version was yanked. Should we be upgrading to 3.3.5.1? Will you restore...

Was able to fix this issue with https://github.com/folke/polydock/pull/55

> Thanks for working on this! > > Can you doubl-check if built-in treesit works with our [plugins](https://github.com/emacs-tree-sitter/ts-fold#-plugins)? 😅 I haven't done that yet, but I'll take a look as...

So I played around some more and it looks pretty hard to support both treesitter implementations simultaneously, but it's actually pretty easy to do an actual port. The current state...

Yeah I generally agree there are more arguments for a separate package, though I do think it's worth noting that on the https://emacs-tree-sitter.github.io/ homepage it says > For Emacs 29+,...

> Can you elaborate? So the more I've thought about this it probably won't work because it relies on some things I don't think exist in the emacs world. In...

@nbekirov I have seen that, but it seemed a little different in goals, even if the implementation ends up being similar. From the example included, it looks like that user...

I'd like to bump this questions because I spent a long time digging into this problem before concluding it's just not possible. I'm trying to build a factorybot plugin/integration for...

I figured out a way around my particular problem, by doing this ``` module FactoryHelpers def api_object_factory(name, options = {}, &block) raise ArgumentError, "You must specify a class" unless options[:class]...

Cool, what I'll probably do is keep playing with my prototype to see if I can easily support both approaches in a single version. That will make it easier to...