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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user