Change ctrl/command up/down to alt/option up/down to align with other apps

This commit is contained in:
Alistair McKinlay 2018-02-28 16:32:50 +00:00
parent 5ed8cc6320
commit 9c5147ae09
2 changed files with 3 additions and 3 deletions

View file

@ -37,8 +37,8 @@ Mousetrap.bind([
});
Mousetrap.bind([
"mod+up",
"mod+down",
"alt+up",
"alt+down",
], function(e, keys) {
const channels = sidebar.find(".chan");
const index = channels.index(channels.filter(".active"));

View file

@ -49,7 +49,7 @@
<div class="help-item">
<div class="subject">
<kbd class="key-all">Ctrl</kbd><kbd class="key-apple">⌘</kbd> + <kbd>↑</kbd> / <kbd>↓</kbd>
<kbd class="key-all">Alt</kbd><kbd class="key-apple">⌥</kbd> + <kbd>↑</kbd> / <kbd>↓</kbd>
</div>
<div class="description">
<p>Switch to the previous/next window in the channel list.</p>