* Clean up some "JSON" nameing in config to reflect generic config or HJSON

* Found why "r" wasn't working for reply in menu.hjson... now it crashes though because actionKeys extraArgs broken it seems
This commit is contained in:
Bryan Ashby
2015-09-17 23:17:15 -06:00
parent 1b46506cf8
commit 899cb658cc
2 changed files with 15 additions and 16 deletions

View File

@@ -542,25 +542,25 @@
*/
// :TODO: Need similar to viewId for actionKeys for specifis, e.g. viewId + index type stuff
{
"keys" : [ "p", "shift + p" ],
"action" : "@method:prevMessage"
},
keys: [ "p", "shift + p" ]
action: @method:prevMessage
}
{
keys: [ "n", "shift + n" ]
action: @method:nextMessage
},
}
{
"keys" : [ "escape", "q", "shift + q" ],
"action" : "@menu:messageArea"
},
keys: [ "escape", "q", "shift + q" ]
action: @menu:messageArea
}
// :TODO: why the fuck is 'r' not working but 'n' for example does?
{
keys: : [ "r", "shift + r" ]
keys: [ "r", "shift + r" ]
action: @method:replyMessage
extraArgs: {
menu: messageAreaReplyPost
}
},
}
{
"keys" : [ "down arrow", "up arrow", "page up", "page down" ],
"action" : "@method:movementKeyPressed"