]> Freerunner's - dotfiles.git/commitdiff
ncmpcpp: order keybinds
authorAndre Ramnitz <tux.rising@gmail.com>
Sun, 4 Feb 2024 21:06:25 +0000 (22:06 +0100)
committerAndre Ramnitz <tux.rising@gmail.com>
Sun, 18 Aug 2024 16:18:53 +0000 (18:18 +0200)
config/ncmpcpp/bindings

index 20e26f8982e8efe878136169a0f8f2c987063a34..bb583e2671bc298feef1bcf68b23a1e7e2eb712f 100644 (file)
@@ -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