From 0021f66a44f5d851841249f6b74ca2f4acaa6e10 Mon Sep 17 00:00:00 2001 From: Florrie Date: Sun, 25 Aug 2019 13:14:18 -0300 Subject: Use control+up/down to play next/previous tracks ...instead of shift+up/down, which I'm going to make select items in listings (ala graphical file browsers). --- README.md | 4 ++-- tui-lib | 2 +- ui.js | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1d444b0..b410956 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ You're also welcome to share any ideas, suggestions, and questions through there * [ - focus the main track/group listing * ] - focus the queue listing * Enter - play the selected track -* Shift+Up or p - play previous track -* Shift+Down or n - play next track +* Ctrl+Up or p - play previous track +* Ctrl+Down or n - play next track * Space - toggle pause * Escape - stop playing the current track * l - toggle track loop diff --git a/tui-lib b/tui-lib index ddd817e..acb8c05 160000 --- a/tui-lib +++ b/tui-lib @@ -1 +1 @@ -Subproject commit ddd817edd8d78311f811f3d0d06b138c0b295550 +Subproject commit acb8c05987c72ceca423acf2f5761a50f641d1f8 diff --git a/ui.js b/ui.js index f04b922..13f115b 100644 --- a/ui.js +++ b/ui.js @@ -63,8 +63,8 @@ const keyBindings = [ ['isStop', telc.isEscape], ['isVolumeUp', 'v', {caseless: false}], ['isVolumeDown', 'V', {caseless: false}], - ['isSkipBack', telc.isShiftUp], - ['isSkipAhead', telc.isShiftDown], + ['isSkipBack', telc.isControlUp], + ['isSkipAhead', telc.isControlDown], ['isSkipBack', 'p'], ['isSkipAhead', 'n'], ['isFocusTabber', '['], @@ -78,7 +78,7 @@ const keyBindings = [ ['isShuffleQueue', 's'], ['isClearQueue', 'c'], ['isFocusMenubar', ';'], - ['isFocusLabels', 'l'], + ['isFocusLabels', 'l'], // *** conflicts with isToggleLoop!!! must change this // Number pad ['isUp', '8'], -- cgit 1.3.0-6-gf8a5