oops forgot about that

This commit is contained in:
speedie 2023-05-10 09:19:56 +02:00
parent 73b7019a93
commit 8a405edcdc

View file

@ -321,28 +321,28 @@ spmenu = {
argument = "0"; argument = "0";
}, },
// Ctrl+Left: Move caret (cursor) one word to the left // Ctrl+Left: Move caret (cursor) one word to the left
{ mode = 1; { mode = -1;
modifier = "Ctrl"; modifier = "Ctrl";
key = "Left"; key = "Left";
function = "moveword"; function = "moveword";
argument = "-1"; argument = "-1";
}, },
// Ctrl+Right: Move caret (cursor) one word to the right // Ctrl+Right: Move caret (cursor) one word to the right
{ mode = 1; { mode = -1;
modifier = "Ctrl"; modifier = "Ctrl";
key = "Right"; key = "Right";
function = "moveword"; function = "moveword";
argument = "+1"; argument = "+1";
}, },
// Left: Move caret (cursor) one character to the left // Left: Move caret (cursor) one character to the left
{ mode = 1; { mode = -1;
modifier = "None"; modifier = "None";
key = "Left"; key = "Left";
function = "movecursor"; function = "movecursor";
argument = "-1"; argument = "-1";
}, },
// Right: Move caret (cursor) one character to the right // Right: Move caret (cursor) one character to the right
{ mode = 1; { mode = -1;
modifier = "None"; modifier = "None";
key = "Right"; key = "Right";
function = "movecursor"; function = "movecursor";