phly / keep-a-changelog

Tools for manipulating CHANGELOG.md files in Keep A Changelog format, including tagging and releasing.
https://phly.github.io/keep-a-changelog/
BSD 2-Clause "Simplified" License
182 stars 23 forks source link

Added colon and space before user input #48

Closed michalbundyra closed 5 years ago

michalbundyra commented 5 years ago

I think it is much nicer to have : in the question for user input. Now we have:

$ keep-a-changelog config -g
Please select the provider (Default: github)
  [0] github
  [1] gitlab
 > 0
Please enter the personal token for the provider (Empty to skip)f4my-private-token-super-secret0
Please enter the custom domain for the provider, if any (Empty to skip)
Created config file "/home/.keep-a-changelog/config.ini".

and with the change we have:

$ keep-a-changelog config -g
Please select the provider (Default: github)
  [0] github
  [1] gitlab
 > 0
Please enter the personal token for the provider (Empty to skip): f4my-private-token-super-secret0
Please enter the custom domain for the provider, if any (Empty to skip): 
Created config file "/home/.keep-a-changelog/config.ini".
weierophinney commented 5 years ago

Thanks, @webimpress!