Add chrome keycode for <
This commit is contained in:
parent
9265141bb9
commit
00906f34cb
1 changed files with 1 additions and 1 deletions
|
@ -1123,7 +1123,7 @@ weechat.directive('inputBar', function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Alt+< -> switch to previous buffer
|
// Alt+< -> switch to previous buffer
|
||||||
if ($event.altKey && code === 60) {
|
if ($event.altKey && (code === 60 || code === 226)) {
|
||||||
var previousBuffer = models.getPreviousBuffer();
|
var previousBuffer = models.getPreviousBuffer();
|
||||||
if (previousBuffer) {
|
if (previousBuffer) {
|
||||||
models.setActiveBuffer(previousBuffer.id);
|
models.setActiveBuffer(previousBuffer.id);
|
||||||
|
|
Loading…
Reference in a new issue