Created
May 2, 2016 23:06
-
-
Save jdx/fd7623c537113f7bd3715a34b5b202ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# current way | |
$ heroku cerate my-new-app-name --region us | |
! `cerate` is not a heroku command. | |
! Perhaps you meant `create`. | |
! See `heroku help` for a list of available commands. | |
$ heroku create # user has to copy-paste, or re-type | |
# new way | |
$ heroku cerate my-new-app-name --region us | |
▸ cerate is not a heroku command. | |
▸ Perhaps you meant create? | |
▸ Run heroku _ to run heroku create my-new-app-name --region us. | |
▸ Run heroku help for a list of available commands. | |
$ heroku _ # user just has to type an underscore to redo the whole command they meant to run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment