Reputation: 31688
Is there a way to tab through multiple cursors like you can with placeholders?
Having those cursors placed you would:
Upvotes: 9
Views: 484
Reputation: 81
There is a plugin for that and more. https://packagecontrol.io/packages/MultiEditUtils
You can add this line to your User Keybindings for custom hotkey:
{ "keys": ["alt+d"], "command": "selection_fields" },
Upvotes: 1
Reputation: 19744
You could create bookmarks with the multiple cursors (ctrl+f2
or cmd+f2
by default I think). Then, you could return to a single cursor (escape
). After you enter the content on a particular line, you could then move to the next bookmark (f2
by default). Of course, those are with the default keybindings. You can always rebind them to something more comfortable than f2
.
Upvotes: 11