Sublime Forum

How to Rebind Go to Symbol?

#1

I know how to rebind keys, but for some reason can’t seem to figure out how to rebind “Go to Symbol…” (NOT goto_symbol_in_project, originally bound to Ctrl + R on Windows).

I need to do this because I’m using the NeoVintageous package and it’s used for something else. Also “Go to Symbol…” is one of the actions I use the most so this is very important to me to find a fix.

0 Likes

#2

The key bindings for Goto Symbol is (on Windows):

	{ "keys": ["ctrl+r"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },

You can bind any key you like to that command to open the goto overlay to jump to a symbol.

1 Like

#3

Thank you so much!

0 Likes