├── .cvsignore ├── .gitignore ├── .mg ├── CMakeLists.txt ├── CVS ├── Entries ├── Repository └── Root ├── GNUmakefile ├── Makefile ├── README ├── README.md ├── autoexec.c ├── basic.c ├── bell.c ├── buffer.c ├── chrdef.h ├── cinfo.c ├── cmode.c ├── cscope.c ├── def.h ├── dir.c ├── dired.c ├── display.c ├── echo.c ├── extend.c ├── file.c ├── fileio.c ├── funmap.c ├── funmap.h ├── grep.c ├── help.c ├── interpreter.c ├── kbd.c ├── kbd.h ├── key.h ├── keymap.c ├── line.c ├── log.c ├── log.h ├── macro.c ├── macro.h ├── main.c ├── match.c ├── meson.build ├── mg-static ├── README.md └── generate-mg-static ├── mg.1 ├── modes.c ├── paragraph.c ├── pathnames.h ├── re_search.c ├── region.c ├── search.c ├── spawn.c ├── tags.c ├── tty.c ├── ttyio.c ├── ttykbd.c ├── tutorial ├── undo.c ├── util.c ├── version.c ├── window.c ├── word.c └── yank.c /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/.cvsignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/.gitignore -------------------------------------------------------------------------------- /.mg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/.mg -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/CVS/Entries -------------------------------------------------------------------------------- /CVS/Repository: -------------------------------------------------------------------------------- 1 | src/usr.bin/mg 2 | -------------------------------------------------------------------------------- /CVS/Root: -------------------------------------------------------------------------------- 1 | anoncvs@ftp.hostserver.de:/cvs 2 | -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/GNUmakefile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/README.md -------------------------------------------------------------------------------- /autoexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/autoexec.c -------------------------------------------------------------------------------- /basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/basic.c -------------------------------------------------------------------------------- /bell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/bell.c -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/buffer.c -------------------------------------------------------------------------------- /chrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/chrdef.h -------------------------------------------------------------------------------- /cinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/cinfo.c -------------------------------------------------------------------------------- /cmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/cmode.c -------------------------------------------------------------------------------- /cscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/cscope.c -------------------------------------------------------------------------------- /def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/def.h -------------------------------------------------------------------------------- /dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/dir.c -------------------------------------------------------------------------------- /dired.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/dired.c -------------------------------------------------------------------------------- /display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/display.c -------------------------------------------------------------------------------- /echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/echo.c -------------------------------------------------------------------------------- /extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/extend.c -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/file.c -------------------------------------------------------------------------------- /fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/fileio.c -------------------------------------------------------------------------------- /funmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/funmap.c -------------------------------------------------------------------------------- /funmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/funmap.h -------------------------------------------------------------------------------- /grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/grep.c -------------------------------------------------------------------------------- /help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/help.c -------------------------------------------------------------------------------- /interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/interpreter.c -------------------------------------------------------------------------------- /kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/kbd.c -------------------------------------------------------------------------------- /kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/kbd.h -------------------------------------------------------------------------------- /key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/key.h -------------------------------------------------------------------------------- /keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/keymap.c -------------------------------------------------------------------------------- /line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/line.c -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/log.h -------------------------------------------------------------------------------- /macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/macro.c -------------------------------------------------------------------------------- /macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/macro.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/main.c -------------------------------------------------------------------------------- /match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/match.c -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/meson.build -------------------------------------------------------------------------------- /mg-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/mg-static/README.md -------------------------------------------------------------------------------- /mg-static/generate-mg-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/mg-static/generate-mg-static -------------------------------------------------------------------------------- /mg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/mg.1 -------------------------------------------------------------------------------- /modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/modes.c -------------------------------------------------------------------------------- /paragraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/paragraph.c -------------------------------------------------------------------------------- /pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/pathnames.h -------------------------------------------------------------------------------- /re_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/re_search.c -------------------------------------------------------------------------------- /region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/region.c -------------------------------------------------------------------------------- /search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/search.c -------------------------------------------------------------------------------- /spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/spawn.c -------------------------------------------------------------------------------- /tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/tags.c -------------------------------------------------------------------------------- /tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/tty.c -------------------------------------------------------------------------------- /ttyio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/ttyio.c -------------------------------------------------------------------------------- /ttykbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/ttykbd.c -------------------------------------------------------------------------------- /tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/tutorial -------------------------------------------------------------------------------- /undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/undo.c -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/util.c -------------------------------------------------------------------------------- /version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/version.c -------------------------------------------------------------------------------- /window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/window.c -------------------------------------------------------------------------------- /word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/word.c -------------------------------------------------------------------------------- /yank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hboetes/mg/HEAD/yank.c --------------------------------------------------------------------------------