1.1.0-rc.2
Pre-release
Pre-release
npm install -g https://github.com/saurabhdaware/projectman#v1.1.0-rc.2
CHANGELOG
-
Project specific editors:
- Now you can
pm edit
and seteditor
key insettings.json
projects[] with the value of the command of your editor. settings.json
E.g.
- Now you can
{
"commandToOpen": "code",
"projects": [
{
"name":"MyCoolProject",
"path":"/home/path/projects/mycoolproject",
"editor":"vim"
},
{
"name":"TwoProject",
"path":"/path/something/project"
}
]
}
This will allow users to open other projects in VSCode but use Vim to open MyCoolProject
pm seteditor [commandToOpenEditor]
added which will set default editor command, This can be used when the editor you want to use is not listed inpm seteditor
. (Note:pm seteditor
will work exactly same as it did before)