mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-24 01:37:27 +08:00
Compare commits
No commits in common. "8362ae285a5c227cb20387543483a3597fa31931" and "bb6c14cdfd0b7d543d0d9c2e5f0c0a9409a82084" have entirely different histories.
8362ae285a
...
bb6c14cdfd
37
plugins/flutter/_flutter
Normal file
37
plugins/flutter/_flutter
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
#compdef flutter
|
||||||
|
#autoload
|
||||||
|
|
||||||
|
local -a _1st_arguments
|
||||||
|
_1st_arguments=(
|
||||||
|
"analyze":"Analyze the project's Dart code."
|
||||||
|
"assemble":"Assemble and build flutter resources."
|
||||||
|
"attach":"Attach to a running application."
|
||||||
|
"build":"Flutter build commands."
|
||||||
|
"channel":"List or switch flutter channels."
|
||||||
|
"clean":"Delete the build/ and .dart_tool/ directories."
|
||||||
|
"config":"Configure Flutter settings."
|
||||||
|
"create":"Create a new Flutter project."
|
||||||
|
"devices":"List all connected devices."
|
||||||
|
"doctor":"Show information about the installed tooling."
|
||||||
|
"drive":"Runs Flutter Driver tests for the current project."
|
||||||
|
"emulators":"List, launch and create emulators."
|
||||||
|
"format":" Format one or more dart files."
|
||||||
|
"help":"Display help information for flutter."
|
||||||
|
"install":"Install a Flutter app on an attached device."
|
||||||
|
"logs":"Show log output for running Flutter apps."
|
||||||
|
"make-host-app-editable":"Moves host apps from generated directories to non-generated directories so that they can be edited by developers."
|
||||||
|
"precache":"Populates the Flutter tool's cache of binary artifacts."
|
||||||
|
"pub":"Commands for managing Flutter packages."
|
||||||
|
"run":"Run your Flutter app on an attached device."
|
||||||
|
"screenshot":"Take a screenshot from a connected device."
|
||||||
|
"test":"Run Flutter unit tests for the current project."
|
||||||
|
"upgrade":"Upgrade your copy of Flutter."
|
||||||
|
"version":"List or switch flutter versions."
|
||||||
|
)
|
||||||
|
|
||||||
|
_arguments -C '*:: :->subcmds'
|
||||||
|
|
||||||
|
if (( CURRENT == 1 )); then
|
||||||
|
_describe -t commands "flutter command" _1st_arguments
|
||||||
|
return
|
||||||
|
fi
|
||||||
@ -12,18 +12,3 @@ alias flrd="flutter run --debug"
|
|||||||
alias flrp="flutter run --profile"
|
alias flrp="flutter run --profile"
|
||||||
alias flrr="flutter run --release"
|
alias flrr="flutter run --release"
|
||||||
alias flupgrd="flutter upgrade"
|
alias flupgrd="flutter upgrade"
|
||||||
|
|
||||||
# COMPLETION FUNCTION
|
|
||||||
if (( ! $+commands[flutter] )); then
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If the completion file doesn't exist yet, we need to autoload it and
|
|
||||||
# bind it to `flutter`. Otherwise, compinit will have already done that.
|
|
||||||
if [[ ! -f "$ZSH_CACHE_DIR/completions/_flutter" ]]; then
|
|
||||||
typeset -g -A _comps
|
|
||||||
autoload -Uz _flutter
|
|
||||||
_comps[flutter]=_flutter
|
|
||||||
fi
|
|
||||||
|
|
||||||
flutter zsh-completion >| "$ZSH_CACHE_DIR/completions/_flutter" &|
|
|
||||||
@ -2,8 +2,7 @@
|
|||||||
: ${GIT_AUTO_FETCH_INTERVAL:=60}
|
: ${GIT_AUTO_FETCH_INTERVAL:=60}
|
||||||
|
|
||||||
# Necessary for the git-fetch-all function
|
# Necessary for the git-fetch-all function
|
||||||
zmodload zsh/datetime
|
zmodload zsh/datetime zsh/stat
|
||||||
zmodload -F zsh/stat b:zstat # only zstat command, not stat command
|
|
||||||
|
|
||||||
function git-fetch-all {
|
function git-fetch-all {
|
||||||
(
|
(
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user