« get me outta code hell

Use control+up/down to play next/previous tracks - mtui - Music Text User Interface - user-friendly command line music player
about summary refs log tree commit diff
path: root/ui.js
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2019-08-25 13:14:18 -0300
committerFlorrie <towerofnix@gmail.com>2019-08-25 13:14:18 -0300
commit0021f66a44f5d851841249f6b74ca2f4acaa6e10 (patch)
tree4a45181942f0ab884c9c432fc3e5ac963146c521 /ui.js
parentee6cde59c84ee8704239ff492d5448d61032daf2 (diff)
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).
Diffstat (limited to 'ui.js')
-rw-r--r--ui.js6
1 files changed, 3 insertions, 3 deletions
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'],