mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
First version of keybindings (#131)
This commit is contained in:
parent
09d2be260b
commit
073836f142
3 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
||||||
0.15.5:
|
0.15.5:
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
- Reduce time waiting for keyboard grab (#153)
|
- Reduce time waiting for keyboard grab (#153)
|
||||||
|
Improvements:
|
||||||
|
- (Start) adding keybinding support (#131)
|
||||||
|
|
||||||
0.15.4:
|
0.15.4:
|
||||||
New feature:
|
New feature:
|
||||||
|
|
|
@ -8,12 +8,12 @@ typedef enum _KeyBindingAction
|
||||||
CLEAR_LINE,
|
CLEAR_LINE,
|
||||||
MOVE_FRONT,
|
MOVE_FRONT,
|
||||||
MOVE_END,
|
MOVE_END,
|
||||||
|
MOVE_WORD_BACK,
|
||||||
|
MOVE_WORD_FORWARD,
|
||||||
REMOVE_WORD_BACK,
|
REMOVE_WORD_BACK,
|
||||||
REMOVE_WORD_FORWARD,
|
REMOVE_WORD_FORWARD,
|
||||||
REMOVE_CHAR_FORWARD,
|
REMOVE_CHAR_FORWARD,
|
||||||
REMOVE_CHAR_BACK,
|
REMOVE_CHAR_BACK,
|
||||||
MOVE_WORD_BACK,
|
|
||||||
MOVE_WORD_FORWARD,
|
|
||||||
NUM_ABE
|
NUM_ABE
|
||||||
} KeyBindingAction;
|
} KeyBindingAction;
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ void setup_abe ( void )
|
||||||
abe[iter].kb = NULL;
|
abe[iter].kb = NULL;
|
||||||
|
|
||||||
config_parser_add_option ( xrm_String,
|
config_parser_add_option ( xrm_String,
|
||||||
abe[iter].name, &( abe[iter].keystr ) );
|
abe[iter].name, (void **)&( abe[iter].keystr ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue