Steven Arcangeli
Steven Arcangeli
Sadly I do not have the same amount of spare time that I used to, and I'm not actively working on any projects using Godot. However, I would be surprised...
The parser was choking because it didn't expect the `:` character to be there. I've pushed an update, could you try the latest master?
What backend are you using for `vim.ui.select`? This has to be the telescope or fzf backend, right? Because the built-in backend just uses normal mode so you navigate up and...
I've just pushed support for `:checkhealth`. If you can update dressing.nvim and then run `:checkhealth dressing` it will tell you which backend is being used for `vim.ui.select`
I think it would be reasonable to save and restore the last value if the user cancels out of an `input` window, provided that the `default` value is empty. Does...
I don't currently have any plans to support nested languages. It would be a little tricky because of how the treesitter [language extensions](https://github.com/stevearc/aerial.nvim/blob/master/lua/aerial/backends/treesitter/extensions.lua) work, but it's definitely possible.
I learned in working with conform.nvim that there are some injections that are "combined", meaning they merge all of their regions and therefore it is very difficult, maybe impossible, to...
I just added a `list_notes.py` script that calls `gpsoauth` and then `gkeepapi` directly, so that you can test the login and sync process outside of the plugin. While creating it,...
I think that for most languages both the treesitter and LSP backends do a good job of showing the real names of things just from the symbol information, so this...
Ah, apologies I should have been more clear: performance was the impetus for switching from global-variable configuration to the current system, but I _do not believe_ that your PR would...