1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-25 13:55:34 -05:00

textbox/keybinding: Reindent

Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
Quentin Glidic 2016-04-07 15:07:02 +02:00
parent 5b0964ae32
commit 67c9fe158a

View file

@ -533,67 +533,67 @@ int textbox_keybinding ( textbox *tb, unsigned int modstate, xkb_keysym_t key )
int old_blink = tb->blink; int old_blink = tb->blink;
tb->blink = 2; tb->blink = 2;
// Left or Ctrl-b // Left or Ctrl-b
if ( abe_test_action ( MOVE_CHAR_BACK, modstate, key ) ) { if ( abe_test_action ( MOVE_CHAR_BACK, modstate, key ) ) {
textbox_cursor_dec ( tb ); textbox_cursor_dec ( tb );
return 2; return 2;
} }
// Right or Ctrl-F // Right or Ctrl-F
else if ( abe_test_action ( MOVE_CHAR_FORWARD, modstate, key ) ) { else if ( abe_test_action ( MOVE_CHAR_FORWARD, modstate, key ) ) {
textbox_cursor_inc ( tb ); textbox_cursor_inc ( tb );
return 2; return 2;
} }
// Ctrl-U: Kill from the beginning to the end of the line. // Ctrl-U: Kill from the beginning to the end of the line.
else if ( abe_test_action ( CLEAR_LINE, modstate, key ) ) { else if ( abe_test_action ( CLEAR_LINE, modstate, key ) ) {
textbox_text ( tb, "" ); textbox_text ( tb, "" );
return 1; return 1;
} }
// Ctrl-A // Ctrl-A
else if ( abe_test_action ( MOVE_FRONT, modstate, key ) ) { else if ( abe_test_action ( MOVE_FRONT, modstate, key ) ) {
textbox_cursor ( tb, 0 ); textbox_cursor ( tb, 0 );
return 2; return 2;
} }
// Ctrl-E // Ctrl-E
else if ( abe_test_action ( MOVE_END, modstate, key ) ) { else if ( abe_test_action ( MOVE_END, modstate, key ) ) {
textbox_cursor_end ( tb ); textbox_cursor_end ( tb );
return 2; return 2;
} }
// Ctrl-Alt-h // Ctrl-Alt-h
else if ( abe_test_action ( REMOVE_WORD_BACK, modstate, key ) ) { else if ( abe_test_action ( REMOVE_WORD_BACK, modstate, key ) ) {
textbox_cursor_bkspc_word ( tb ); textbox_cursor_bkspc_word ( tb );
return 1; return 1;
} }
// Ctrl-Alt-d // Ctrl-Alt-d
else if ( abe_test_action ( REMOVE_WORD_FORWARD, modstate, key ) ) { else if ( abe_test_action ( REMOVE_WORD_FORWARD, modstate, key ) ) {
textbox_cursor_del_word ( tb ); textbox_cursor_del_word ( tb );
return 1; return 1;
} // Delete or Ctrl-D } // Delete or Ctrl-D
else if ( abe_test_action ( REMOVE_CHAR_FORWARD, modstate, key ) ) { else if ( abe_test_action ( REMOVE_CHAR_FORWARD, modstate, key ) ) {
textbox_cursor_del ( tb ); textbox_cursor_del ( tb );
return 1; return 1;
} }
// Alt-B // Alt-B
else if ( abe_test_action ( MOVE_WORD_BACK, modstate, key ) ) { else if ( abe_test_action ( MOVE_WORD_BACK, modstate, key ) ) {
textbox_cursor_dec_word ( tb ); textbox_cursor_dec_word ( tb );
return 2; return 2;
} }
// Alt-F // Alt-F
else if ( abe_test_action ( MOVE_WORD_FORWARD, modstate, key ) ) { else if ( abe_test_action ( MOVE_WORD_FORWARD, modstate, key ) ) {
textbox_cursor_inc_word ( tb ); textbox_cursor_inc_word ( tb );
return 2; return 2;
} }
// BackSpace, Ctrl-h // BackSpace, Ctrl-h
else if ( abe_test_action ( REMOVE_CHAR_BACK, modstate, key ) ) { else if ( abe_test_action ( REMOVE_CHAR_BACK, modstate, key ) ) {
textbox_cursor_bkspc ( tb ); textbox_cursor_bkspc ( tb );
return 1; return 1;
} }
else if ( abe_test_action ( ACCEPT_CUSTOM, modstate, key ) ) { else if ( abe_test_action ( ACCEPT_CUSTOM, modstate, key ) ) {
return -2; return -2;
} }
else if ( abe_test_action ( ACCEPT_ENTRY, modstate, key ) ) { else if ( abe_test_action ( ACCEPT_ENTRY, modstate, key ) ) {
return -1; return -1;
} }
tb->blink = old_blink; tb->blink = old_blink;
return 0; return 0;