Dmytro Maluka

Results 310 comments of Dmytro Maluka

Yeah, this is a regression, thanks for reporting. We missed that since commit b68461cf72cb the terminal code has been (slightly hackily) relying on nil events as notifications to close the...

I'm using the following in my init.lua for lazy line selection: ``` function selectLineUp(bp) if not bp.Cursor:HasSelection() then bp:EndOfLine() bp:SelectToStartOfLine() else bp:SelectUp() bp:SelectToStartOfLine() end end function selectLineDown(bp) if not bp.Cursor:HasSelection()...

> After downloading the new binary today, my `selectblock` function no longer works. I suspect this is a result of **Fix Deselect() after mouse selection [3f810c2](https://github.com/zyedidia/micro/commit/3f810c24d231daaee00239a919feb415e864653f)** or **Fix cursor moving...

> I'm thinking about the same. We may clean up and unify things by changing behavior of some action without changing behavior of the default keys bound to them (so...

I would actually prefer the first version, i.e. making `GetArg` a buffer object method, to avoid unnecessary additions to the "primary" documentation in `plugins.md` (to keep it small). Also, if...

My vote is still for exporting GetArg and GetWord as buffer methods...

Sounds good, I wouldn't mind having rights to put labels like "reviewed and can be merged" or "solved and can be closed" (as a substitute for the lack of the...

@dustdfg > How do you manage your version that includes all the not merged PR's? Just bunch of merge commits? Yeah, just my *local* branch with a bunch of merge...

> I think it’s time to add some maintainers to the project to help out. I think @JoeKar and @dmaluka would make good candidates to start. Thanks, I would be...