mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 04:07:59 +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
|
// text edit mode
|
||||||
mappings.add([modes.TEXT_EDIT],
|
mappings.add([modes.TEXT_EDIT],
|
||||||
["u"], "Undo",
|
["u"], "Undo changes",
|
||||||
function (count) {
|
function (count) {
|
||||||
editor.executeCommand("cmd_undo", count);
|
editor.executeCommand("cmd_undo", count);
|
||||||
editor.unselectText();
|
editor.unselectText();
|
||||||
@@ -620,7 +620,7 @@ const Editor = Module("editor", {
|
|||||||
{ count: true });
|
{ count: true });
|
||||||
|
|
||||||
mappings.add([modes.TEXT_EDIT],
|
mappings.add([modes.TEXT_EDIT],
|
||||||
["<C-r>"], "Redo",
|
["<C-r>"], "Redo undone changes",
|
||||||
function (count) {
|
function (count) {
|
||||||
editor.executeCommand("cmd_redo", count);
|
editor.executeCommand("cmd_redo", count);
|
||||||
editor.unselectText();
|
editor.unselectText();
|
||||||
|
|||||||
Reference in New Issue
Block a user