randy3k / ProjectManager

Project Manager for Sublime Text
MIT License
328 stars 26 forks source link

feat: add ability to use custom active project indicator #77

Closed acheronfail closed 6 years ago

acheronfail commented 6 years ago

This PR adds the ability to add a custom indicator to the select project list.

randy3k commented 6 years ago

looks good. thank you.

BTW, what symbol do you use?

acheronfail commented 6 years ago

Wow! That was merged in record time! 🎉

BTW, what symbol do you use?

I prefer to use .

acheronfail commented 6 years ago

I was wondering as well, would you be open to another PR which lets the user choose if the indicator is placed at the beginning rather than this end of the Project name?

randy3k commented 6 years ago

a possible solution is

DISPLAY="{project_name} {active_project_indicator}"
DISPLAY.format(project_name=project_name, active_project_indicator= active_project_indicator)

and let user to change DISPLAY.

acheronfail commented 6 years ago

That's even better 👍 I'll make a PR for it.