Can I see a list of recently opened files?
Can I view the list with a keyboard shortcut?
Can you see the list of recently opened files?
kwd
#1
1 Like
BPL
#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
1 Like
OdatNurd
#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
BPL
#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
FichteFoll
#6
I suggest the File History package. Don’t know its default bindings by heart, though.
0 Likes