Add some README
This commit is contained in:
parent
876f87ce92
commit
4f3dcb4888
18 changed files with 14 additions and 1 deletions
15
README.md
15
README.md
|
@ -4,6 +4,12 @@ This is a minimalistic, (mostly) POSIX complaint terminal text editor,
|
||||||
which should be working on all common (and not so common) VT100
|
which should be working on all common (and not so common) VT100
|
||||||
compatible terminal emulators.
|
compatible terminal emulators.
|
||||||
|
|
||||||
|
This started as a little experiment, how far I can go with just a C
|
||||||
|
compiler and the linux mapnages, without any libs or other external
|
||||||
|
dependencies such as ncurses. This is a working text editor and
|
||||||
|
perfectly fine for quickly edit some config files or take some
|
||||||
|
notes, but definitive not intended to use as a full blown IDE.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Load/Save/Create text files
|
* Load/Save/Create text files
|
||||||
|
@ -13,9 +19,16 @@ compatible terminal emulators.
|
||||||
* Super small (23k)
|
* Super small (23k)
|
||||||
* No dependencies
|
* No dependencies
|
||||||
|
|
||||||
|
## Limitations
|
||||||
|
|
||||||
|
* No UTF-8. If you open an UTF-8 file with only characters from the ASCII
|
||||||
|
table (most of Englisch texts and source code), it works just fine
|
||||||
|
(because ASCII and UTF-8 are compatible in the "upper part" of the table),
|
||||||
|
but you will mess up your file when you are edit files with special
|
||||||
|
chars like ö in it.
|
||||||
|
|
||||||
## Compile
|
## Compile
|
||||||
|
|
||||||
$ cd src
|
|
||||||
$ make
|
$ make
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
|
|
Loading…
Reference in a new issue