fixed quotes
This commit is contained in:
parent
b4cc87c7e5
commit
7e8846bf76
1 changed files with 8 additions and 8 deletions
|
|
@ -25,11 +25,11 @@ text_selected = '#61afefff' # for the currently selected result
|
||||||
[keybindings]
|
[keybindings]
|
||||||
# keybindings syntax: ctrl/shift/alt/logo as modifiers and a key joined by '+' signs
|
# keybindings syntax: ctrl/shift/alt/logo as modifiers and a key joined by '+' signs
|
||||||
# A list of available keys can be found here: https://docs.rs/crate/x11-keysymdef/0.2.0/source/src/keysym.json
|
# A list of available keys can be found here: https://docs.rs/crate/x11-keysymdef/0.2.0/source/src/keysym.json
|
||||||
paste = ["ctrl+v"]
|
paste = ['ctrl+v']
|
||||||
execute = ["KP_Enter", "Return"]
|
execute = ['KP_Enter', 'Return']
|
||||||
delete = ["KP_Delete", "Delete", "BackSpace"]
|
delete = ['KP_Delete', 'Delete', 'BackSpace']
|
||||||
delete_word = ["ctrl+KP_Delete", "ctrl+Delete", "ctrl+BackSpace"]
|
delete_word = ['ctrl+KP_Delete', 'ctrl+Delete', 'ctrl+BackSpace']
|
||||||
complete = ["Tab"]
|
complete = ['Tab']
|
||||||
nav_up = ["Up"]
|
nav_up = ['Up']
|
||||||
nav_down = ["Down"]
|
nav_down = ['Down']
|
||||||
exit = ["Escape"]
|
exit = ['Escape']
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue