https://github.com/keyan/zi
(Incomplete) modal text editor
https://github.com/keyan/zi
Last synced: about 1 year ago
JSON representation
(Incomplete) modal text editor
- Host: GitHub
- URL: https://github.com/keyan/zi
- Owner: keyan
- Created: 2020-04-08T15:30:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T19:03:34.000Z (about 6 years ago)
- Last Synced: 2025-02-09T00:43:09.506Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zi
A simple text editor built referencing antirez's [kilo](https://github.com/antirez/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](https://vt100.net/docs/vt100-ug/chapter3.html#S3.3.2).
Uses the [`termios` interface](http://man7.org/linux/man-pages/man3/termios.3.html) through unix specific golang bindings provided by https://github.com/golang/sys.