mg
mg copied to clipboard
Portable version of the OpenBSD maintained mg, micro emacs clone
``` # make sure the required packages are already installed $ pacman -Q | egrep '^(libbsd|ncurses|cmake)' cmake 3.26.2-1 libbsd 0.11.7-1 ncurses 6.4-1 ncurses-devel 6.4-1 $ cd build && cmake .....
https://github.com/hboetes/mg/blob/32efa2519d61f1402e8c4d6998b1db0a4408e41e/display.c#L330 so I tried to implement a basic syntax highlighting by first trying to color in digits. I tried to utilize ANSI escape codes as follows ``` } else if...
hey there, do you know why c-b and c-f work in the minibuffer (e.g. when using find-file) but backward-word and forward-word etc. do not?