Add missing keybindings for window actions.

This commit is contained in:
Florian Bruhin 2014-10-06 19:40:28 +02:00
parent 8eb0489357
commit d2abd06513

View File

@ -878,6 +878,8 @@ KEY_DATA = collections.OrderedDict([
('set-cmd-text ":open -t {url}"', ['gO']), ('set-cmd-text ":open -t {url}"', ['gO']),
('set-cmd-text ":open -b "', ['xo']), ('set-cmd-text ":open -b "', ['xo']),
('set-cmd-text ":open -b {url}"', ['xO']), ('set-cmd-text ":open -b {url}"', ['xO']),
('set-cmd-text ":open -w "', ['wo']),
('set-cmd-text ":open -w {url}"', ['wO']),
('open -t about:blank', ['ga']), ('open -t about:blank', ['ga']),
('tab-close', ['d', '<Ctrl-W>']), ('tab-close', ['d', '<Ctrl-W>']),
('tab-only', ['co']), ('tab-only', ['co']),
@ -891,10 +893,13 @@ KEY_DATA = collections.OrderedDict([
('reload', ['r']), ('reload', ['r']),
('back', ['H', '<Backspace>']), ('back', ['H', '<Backspace>']),
('back -t', ['th']), ('back -t', ['th']),
('back -w', ['wh']),
('forward', ['L']), ('forward', ['L']),
('forward -t', ['tl']), ('forward -t', ['tl']),
('forward -w', ['wl']),
('hint', ['f']), ('hint', ['f']),
('hint all tab', ['F']), ('hint all tab', ['F']),
('hint all window', ['wf']),
('hint all tab-bg', [';b']), ('hint all tab-bg', [';b']),
('hint images', [';i']), ('hint images', [';i']),
('hint images tab', [';I']), ('hint images tab', [';I']),
@ -905,6 +910,7 @@ KEY_DATA = collections.OrderedDict([
('hint links yank', [';y']), ('hint links yank', [';y']),
('hint links yank-primary', [';Y']), ('hint links yank-primary', [';Y']),
('hint links rapid', [';r']), ('hint links rapid', [';r']),
('hint links rapid-win', [';R']),
('hint links download', [';d']), ('hint links download', [';d']),
('scroll -50 0', ['h']), ('scroll -50 0', ['h']),
('scroll 0 50', ['j']), ('scroll 0 50', ['j']),
@ -924,9 +930,12 @@ KEY_DATA = collections.OrderedDict([
('paste -s', ['pP']), ('paste -s', ['pP']),
('paste -t', ['Pp']), ('paste -t', ['Pp']),
('paste -ts', ['PP']), ('paste -ts', ['PP']),
('paste -w', ['wp']),
('paste -ws', ['wP']),
('quickmark-save', ['m']), ('quickmark-save', ['m']),
('set-cmd-text ":quickmark-load "', ['b']), ('set-cmd-text ":quickmark-load "', ['b']),
('set-cmd-text ":quickmark-load -t "', ['B']), ('set-cmd-text ":quickmark-load -t "', ['B']),
('set-cmd-text ":quickmark-load -w"', ['wb']),
('save', ['sf']), ('save', ['sf']),
('set-cmd-text ":set "', ['ss']), ('set-cmd-text ":set "', ['ss']),
('set-cmd-text ":set -t "', ['sl']), ('set-cmd-text ":set -t "', ['sl']),