1- feature name
Generate automatic projects with Sublimetext based on markdown? What do you guys think?
2- feature description
- I would like to generate a project according to this specification
- I was thinking of creating this format here, sample:
input: example1.filesystemprojectsublimetext ‘.fps’
├── _drafts
├── _site
├── _config.yml
└── index.html
output: example1.json
{
"cmd": "mkdir", "_drafts"],
"cmd": "mkdir", "_site"],
"touch": "index.html"],
"touch": "_config.yml"]
}
this is same in shell
$ > mkdir _drafts
$ > mkdir _site
$ > mkdir _drafts
$ > touch index.html
$ > touch _config.yml
3- Notes
- What do you think of the idea?
- My idea would be to have this file format, so Sublimetext automatically generates files and folders.
- Usually the mkdir command creates directories, folders
- Usually the touch command creates files
- My idea when creating this file format is to generate files, folders and directories with command_line in Sublimetext here
4. References
- Automaticaly build a specific file per project
- https://www.sublimetext.com/docs/build_systems.html
- https://stackoverflow.com/questions/50953535/how-to-create-a-directory-faster-in-sublime-text-3
- https://math2001.github.io/FileManager/commands/
- https://stackoverflow.com/questions/17655206/configure-build-system-to-be-automatically-chosen-based-on-file-extension