Serge Voilokov
Serge Voilokov
to show tabs use `"indentchar": "."`
https://github.com/zyedidia/micro/issues/1992#issuecomment-1201826492
you can add a plugin like ```lua local evallog = nil function evalfile(filename, env) local f = assert(loadfile("eval.lua")) return f() end function errorhandler(err) return debug.traceback(err) end function evalFile(bp, args) bp:Save()...
you can bind your script `"F5": "command:fexec do-action.sh {f}` and do actions depending on the file type inside it. It is more flexible. For example, someday you may need to...
You can take a plugin: https://github.com/serge-v/micro-nextgutter It is not in plugin repo so clone it to the dir: ~/.config/micro/plug. Bind 'jump-next-gutter' command to some key.
yes, it is possible. Copy this code into ~/.config/micro/plug/resize/resize.lua. Use Shift+Alt+{R,T} to move vertical split. ``` local micro = import("micro") local config = import("micro/config") local fmt = import("fmt") function init()...