Support default commands
See original GitHub issueCurrently a command can’t live on it’s own. It needs to live under a namespace.
With spork
, i made that name space. And since namespaces aren’t commands, you can’t just type it. So I created default
as the command.
So now it’s:
gluegun spork default
Which is lame.
I want:
gluegun spork
.
So we need to build the concept of a default command. default.js
would be fine, but I think index.js
is a little nicer because of the convention on the web and React Native.
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Changing Defaults for Commands and Options - Support
Use the configuration command to view current default settings for commands and options. You can also use this command to change default values....
Read more >Default Commands - WPILib Docs
If you do wish to set a default command, call setDefaultCommand from within this method, passing in the command to be set as...
Read more >Default commands list - Cisco Learning Network
Hi all,. I am currently studying for taking the ICND1 100-105 exam (CCENT) and would find very useful to have in hand a...
Read more >How to list IBM i Commands that had their defaults changed
Method 2: From the IBM i command line, execute the following: > DSPOBJD OBJ(*ALL/*ALL) OBJTYPE(*CMD) DETAIL(*SERVICE) OUTPUT(*OUTFILE) ...
Read more >Display default values when running help command #619
I would like to see the defined default values when I request the parameter help command. If this is not possible by default, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Agree, and FWIW I’d prefer
default.js
.+1