ledit

Text editor (WIP)
git clone git://lumidify.org/ledit.git (fast, but not encrypted)
git clone https://lumidify.org/git/ledit.git (encrypted, but very slow)
Log | Files | Refs | README | LICENSE

commit 2f53fc9c11a1f7d9261c257e6c53be259bb1f41e
parent da620ad0dd9ca2e768f6d0289d25ecb51e2415d2
Author: lumidify <nobody@lumidify.org>
Date:   Tue, 26 Dec 2023 21:24:49 +0100

Fix default config

Diffstat:
Mkeys_command.c | 2++
Mkeys_config.h | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/keys_command.c b/keys_command.c @@ -1,5 +1,7 @@ /* FIXME: remove CHECK_VIEW_LOCKED when it is confirmed that the new system works properly */ /* FIXME: Parse commands properly and allow combinations of commands */ +/* FIXME: properly parse commands - in particular, shown an error if there are extra + characters on the line */ #include <stdio.h> #include <ctype.h> #include <stdlib.h> diff --git a/keys_config.h b/keys_config.h @@ -139,7 +139,7 @@ struct { char *func_name; char *text; } commands_default[] = { - {"write-quit", "wg"}, + {"write-quit", "wq"}, {"write", "w"}, {"quit", "q"}, {"create-view", "v"},