💚👍 Sublime Text open recent 99 files

Опубликовано: 13 Март 2026
на канале: Dataimeo
81
2

Create file: SublimeText\Data\Packages\User\Default\Main.sublime-menu
Content:

[
{
"caption": "File 0-24",
"mnemonic": "F",
"id": "file024",
"children":
[
{ "command": "open_recent_file", "args": {"index": 0 } },
{ "command": "open_recent_file", "args": {"index": 1 } },
...
{ "command": "open_recent_file", "args": {"index": 24 } },
{ "caption": "-" },
{ "command": "open_recent_folder", "args": {"index": 0 } },
{ "command": "open_recent_folder", "args": {"index": 1 } },
...
{ "command": "open_recent_folder", "args": {"index": 24 } },
]
},
{
"caption": "File 24-48",
"mnemonic": "F",
"id": "file2448",
"children":
[
{ "command": "open_recent_file", "args": {"index": 24 } },
{ "command": "open_recent_file", "args": {"index": 25 } },
...
{ "command": "open_recent_file", "args": {"index": 48 } },
{ "caption": "-" },
{ "command": "open_recent_folder", "args": {"index": 24 } },
{ "command": "open_recent_folder", "args": {"index": 25 } },
...
{ "command": "open_recent_folder", "args": {"index": 48 } },

]
}
]

💚👍