Simple little plugin that will briefly make all cursors highly visible. It also cycles through all cursors centering them in your view. After a couple of seconds, the cursors should return to whatever you had them set to before.
I personally like to have a low profile cursor. But on the occasion I have scrolled far away from the cursor, or for whatever reason have lost sight of my cursor, I use this to quickly make the cursor very visible and centered. It is also useful for cycling through all of your cursors.
You can also use “pan mode” that will pan through the view showing cursors opposed to iterating through all of the cursors.
Repo is here: github.com/facelessuser/FindCursor
Set up a keymap something like this (You don’t have to have two that cycle in opposite directions, if you want, you can just use one):
[pre=#232628] //////////////////////////////////
// Find Cursor: Iterative Find
//////////////////////////////////
{
“keys”: “ctrl+.”],
“command”: “find_cursor”,
“args”: {“reverse”: false, “pan”: false}
},
{
“keys”: “ctrl+shift+.”],
“command”: “find_cursor”,
“args”: {“reverse”: true, “pan”: false}
}
//////////////////////////////////
// Find Cursor: Panning Find
//////////////////////////////////
{
"keys": "ctrl+."],
"command": "find_cursor",
"args": {"reverse": false, "pan": true}
},
{
"keys": "ctrl+shift+."],
"command": "find_cursor",
"args": {"reverse": true, "pan": true}
}[/pre]
Just thought I’d share.