Fileメニューの中にある「Open Recent」をメニューバーに配置してみました。Alt+R で開くことができます。
~\Sublime Text 3\Data\Packages\User
Main.sublime-menu
ファイルを作成し、Recentメニューを記述Main.sublime-menu
ファイルはサブフォルダに作成してもOK(~\User\Recent\Main.sublime-menu
など)Preferencesの後ろにRecentを配置する記述は下記のようになります。
[ { "id": "preferences" }, { "caption": "Recent", "mnemonic": "R", "children": [ { "command": "open_recent_file", "args": {"index": 0 } }, { "command": "open_recent_file", "args": {"index": 1 } }, { "command": "open_recent_file", "args": {"index": 2 } }, { "command": "open_recent_file", "args": {"index": 3 } }, { "command": "open_recent_file", "args": {"index": 4 } }, { "command": "open_recent_file", "args": {"index": 5 } }, { "command": "open_recent_file", "args": {"index": 6 } }, { "command": "open_recent_file", "args": {"index": 7 } }, { "command": "open_recent_file", "args": {"index": 8 } }, { "command": "open_recent_file", "args": {"index": 9 } }, { "command": "open_recent_file", "args": {"index": 10 } }, { "command": "open_recent_file", "args": {"index": 11 } }, { "command": "open_recent_file", "args": {"index": 12 } }, { "command": "open_recent_file", "args": {"index": 13 } }, { "command": "open_recent_file", "args": {"index": 14 } }, { "caption": "-" }, { "command": "open_recent_folder", "args": {"index": 0 } }, { "command": "open_recent_folder", "args": {"index": 1 } }, { "command": "open_recent_folder", "args": {"index": 2 } }, { "command": "open_recent_folder", "args": {"index": 3 } }, { "command": "open_recent_folder", "args": {"index": 4 } }, { "command": "open_recent_folder", "args": {"index": 5 } }, { "command": "open_recent_folder", "args": {"index": 6 } }, { "command": "open_recent_folder", "args": {"index": 7 } }, { "caption": "-" }, { "command": "clear_recent_files", "caption": "Clear Items" } ] } ]