Hey folks,
is there a plugin which generates a plugin:
- with all the typical files (like keybindings, settings a basic plugin file)
- in a separate folder under /Packages/.
- prompts for plugin_name beforehand to automatically name all files, folders and path variables (think cookiecutter here)
The inbuilt method of Sublime Text (Tools > Developer > New Plugin) will create a single plugin file in your /Packages/User/ folder. This is bad because:
- a more complete plugin template would not only ease development (most files are already there) but also encourage best practices (like having a command file to feed the command pallet and always open Default and User settings files in parallel) leading to higher quality plugins.
- it pollutes /Packages/User/ folder which also contains all User settings with plugin files.
While there are plugins for templating, none solves the issue described.
Can you point me to such plugin? If not do you see a need for this?