I would like to create a configuration file in the project directory with a default value. Much like edit_settings
does. But I could not find out how to do such a thing from within the .sublime-menu
file of my package.
This is what I have for now:
{
"caption": "Project Settings",
"command": "open_file",
"args": {
"file": "${folder}/.php_sublime",
}
}
So how can I apply some default content for that file?
Thank you!