https://github.com/arkaeriit/ascatto
A minimalist text editor
https://github.com/arkaeriit/ascatto
c text-editor
Last synced: 2 months ago
JSON representation
A minimalist text editor
- Host: GitHub
- URL: https://github.com/arkaeriit/ascatto
- Owner: Arkaeriit
- License: mit
- Created: 2019-05-29T00:38:42.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-16T19:05:03.000Z (over 6 years ago)
- Last Synced: 2025-03-22T21:36:25.375Z (over 1 year ago)
- Topics: c, text-editor
- Language: C
- Size: 46.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ASCatto
A minimalist text editor
This is just a toy project made to quickly do some small edit on config files and stuff like that.
To use it simply compile it with make and you will have a single executable. Use the executable with the file you want to edit as the first argument.
To access help just press h while running the program.

The idea behind ASCatto is to make a text editor where there is no cursor (the user can access every part of the file with ease) but the user can also view a part of the file in most of the screen.
ASCatto is written in C and the interface is made with ncurses.
Recent modification:
* Help menu is improved.
* Lines are not overlaping anymore.
* We can swap lines.
To do:
- [x] Let the user view lines larger than the terminal screen.
- [x] Make the line editing mode more easy to use.
- [x] Make it easier to navigate in the text-viewing widows.
- [ ] Handle non-ASCII characters.