diff --git a/common/content/editor.js b/common/content/editor.js index b016c272..5523b959 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -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], - [""], "Redo", + [""], "Redo undone changes", function (count) { editor.executeCommand("cmd_redo", count); editor.unselectText();