No description
- Zig 100%
| src | ||
| .gitignore | ||
| build.zig | ||
| README.md | ||
stevi is a vi-like modal text editor.
Modes:
There are three modes - regular, insert and command
Regular
Regular mode is the mode in which you navigate and run operators
Operators:
w - next word
0 - start of line
Insert
Insert mode is the mode in which you input text. You enter it by typing i in regular mode. You will start typing at your cursor location
Command
Command mode is the mode in which you run commands. You can enter it by typing ; in regular mode.
Current commands:
;q - exit the editor
;eFILENAME - edit a file
;w - write your changes to the file
Compile instructions:
cd stevi/
zig build
Running instructions:
cd stevi/
./zig-out/bin/stevi
AI disclosure
All the code and logic in this repository is human written except for two boilerplate structs in ansi.zig which are marked as AI generated