aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/boxes.c
diff options
context:
space:
mode:
Diffstat (limited to 'boxes.c')
-rw-r--r--boxes.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/boxes.c b/boxes.c
index 53cea4a..fb5367a 100644
--- a/boxes.c
+++ b/boxes.c
@@ -1722,7 +1722,10 @@ static int handleEvent(long extra, struct keyevent *event)
1722 1722
1723 1723
1724// The default command to function mappings, with help text. Any editor that does not have it's own commands can use these for keystroke binding and such. 1724// The default command to function mappings, with help text. Any editor that does not have it's own commands can use these for keystroke binding and such.
1725// Though most of the editors have their own variation. Maybe just use the joe one as default, it uses short names at least. 1725// Though most of the editors have their own variation.
1726// TODO - Maybe just use the joe one as default, it uses short names at least.
1727// Though vi is the only one in POSIX, so might be better to treat that one as the "standard" default.
1728// With some commands from others for stuff vi doesn't support.
1726struct function simpleEditCommands[] = 1729struct function simpleEditCommands[] =
1727{ 1730{
1728 {"backSpaceChar", "Back space last character.", 0, {backSpaceChar}}, 1731 {"backSpaceChar", "Back space last character.", 0, {backSpaceChar}},