Sublime Forum

Key binding for open files dropdown

#1

Hi Everyone,

Is there a key binding which I can use to bring down the open files list as shown here

Thanks in advance.

0 Likes

#2

In the console run this command

sublime.log_commands(True)

Then when you call it again it will give you the command it calls to perform that action, then you can use it to create a keybinding.

0 Likes

#3

thanks, I tried it, but unfortunately it does not log anything.

0 Likes

#4

I don’t think there’s a key binding or command associated with that particular bit of UI, but I could be wrong.

Presumably if you want access to files via the keyboard you would use Goto Anything to find and open the file using fuzzy matching or a package that gathers all of the open files and presents them to you in a quick panel.

0 Likes

#5

As @OdatNurd stated I think this would be perfect for your needs https://github.com/rajeshvaya/Sublime-Extended-Tab-Switcher

It will show all your open files in a quick panel with fuzzy searching and it can be mapped to a keybinding.

0 Likes