Page 1 of 1

Is there anyway to move the cursor L or R by multiple words?

Posted: Jul 16th, ’23, 15:33
by alih1029
Is there anyway to move the cursor L or R by multiple words?

Re: Is there anyway to move the cursor L or R by multiple words?

Posted: Jul 16th, ’23, 21:08
by Marko
You can simulate keypresses in FastKeys, standard Windows shortcuts to move one word left or right are Ctrl+Left and Ctrl+Right.

Send mode:

Code: Select all

{Ctrl Down}{Left}{Ctrl Up}
{Ctrl Down}{Right}{Ctrl Up}
Command mode:

Code: Select all

^{Left}
^{Right}

Re: Is there anyway to move the cursor L or R by multiple words?

Posted: Aug 10th, ’23, 21:57
by glrobins
revised below

Re: Is there anyway to move the cursor L or R by multiple words?

Posted: Aug 12th, ’23, 11:46
by glrobins
Move one word:
^{left}
^{right}

move two words:
^{left 2}
^{right 2}