use alt-g for filter bufferlist

this is more consistent with the other existing shortcuts and is also
the same shortcut go.py recommends in weechat-curses
This commit is contained in:
Felix Eckhofer 2014-02-21 08:17:44 +01:00
commit fead046eed
2 changed files with 3 additions and 3 deletions

View file

@ -1056,8 +1056,8 @@ weechat.directive('inputBar', function() {
return true;
}
// Ctrl+G -> focus on buffer filter input
if ($event.ctrlKey && (code === 103 || code === 71)) {
// Alt+G -> focus on buffer filter input
if ($event.altKey && (code === 103 || code === 71)) {
$event.preventDefault();
document.getElementById('bufferFilter').focus();
return true;