diff options
author | David Walter Seikel | 2015-01-04 14:55:34 +1000 |
---|---|---|
committer | David Walter Seikel | 2015-01-04 14:55:34 +1000 |
commit | c4fccac1e57e1d003468f277ddba281c8c66827b (patch) | |
tree | 0f04d6283be1d325fd1430679c404ec6b3b0623a | |
parent | Updated to match toybox 0.4.8, xmsprintf() -> xmprintf(). (diff) | |
download | boxes-c4fccac1e57e1d003468f277ddba281c8c66827b.zip boxes-c4fccac1e57e1d003468f277ddba281c8c66827b.tar.gz boxes-c4fccac1e57e1d003468f277ddba281c8c66827b.tar.bz2 boxes-c4fccac1e57e1d003468f277ddba281c8c66827b.tar.xz |
TODO++
-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}}, |