diff options
Diffstat (limited to 'config/common/ncmpcpp')
| -rw-r--r-- | config/common/ncmpcpp/bindings | 265 | 
1 files changed, 109 insertions, 156 deletions
diff --git a/config/common/ncmpcpp/bindings b/config/common/ncmpcpp/bindings index 470b986..a97ad2a 100644 --- a/config/common/ncmpcpp/bindings +++ b/config/common/ncmpcpp/bindings @@ -156,182 +156,138 @@  #  #def_key "mouse"  #  mouse_event -# +  def_key "k"    scroll_up +def_key "k" +  scroll_up_album +def_key "k" +  scroll_up_artist +  def_key "j"    scroll_down +def_key "j" +  scroll_down_album +def_key "j" +  scroll_down_artist + +def_key "h" +  jump_to_parent_directory +def_key "h" +  previous_column +def_key "h" +  master_screen + +def_key "l" +  enter_directory +def_key "l" +  run_action +def_key "l" +  play_item +def_key "l" +  play +def_key "l" +  next_column +def_key "l" +  slave_screen +  def_key "H"  	move_home  def_key "L"  	move_end -# -# -#def_key "[" -#  scroll_up_album -# -#def_key "]" -#  scroll_down_album -# -#def_key "{" -#  scroll_up_artist -# -#def_key "}" -#  scroll_down_artist -# -#def_key "page_up" -#  page_up -# -#def_key "page_down" -#  page_down -# -#def_key "home" -#  move_home -# -#def_key "end" -#  move_end -# -#def_key "insert" -#  select_item -# -#def_key "enter" -#  enter_directory -# + +def_key "ctrl-u" +  page_up +def_key "ctrl-d" +  page_down + +def_key "x" +  delete_playlist_items + +def_key "x" +  delete_browser_items + +def_key "x" +  delete_stored_playlist + +def_key "space" +  select_item +def_key "a" +  add_item_to_playlist + +def_key ":" +  execute_command + +def_key "tab" +  next_screen +def_key "shift-tab" +  previous_screen + +def_key "+" +  volume_up +def_key "-" +  volume_down + +def_key "," +  seek_backward +def_key "." +  seek_forward +def_key "<" +  previous +def_key ">" +  next +def_key "s" +  stop +def_key "p" +  pause + +def_key "q" +  quit + +def_key "f1" +  show_help +def_key "1" +  show_playlist +def_key "2" +  show_browser +def_key "2" +  change_browse_mode +def_key "3" +  show_search_engine +def_key "3" +  reset_search_engine +def_key "4" +  show_media_library +def_key "4" +  toggle_media_library_columns_mode +def_key "5" +  show_playlist_editor +def_key "6" +  show_tag_editor +def_key "7" +  show_outputs +def_key "8" +  show_visualizer +def_key "=" +  show_clock +def_key "@" +  show_server_info +  #def_key "enter"  #  toggle_output  # -#def_key "enter" -#  run_action -# -#def_key "enter" -#  play_item -# -#def_key "space" -#  add_item_to_playlist -#  #def_key "space"  #  toggle_lyrics_update_on_song_change  #  #def_key "space"  #  toggle_visualization_type  # -#def_key "delete" -#  delete_playlist_items -# -#def_key "delete" -#  delete_browser_items -# -#def_key "delete" -#  delete_stored_playlist -# -#def_key "right" -#  next_column -# -#def_key "right" -#  slave_screen -# -#def_key "right" -#  volume_up -# -#def_key "+" -#  volume_up -# -#def_key "left" -#  previous_column -# -#def_key "left" -#  master_screen -# -#def_key "left" -#  volume_down -# -#def_key "-" -#  volume_down -# -#def_key ":" -#  execute_command -# -#def_key "tab" -#  next_screen -# -#def_key "shift-tab" -#  previous_screen -# -#def_key "f1" -#  show_help -# -#def_key "1" -#  show_playlist -# -#def_key "2" -#  show_browser -# -#def_key "2" -#  change_browse_mode -# -#def_key "3" -#  show_search_engine -# -#def_key "3" -#  reset_search_engine -# -#def_key "4" -#  show_media_library -# -#def_key "4" -#  toggle_media_library_columns_mode -# -#def_key "5" -#  show_playlist_editor -# -#def_key "6" -#  show_tag_editor -# -#def_key "7" -#  show_outputs -# -#def_key "8" -#  show_visualizer -# -#def_key "=" -#  show_clock -# -#def_key "@" -#  show_server_info -# -#def_key "s" -#  stop -# -#def_key "p" -#  pause -# -#def_key ">" -#  next -# -#def_key "<" -#  previous -# -#def_key "ctrl-h" -#  jump_to_parent_directory -#  #def_key "ctrl-h"  #  replay_song  #  #def_key "backspace" -#  jump_to_parent_directory -# -#def_key "backspace"  #  replay_song  # -#def_key "backspace" -#  play -# -#def_key "f" -#  seek_forward -# -#def_key "b" -#  seek_backward -#  #def_key "r"  #  toggle_repeat  # @@ -542,6 +498,3 @@ def_key "L"  #def_key "ctrl-p"  #  set_selected_items_priority  # -#def_key "q" -#  quit -#  | 
