Neko Box Coder
Neko Box Coder
I am not sure if I am missing something but what's the difference between `SelectNextTextOccurrence` and `Find` + `FindNext`. Aren't they doing the same thing (i.e. Find the next occurrence...
I understand the purpose of adding `SelectWord` and the fact that `Find` brings up a prompt even if there's a selection. But apart from that, `FindNext` and `FindPreviouis` already do...
> Actually `Select*TextOccurrence` is a replication of a very standard text editor function. It is called `editor.action.nextSelectionMatchFindAction` in _vscode_, `vim::MoveToNext` in _zed_, etc... > Depending on your color theme and...
> I get the impression that you are trying to minimize code duplication at all costs. But IMHO it's not necessarily a bad thing to have a little duplicated code...
> It's actually one of my mini plugins, and I like it so much that I thought it might be of use to others as well. But if you really...
@JoeKar Ideally, I would want an UI feedback when downloading or something, but that would probably require async or something like that (Both with command line interface and inside the...
@dmaluka @JoeKar Yeah... The suggestion is good but I think someone else maybe better off implementing it than me given I am not that familiar with the codebase and language...
Hi @dmaluka @JoeKar I have increased the timeout to 30 seconds, which should be enough for the majority of the plugins even if the internet is quite slow. Also added...
> Currently, `bindings.json` is the source of truth for any changes away from the [default keybindings](https://github.com/zyedidia/micro/blob/master/runtime/help/keybindings.md). Some things become less clear after this change: > > 1. How can I...
> Alternatively (or do both!), make `showkey` easier to use. Yeah, I do agree `showkey` can be more intuitive, similar to the `raw` command. Alternatively, maybe we can add a...