Skip to content

1.1.0-rc.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@saurabhdaware saurabhdaware released this 07 Sep 20:06
npm install -g https://github.com/saurabhdaware/projectman#v1.1.0-rc.2

CHANGELOG

  • Project specific editors:

    • Now you can pm edit and set editor key in settings.json projects[] with the value of the command of your editor.
    • settings.json E.g.
{
    "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 in pm seteditor. (Note: pm seteditor will work exactly same as it did before)