Dmytro Maluka
Dmytro Maluka
You are right, but I think all that is not so important. What's important is how to fix it. (I assume you agree that this is a bug that needs...
Yes, that's exactly the issue.
If your script prints just one line of output and you want to see this line in micro's command bar in the bottom, you can use the `run` command. If...
Yeah, right. Maybe it is not critical per se, but it would be good to understand what exactly is going on. At the moment I don't understand why `size
What if the user selects 1000 lines from bottom up and then presses the down key? It seems we need a proper fix instead. Simply passing a constant value to...
Hold Shift, press PageUp several times and release Shift. You now have a large selection (several screens) and you are at the top of this selection, not at the bottom...
Indeed, github's editor behaves like you expect (but who uses it?). I've just tried emacs, nano, gedit and geany. Gedit is the only one that behaves as you'd expect. Emacs,...
> Then I'd propose to add a setting parameter I'd propose not to, unless really needed. I'd personally would be fine with either behavior, as a user I've never paid...
Ok, let's merge this PR then. I've also uploaded PR #3268 which fixes the inconsistent mouse selection behavior. With both PRs together, both keyboard and mouse selections should work as...
We could apply such a simple fix (in addition to https://github.com/dustdfg/micro/commit/da2d4cf56d92a7fd51da5aed569a931a4b1bb2d0): ``` --- a/internal/action/globals.go +++ b/internal/action/globals.go @@ -31,6 +31,8 @@ func WriteLog(s string) { // If the current bufpane is...