With a new version, Tab and Shift+Tab (ISO_Left_Tab) are bound to
kb-element-{next,prev}.
29 lines
781 B
CSS
29 lines
781 B
CSS
// vi: ft=css
|
|
|
|
configuration {
|
|
modi: "drun,run,window";
|
|
matching: "fuzzy";
|
|
show-icons: true;
|
|
/* drun-match-fields: "all"; */
|
|
drun-show-actions: true;
|
|
/* continous scrolling */
|
|
scroll-method: 1;
|
|
auto-select: true;
|
|
|
|
/* Overwrite conflicting bindings */
|
|
kb-accept-entry: "Control+m,Return,KP_Enter";
|
|
kb-remove-to-eol: "";
|
|
kb-remove-char-back: "BackSpace,Shift+BackSpace";
|
|
kb-move-char-forward: "Shift+Right";
|
|
kb-move-char-back: "Shift+Left";
|
|
kb-mode-complete: "Control+f";
|
|
/* Add Vim like bindings */
|
|
kb-mode-previous: "Control+h,Left,Control+ISO_Left_Tab";
|
|
kb-row-down: "Control+j,Down,Control+n";
|
|
kb-row-up: "Control+k,Up,Control+p";
|
|
kb-mode-next: "Control+l,Right,Control+Tab";
|
|
}
|
|
|
|
/* Load $XDG_CONFIG_HOME/rofi/themes/app-launcher.rasi */
|
|
@theme "app-launcher"
|