diff options
-rw-r--r-- | boxes.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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. | ||
1726 | struct function simpleEditCommands[] = | 1729 | struct function simpleEditCommands[] = |
1727 | { | 1730 | { |
1728 | {"backSpaceChar", "Back space last character.", 0, {backSpaceChar}}, | 1731 | {"backSpaceChar", "Back space last character.", 0, {backSpaceChar}}, |