Steven Arcangeli
Steven Arcangeli
Agree that it would make sense for the `manage_folds` option to accept a filetype table. Will put that on the backlog
I can add logic to make `:AerialClose` close the first unrelated aerial window if the buffer doesn't have any symbols, but making this work for `:AerialToggle` may not be possible....
Can't reproduce; it works fine for me. Note that it won't close if you are in a window that *does* support symbols. This was only added for buffers with no...
Ah, you meant for buffers with support but zero symbols. Updated and it should handle that case now too.
I agree that the windows (especially the active window) getting squished is not ideal. I've pushed up a change that should fix that. This won't produce the exact behavior you're...
Probably doable, but I'm not sure it's necessary now that we have treesitter support. We can get so much more and better information from the treesitter parsers than we could...
@pidgeon777 Thanks for the detailed explanation! I think this is a fair ask. @b0o definitely agree that it makes a lot of sense to add to null-ls. If a bunch...
Tried it myself, couldn't get it to repro. Couple things you can try to get more debugging info: * When you get into the state where your mapping fails, does...
Thaaaaat's pretty weird! If `:AerialToggle` works when called directly, then I don't think it could be anything aerial-specific. It does sound like there's something wonky happening with the bindings, though...
Sort of. The query engine is exposed for API usage: ```python import dql engine = dql.Engine() engine.connect('us-east-1') engine.execute("SCAN count(*) FROM my-table") ``` This is safe in that this API is...