Edit: Go here for the plugin to move caret by number of lines.
Hi all,
First post, so please be gentle
I currently have 2 user defined commands specified as such;
{ "keys": ["alt+left"], "command": "move_caret_back", "args": { "nlines": 10} },
{ "keys": ["alt+right"], "command": "move_caret_forward", "args": { "nlines": 10} },
This was working fine on my old PC. Now that I moved to a new PC and had to setup Sublime Text 3 again, the above commands arenât working.
When enabling command log on the console using:
sublime.log_commands(True)
I get the following log;
Package Control: No updated packages
reloading settings Packages/User/Package Syncing.sublime-settings
Package Syncing: Start Complete Sync
Package Syncing: End Complete Sync
Running make build-simTest -j8 -O
Unable to open /C/Users/simona2/AppData/Roaming/Sublime Text 3/Packages/Default/Default (Windows).sublime-keymap
indexing [queue 10]: no files were indexed out of the 3524 queued, abandoning crawl
>>> sublime.log_commands(True)
command: drag_select {"event": {"button": 1, "x": 1022.5, "y": 315.5}}
command: move_caret_forward {"nlines": 10}
command: move_caret_back {"nlines": 10}
The commands are going through, so iâm guessing the command is no longer supported or somethingâŚ
I use the move_caret_forward and move_caret_back extensively⌠is there a replacement?
Cheers,
Simon