diff options
| author | Aaron LI <aaronly.me@gmail.com> | 2016-02-17 21:17:03 +0800 | 
|---|---|---|
| committer | Aaron LI <aaronly.me@gmail.com> | 2016-02-17 21:17:03 +0800 | 
| commit | 0305e7abcc161dd4a2d35dc623dd839098d75018 (patch) | |
| tree | 7f17c440767e82175f686e24601ab7eecf55c50f | |
| parent | 6e321e234214950f4b8972e29e6ffc2cb529aeac (diff) | |
| download | dotfiles-0305e7abcc161dd4a2d35dc623dd839098d75018.tar.bz2 | |
update ncmpcpp bindings syntax
| -rw-r--r-- | _ncmpcpp/bindings | 26 | 
1 files changed, 15 insertions, 11 deletions
| diff --git a/_ncmpcpp/bindings b/_ncmpcpp/bindings index eb37e8c..4411435 100644 --- a/_ncmpcpp/bindings +++ b/_ncmpcpp/bindings @@ -58,8 +58,11 @@  ##      picked by ncmpcpp upon next call to readKey function.  ##      Accepted values: mouse, up, down, page_up, page_down,  ##      home, end, space, enter, insert, delete, left, right, -##      tab, shift_tab, ctrl_a, ctrl_b, ..., ctrl_z, f1, f2, -##      ..., f12, backspace, backspace_2. +##      tab, ctrl-a, ctrl-b, ..., ctrl-z, ctrl-[, ctrl-\\, +##      ctrl-], ctrl-^, ctrl-_, f1, f2, ..., f12, backspace. +##      In addition, most of these names can be prefixed with +##      alt-/ctrl-/shift- to be recognized with the appropriate +##      modifier key(s).  ##  ##    - push_characters "string" - pushes given string into  ##      input queue. @@ -118,11 +121,12 @@  ##    could be used. Then ncmpcpp will not wait for confirmation  ##    (enter) and will execute the command the moment it sees it.  ## -## Note: Both 'backspace' and 'backspace_2' are used because some -##       terminals interpret backspace using keycode of 'backspace' -##       and some the one of 'backspace_2'. You can get away with -##       binding once if all your terminal emulators use the same -##       value. +##    Note: while command chains are executed, internal environment +##    update (which includes current window refresh and mpd status +##    update) is not performed for performance reasons. However, it +##    may be desirable to do so in some situration. Therefore it's +##    possible to invoke by hand by performing 'update enviroment' +##    action.  ##  ## Note: There is a difference between:  ## @@ -151,16 +155,16 @@ def_key "j"  def_key "k"    scroll_up -def_key "ctrl_u" +def_key "ctrl-u"    page_up -def_key "ctrl_d" +def_key "ctrl-d"    page_down -def_key "ctrl_j" +def_key "ctrl-j"    move_selected_items_down -def_key "ctrl_k" +def_key "ctrl-k"    move_selected_items_up  def_key "h" | 
