├── CONTRIBUTING.md ├── LICENSE ├── Makefile.in ├── README.md ├── buffer.c ├── buffer.h ├── button.c ├── button.h ├── color.c ├── color.enums ├── color.h ├── config.h ├── configure ├── dpy.c ├── dpy.h ├── editor.c ├── editor.h ├── event.c ├── event.h ├── font.c ├── font.enums ├── font.h ├── label.c ├── label.h ├── layout.c ├── layout.h ├── main.c ├── mkenum ├── pty.c ├── pty.h ├── ptylist.c ├── ptylist.h ├── statbar.c ├── statbar.h ├── uflags.h ├── utf8.c ├── utf8.h ├── util.c ├── util.h ├── widget.c ├── widget.h ├── xevent.c └── xevent.h /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/README.md -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/buffer.c -------------------------------------------------------------------------------- /buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/buffer.h -------------------------------------------------------------------------------- /button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/button.c -------------------------------------------------------------------------------- /button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/button.h -------------------------------------------------------------------------------- /color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/color.c -------------------------------------------------------------------------------- /color.enums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/color.enums -------------------------------------------------------------------------------- /color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/color.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/config.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/configure -------------------------------------------------------------------------------- /dpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/dpy.c -------------------------------------------------------------------------------- /dpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/dpy.h -------------------------------------------------------------------------------- /editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/editor.c -------------------------------------------------------------------------------- /editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/editor.h -------------------------------------------------------------------------------- /event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/event.c -------------------------------------------------------------------------------- /event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/event.h -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/font.c -------------------------------------------------------------------------------- /font.enums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/font.enums -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/font.h -------------------------------------------------------------------------------- /label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/label.c -------------------------------------------------------------------------------- /label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/label.h -------------------------------------------------------------------------------- /layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/layout.c -------------------------------------------------------------------------------- /layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/layout.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/main.c -------------------------------------------------------------------------------- /mkenum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/mkenum -------------------------------------------------------------------------------- /pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/pty.c -------------------------------------------------------------------------------- /pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/pty.h -------------------------------------------------------------------------------- /ptylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/ptylist.c -------------------------------------------------------------------------------- /ptylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/ptylist.h -------------------------------------------------------------------------------- /statbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/statbar.c -------------------------------------------------------------------------------- /statbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/statbar.h -------------------------------------------------------------------------------- /uflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/uflags.h -------------------------------------------------------------------------------- /utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/utf8.c -------------------------------------------------------------------------------- /utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/utf8.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/util.h -------------------------------------------------------------------------------- /widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/widget.c -------------------------------------------------------------------------------- /widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/widget.h -------------------------------------------------------------------------------- /xevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/xevent.c -------------------------------------------------------------------------------- /xevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleino/vtsh/HEAD/xevent.h --------------------------------------------------------------------------------