Is there a hotkey or command to automatically scroll to the currently focussed file in the Folders pane on the left hand side? I know I can manually scroll up and down until I see the currently focussed file highlighted in the Folders pane, but it would be really really handy to have a hotkey that just takes me there. In the case of small projects, manually scrolling isn’t a problem, but with large projects it’s a pain in the backside.
Scroll to the current file in Folders pane?
kingkeith
#2
if you look at Packages/Default/Context.sublime-menu
, you’ll see:
{ "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" },
2 Likes
deathaxe
#4
I am using the following key binding to quickly reveal them without changing focus.
{
"keys": ["f2"],
"command": "reveal_in_side_bar"
},
1 Like