Dmytro Maluka

Results 310 comments of Dmytro Maluka

> It doesn't seem like we can have our own "plug in" syntax highlighting files (the way we can with e.g. color schemes) I think we actually can. You can...

There is a plan to release a new version in the nearest days. There is already a prerelease: https://github.com/zyedidia/micro/releases/tag/v2.0.14-rc1. The release will probably have no differences from it. Some context:...

> Many plugins are outdated in official repo, there is unofficial one and a less official too. I heard many times that it is a mess, but had no time...

> I did write some plugins in Lua, and I'm just waiting for some features to drop (like refreshing the screen upon asynchronous update) to update them. IIRC asynchronous screen...

> I thought you'd made the required changes, but I haven't seen you've reverted them. The only thing that was reverted is the removal of the old API (https://github.com/zyedidia/micro/pull/3023/commits/4ffc2206eeea4a7d58bdf283e35cdf28b29b0b42 ->...

[ClearAllMessages()](https://github.com/zyedidia/micro/blob/cc195b6a96573ffc73fd13776653f70764ed4108/internal/buffer/message.go#L82) can be used to clear all linter messages from the gutter. It is not "toggle" though: it permanently removes the messages, not just hides them.

We can make the timeout arbitrarily long, as long as the user can easily interrupt it. That requires more work to implement (to do the http request in a separate...

I didn't mean running it in the background while the user can do something else in the UI. I meant running it in the "foreground" from the user perspective, like...

`help colors` described how to creates custom syntax highlighting files: https://github.com/zyedidia/micro/blob/master/runtime/help/colors.md#syntax-files TL;DR you need to be familiar with regular expressions.