A simple text editor built referencing antirez's kilo but using vim
style modal editing.
Does not use curses/ncurses and instead relies only ANSI escape sequences from the VT100 terminal. These codes are partially documented in escape_codes.info
, but more detailed documentation can be found in the VT100 reference manual.
Uses the termios
interface through unix specific golang bindings provided by https://github.com/golang/sys.