├── LICENSE ├── README.md ├── aedb ├── bin └── aed.bin ├── makefile ├── old └── aed.s └── src ├── char_buffer.c ├── char_buffer.h ├── cmd_ops.c ├── cmd_ops.h ├── conv.c ├── conv.h ├── editor.c ├── editor.h ├── line_buffer.c ├── line_buffer.h ├── main.c ├── screen.c ├── screen.h ├── text_buffer.c ├── text_buffer.h ├── user_input.c ├── user_input.h └── vkey.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/README.md -------------------------------------------------------------------------------- /aedb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/aedb -------------------------------------------------------------------------------- /bin/aed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/bin/aed.bin -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/makefile -------------------------------------------------------------------------------- /old/aed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/old/aed.s -------------------------------------------------------------------------------- /src/char_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/char_buffer.c -------------------------------------------------------------------------------- /src/char_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/char_buffer.h -------------------------------------------------------------------------------- /src/cmd_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/cmd_ops.c -------------------------------------------------------------------------------- /src/cmd_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/cmd_ops.h -------------------------------------------------------------------------------- /src/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/conv.c -------------------------------------------------------------------------------- /src/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/conv.h -------------------------------------------------------------------------------- /src/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/editor.c -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/line_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/line_buffer.c -------------------------------------------------------------------------------- /src/line_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/line_buffer.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/main.c -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/text_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/text_buffer.c -------------------------------------------------------------------------------- /src/text_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/text_buffer.h -------------------------------------------------------------------------------- /src/user_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/user_input.c -------------------------------------------------------------------------------- /src/user_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/user_input.h -------------------------------------------------------------------------------- /src/vkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalonbits/aed/HEAD/src/vkey.h --------------------------------------------------------------------------------