1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 06:38:00 +01:00

Improve t_u and t_r descriptions.

--HG--
extra : rebase_source : f630111750ec2f2feaf7442534f4528036ea7975
This commit is contained in:
Doug Kearns
2010-11-05 01:08:45 +11:00
parent a33c68877e
commit 359c6e8a76

View File

@@ -612,7 +612,7 @@ const Editor = Module("editor", {
// text edit mode
mappings.add([modes.TEXT_EDIT],
["u"], "Undo",
["u"], "Undo changes",
function (count) {
editor.executeCommand("cmd_undo", count);
editor.unselectText();
@@ -620,7 +620,7 @@ const Editor = Module("editor", {
{ count: true });
mappings.add([modes.TEXT_EDIT],
["<C-r>"], "Redo",
["<C-r>"], "Redo undone changes",
function (count) {
editor.executeCommand("cmd_redo", count);
editor.unselectText();