-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to Justify selected text ? #3147
Comments
I believe it is a work for plugin (If you are about hard wrap which persist in the file). @taconi does prettier taconi/plugin-channel#37 solves this? If you need softwrap you can use |
The prettier plugin uses the prettier tool and I know that it formats markdown files, maybe this plugin with some config help to solve this. You can also use the manager plugin to create your own formatters: -- ~/.config/micro/init.lua
MANAGER_FORMATTERS_ENABLED = true
formatters = {
-- yarn global add markdownlint-cli
{ cmd = 'markdownlint --dot --fix %f', onSave = true, filetypes = { 'markdown' } },
} |
Seems kinda annoying that the solution is to install a plugin that depends on a tool written in node.js. I tried to write a plug-in that would do that, but could not figure how to access |
We can add exporting Or perhaps you can get by with using the buffer cursor's |
That sounds like it would be a reasonable addition in general, as, for example, anyone who would want to write a plug-in that prints or outputs a table would also want to know the width of strings of text. |
What is the equivalent of Nano's ^J for justifying text in Micro ?
Also Thank you very very much for creating a beautiful text editor like this. ❤️
The text was updated successfully, but these errors were encountered: