Sublime Forum

Can you see the list of recently opened files?

#1

Can I see a list of recently opened files?
Can I view the list with a keyboard shortcut?

1 Like

#2

Sure, add this one to your .sublime-keymap settings:

    { "command": "toggle_show_open_files","keys": ["ctrl+alt+o"] },

Make sure you set the shortcut you want, save it and you’re done :slight_smile:

1 Like

#3

Yes, just open the file menu using standard OS keybindings (Alt+F) then press R

1 Like

#4

The toggle_show_open_files command toggles the display of files that are currently open in the sidebar on and off. Technically speaking, that’s not “recently opened files” so much as “currently open files”, which may or may not be the same thing as far as the OP is concerned.

0 Likes

#5

That’s correct, my bad, it seems the OP was interested about the main menu “File\Open Recent” items, which btw… are loaded/saved from
Session.sublime_session “file_history” attribute, ty for the clarification.

0 Likes

#6

I suggest the File History package. Don’t know its default bindings by heart, though.

0 Likes