aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2015-01-04 14:55:34 +1000
committerDavid Walter Seikel2015-01-04 14:55:34 +1000
commitc4fccac1e57e1d003468f277ddba281c8c66827b (patch)
tree0f04d6283be1d325fd1430679c404ec6b3b0623a
parentUpdated to match toybox 0.4.8, xmsprintf() -> xmprintf(). (diff)
downloadboxes-c4fccac1e57e1d003468f277ddba281c8c66827b.zip
boxes-c4fccac1e57e1d003468f277ddba281c8c66827b.tar.gz
boxes-c4fccac1e57e1d003468f277ddba281c8c66827b.tar.bz2
boxes-c4fccac1e57e1d003468f277ddba281c8c66827b.tar.xz
TODO++
-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}},