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";
},
// Ctrl+Left: Move caret (cursor) one word to the left
{ mode = 1;
{ mode = -1;
modifier = "Ctrl";
key = "Left";
function = "moveword";
argument = "-1";
},
// Ctrl+Right: Move caret (cursor) one word to the right
{ mode = 1;
{ mode = -1;
modifier = "Ctrl";
key = "Right";
function = "moveword";
argument = "+1";
},
// Left: Move caret (cursor) one character to the left
{ mode = 1;
{ mode = -1;
modifier = "None";
key = "Left";
function = "movecursor";
argument = "-1";
},
// Right: Move caret (cursor) one character to the right
{ mode = 1;
{ mode = -1;
modifier = "None";
key = "Right";
function = "movecursor";