Dmytro Maluka
Dmytro Maluka
You can implement a custom command in lua for that. Add e.g. something like this to your init.lua: ```lua local micro = import("micro") local config = import("micro/config") local filepath =...
It should be possible to implement a plugin providing this feature. Although you might not be able to bind it to shift+click, if your terminal intercepts it, so you might...
This question was answered so many times. Does ctrl+shift work for you in any other terminal application?
> I'm guessing the difference is micro doesn't support KKP yet? No it doesn't. Micro is using [tcell](https://github.com/gdamore/tcell) library, there are or were plans to add KKP support to it:...
The PR that caused this regression: #3091. @dustdfg FYI. The intention of #3091 was to provide consistent cursor movements after a *multiline* selection: make sure that moving cursor down moves...
Currently not possible. We can implement such an option, if needed. But is it needed? The file name is displayed in the statusline as well.
As always, PRs are welcome. Or perhaps it could be implemented as a plugin, - if there was a way for a plugin to _temporarily_ rebind a key to some...
Looks like a whack-a-mole approach. I.e. what about any other `Buffer` methods that `onBeforeTextEvent` may want to use? This shows once again that this `onBeforeTextEvent` interface is poorly thought out...
I have a counter-question: are we sure that `Messages` really belongs in `SharedBuffer`, not in `Buffer`? And same about `Suggestions`, `Completions`, many of `Settings` (such as `ruler`, `softwrap` and so...