guiguan / file-header

FileHeader for Atom
https://atom.io/packages/file-header
Other
31 stars 21 forks source link

Ability to specify project name on a per project basis #26

Closed gilesbutler closed 7 years ago

gilesbutler commented 8 years ago

It would be great to have the ability to specify the project name for each project rather than globally in the settings.

Not sure the best place to set it, maybe it could work with https://atom.io/packages/project-manager

guiguan commented 7 years ago

@gilesbutler Yep, you can use project-manager to do that. In your projects.cson, you can put things like:

[
  {
    title: "Demo Project"
    paths: [
      "/Users/guiguan/Documents/Projects/demo-project"
    ]
    settings:
      'file-header.projectName': 'Your Project Name'
  }
]
gilesbutler commented 7 years ago

Thanks @guiguan :)