sublime-emacs/sublemacspro

cursor Location on the line for each press of ctrl-a

avatar-lavventura opened this issue · 2 comments

In emacs when I type ctrl-a the cursor goes the beginning of the line (most left point), later when I press ctrl-a again the cursor goes to starting point of the line and it continues this operation.

       hello    //<ctrl-a> pressed

^

       hello    //<ctrl-a> pressed
       
       ^

       hello    //<ctrl-a> pressed

^

=> Is it possible to have this approach on sublimeText?

I found the solution as follows:

{ "keys": ["ctrl+a"], "command": "move_to", "args": { "extend": false, "to": "bol" } },