mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
Fix out of order of enum. (needs better solution.)
This commit is contained in:
parent
e8d6e8f829
commit
1abb06f23b
1 changed files with 8 additions and 8 deletions
|
@ -19,6 +19,10 @@ const char *KeyBindingActionName[NUM_ABE] =
|
||||||
"move-front",
|
"move-front",
|
||||||
// MOVE_END
|
// MOVE_END
|
||||||
"move-end",
|
"move-end",
|
||||||
|
// MOVE_WORD_BACK
|
||||||
|
"move-word-back",
|
||||||
|
// MOVE_WORD_FORWARD
|
||||||
|
"move-word-forward",
|
||||||
// REMOVE_WORD_BACK
|
// REMOVE_WORD_BACK
|
||||||
"remove-word-back",
|
"remove-word-back",
|
||||||
// REMOVE_WORD_FORWARD
|
// REMOVE_WORD_FORWARD
|
||||||
|
@ -27,10 +31,6 @@ const char *KeyBindingActionName[NUM_ABE] =
|
||||||
"remove-char-forward",
|
"remove-char-forward",
|
||||||
// REMOVE_CHAR_BACK
|
// REMOVE_CHAR_BACK
|
||||||
"remove-char-back",
|
"remove-char-back",
|
||||||
// MOVE_WORD_BACK
|
|
||||||
"move-word-back",
|
|
||||||
// MOVE_WORD_FORWARD
|
|
||||||
"move-word-forward",
|
|
||||||
// ACCEPT_ENTRY
|
// ACCEPT_ENTRY
|
||||||
"accept-entry",
|
"accept-entry",
|
||||||
// ACCEPT_CUSTOM
|
// ACCEPT_CUSTOM
|
||||||
|
@ -51,6 +51,10 @@ char *KeyBindingActionDefault[NUM_ABE] =
|
||||||
"Control+a",
|
"Control+a",
|
||||||
// MOVE_END
|
// MOVE_END
|
||||||
"Control+e",
|
"Control+e",
|
||||||
|
// MOVE_WORD_BACK
|
||||||
|
"Alt+b",
|
||||||
|
// MOVE_WORD_FORWARD
|
||||||
|
"Alt+f",
|
||||||
// REMOVE_WORD_BACK
|
// REMOVE_WORD_BACK
|
||||||
"Control+Alt+h",
|
"Control+Alt+h",
|
||||||
// REMOVE_WORD_FORWARD
|
// REMOVE_WORD_FORWARD
|
||||||
|
@ -59,10 +63,6 @@ char *KeyBindingActionDefault[NUM_ABE] =
|
||||||
"Delete,Control+d",
|
"Delete,Control+d",
|
||||||
// REMOVE_CHAR_BACK
|
// REMOVE_CHAR_BACK
|
||||||
"BackSpace,Control+h",
|
"BackSpace,Control+h",
|
||||||
// MOVE_WORD_BACK
|
|
||||||
"Alt+b",
|
|
||||||
// MOVE_WORD_FORWARD
|
|
||||||
"Alt+f",
|
|
||||||
// ACCEPT_ENTRY
|
// ACCEPT_ENTRY
|
||||||
// TODO: split Shift return in separate state.
|
// TODO: split Shift return in separate state.
|
||||||
"Control+j,Control+m,Return",
|
"Control+j,Control+m,Return",
|
||||||
|
|
Loading…
Reference in a new issue