From 3760d08c2f628a175f2b67cbdc7f5c463ced9efd Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Sun, 4 Feb 2024 22:06:25 +0100 Subject: [PATCH] ncmpcpp: order keybinds --- config/ncmpcpp/bindings | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/config/ncmpcpp/bindings b/config/ncmpcpp/bindings index 20e26f89..bb583e26 100644 --- a/config/ncmpcpp/bindings +++ b/config/ncmpcpp/bindings @@ -1,15 +1,20 @@ +# vim-like movement +def_key "h" + previous_column def_key "j" scroll_down def_key "k" scroll_up +def_key "l" + next_column + +# sort order def_key "J" move_sort_order_down def_key "K" move_sort_order_up -def_key "h" - previous_column -def_key "l" - next_column + +# scrolling def_key "ctrl-b" page_up def_key "ctrl-u" @@ -22,11 +27,15 @@ def_key "g" move_home def_key "G" move_end + +# searching def_key "n" next_found_item def_key "N" previous_found_item + +# misc def_key "9" - show_lyrics -def_key "0" show_clock +def_key "0" + show_lyrics -- 2.51.2