diff options
author | Yigit Sever | 2020-06-08 15:24:59 +0300 |
---|---|---|
committer | Yigit Sever | 2020-06-08 15:24:59 +0300 |
commit | 4cd41a0570af7c0d98ccdb5daa0654c980d372a7 (patch) | |
tree | 7f730f3a1cd52962254c0584a4fd586fc7affc56 /.ncmpcpp | |
parent | c9471a0e8b2e28cc94e95219ca6fc60e4f1d9e36 (diff) | |
download | dotfiles-4cd41a0570af7c0d98ccdb5daa0654c980d372a7.tar.gz dotfiles-4cd41a0570af7c0d98ccdb5daa0654c980d372a7.tar.bz2 dotfiles-4cd41a0570af7c0d98ccdb5daa0654c980d372a7.zip |
ncmpcpp bindings are more vimlike
Diffstat (limited to '.ncmpcpp')
-rw-r--r-- | .ncmpcpp/bindings | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/.ncmpcpp/bindings b/.ncmpcpp/bindings index ab21cbf..b7271e9 100644 --- a/.ncmpcpp/bindings +++ b/.ncmpcpp/bindings | |||
@@ -1,9 +1,21 @@ | |||
1 | ############################################################## | 1 | # https://gist.github.com/Soft/959188 |
2 | ## This is the example bindings file. Copy it to ## | 2 | def_key "j" |
3 | ## ~/.ncmpcpp/bindings or $XDG_CONFIG_HOME/ncmpcpp/bindings ## | 3 | scroll_down |
4 | ## and set up your preferences ## | 4 | def_key "k" |
5 | ############################################################## | 5 | scroll_up |
6 | ## | 6 | def_key "h" |
7 | previous_column | ||
8 | def_key "l" | ||
9 | next_column | ||
10 | def_key "n" | ||
11 | next_found_item | ||
12 | def_key "N" | ||
13 | previous_found_item | ||
14 | def_key "g" | ||
15 | move_home | ||
16 | def_key "G" | ||
17 | move_end | ||
18 | |||
7 | ##### General rules ##### | 19 | ##### General rules ##### |
8 | ## | 20 | ## |
9 | ## 1) Because each action has runtime checks whether it's | 21 | ## 1) Because each action has runtime checks whether it's |