Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
fec2e56b
Commit
fec2e56b
authored
Jun 16, 2019
by
Nicholas Wehr
Committed by
Robby Russell
Jun 15, 2019
Browse files
adding gatsby command set (#7831)
parent
5f18dbf8
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/gatsby/README.md
0 → 100644
View file @
fec2e56b
# gatsby autocomplete plugin
*
Adds autocomplete options for all gatsby commands.
## Requirements
In order to make this work, you will need to have gatsby set up in your path.
plugins/gatsby/_gatsby
0 → 100644
View file @
fec2e56b
#compdef gatsby
#autoload
# in order to make this work, you will need to have gatsby
# https://www.gatsbyjs.org/
local -a _1st_arguments
_1st_arguments=(
'develop:Start development server. Watches files, rebuilds, and hot reloads if something changes'
'build:Build a Gatsby project.'
'serve:Serve previously built Gatsby site.'
'info:Get environment information for debugging and issue reporting'
'clean:Wipe the local gatsby environment including built assets and cache'
'repl:Get a node repl with context of Gatsby environment, see (add docs link here)'
'new: [rootPath] [starter] Create new Gatsby project.'
'telemetry:Enable or disable Gatsby anonymous analytics collection.'
)
_arguments -C '*:: :->subcmds' && return 0
if (( CURRENT == 1 )); then
_describe -t commands "gatsby subcommand" _1st_arguments
return
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment