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

Share your favorite FastKeys commands
Post Reply
alih1029
Posts: 21
Joined: Sep 3rd, ’19, 16:01

Post by alih1029 » Jul 16th, ’23, 15:33

Is there anyway to move the cursor L or R by multiple words?
User avatar
Marko
Posts: 1925
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Jul 16th, ’23, 21:08

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}
glrobins
Posts: 7
Joined: Jan 29th, ’23, 11:57

Post by glrobins » Aug 10th, ’23, 21:57

revised below
Last edited by glrobins on Aug 12th, ’23, 11:53, edited 1 time in total.
glrobins
Posts: 7
Joined: Jan 29th, ’23, 11:57

Post by glrobins » Aug 12th, ’23, 11:46

Move one word:
^{left}
^{right}

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