Sublime Forum

Cursor indicator position

#1

Every thing was perfect until I add some package to editor.
I added Linter and Linter-php, artisan, sample php unit, php get/setter, php snippet,
Tought will be ok again if I remove them but not.
Please watch the screencast( sorry for voice quality)


Please let me know if you have any idea about this problem.

Thanks

0 Likes

#2

I figure it out!
I had set left arrow + key ‘p’ for keyboard shortcut.
I remove the line and every thing smooth now.

1 Like

#3

I would recommend opening the Sublime console with Ctrl+` and entering the following commands:

sublime.log_commands(True)
sublime.log_input(True)

Once you’ve done that, try to replicate your problem from the screencast. Normally, you would see something like the following printed in the console every time you press the Left key:

key evt: left
command: move {"by": "characters", "forward": false}

From the looks of your problem it almost seems like some sort of weird key bind problem where the movement command is bound to ["left", "left"] instead of just ["left"] or something along those lines. That would present as two key evt: left lines before the command triggers, for example.

The output in the console will help narrow down what might be happening.

1 Like

#4

Thank you for your replay. As I said I used left arrow + p as a keyboard shortcut.
look like I made a wrong choice.

0 Likes