1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 07:34:11 +01:00

Rename <yank-word> to <yank-selection>. That's what it's really used for.

This commit is contained in:
Štěpán Němec
2011-11-14 12:44:33 +01:00
parent bdd382a613
commit ac7c2b88e1
2 changed files with 2 additions and 2 deletions

View File

@@ -2099,7 +2099,7 @@ var Buffer = Module("Buffer", {
function () { tabs.reload(tabs.getTab(), true); });
// yanking
mappings.add([modes.NORMAL], ["Y", "<yank-word>"],
mappings.add([modes.NORMAL], ["Y", "<yank-selection>"],
"Copy selected text or current word",
function () {
let sel = buffer.currentWord;