From 125dd32361df63626ff7a3ff2ebc3416d2e3be55 Mon Sep 17 00:00:00 2001 From: Adnan Y Date: Fri, 10 Apr 2015 16:12:03 -0700 Subject: [PATCH 1/2] meteor: completion updated with more commands --- plugins/meteor/_meteor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/meteor/_meteor b/plugins/meteor/_meteor index 69ac7a1b7..48b9fa4c1 100644 --- a/plugins/meteor/_meteor +++ b/plugins/meteor/_meteor @@ -43,6 +43,8 @@ _1st_arguments=( "publish-for-arch: Builds an already-published package for a new platform." "search: Search through the package server database." "show: Show detailed information about a release or package." + "install-sdk:Installs SDKs for a platform." + "configure-android:Run the Android configuration tool from Meteor’s ADK environment." ) local expl From ef1e89b44b1a969d1ad08bf788a860be0c6f0379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Fri, 15 Jun 2018 23:05:01 +0200 Subject: [PATCH 2/2] meteor: fix formatting and reorganise --- plugins/meteor/_meteor | 64 +++++++++++++++++++++--------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/plugins/meteor/_meteor b/plugins/meteor/_meteor index 48b9fa4c1..6a15c4bc2 100644 --- a/plugins/meteor/_meteor +++ b/plugins/meteor/_meteor @@ -13,38 +13,38 @@ _meteor_installed_packages() { local -a _1st_arguments _1st_arguments=( - "run: [default] Run this project in local development mode." - "debug: Run the project, but suspend the server process for debugging." - "create: Create a new project." - "update: Upgrade this project's dependencies to their latest versions." - "add: Add a package to this project." - "remove: Remove a package from this project." - "list: List the packages explicitly used by your project." - "add-platform: Add a platform to this project." - "remove-platform: Remove a platform from this project." - "list-platforms: List the platforms added to your project." - "build: Build this project for all platforms." - "lint: Build this project and run the linters printing all errors and warnings." - "shell: Launch a Node REPL for interactively evaluating server-side code." - "mongo: Connect to the Mongo database for the specified site." - "reset: Reset the project state. Erases the local database." - "deploy: Deploy this project to Meteor." - "logs: Show logs for specified site." - "authorized: View or change authorized users and organizations for a site." - "claim: Claim a site deployed with an old Meteor version." - "login: Log in to your Meteor developer account." - "logout: Log out of your Meteor developer account." - "whoami: Prints the username of your Meteor developer account." - "test-packages: Test one or more packages." - "admin: Administrative commands." - "list-sites: List sites for which you are authorized." - "publish-release: Publish a new meteor release to the package server." - "publish: Publish a new version of a package to the package server." - "publish-for-arch: Builds an already-published package for a new platform." - "search: Search through the package server database." - "show: Show detailed information about a release or package." + "add-platform:Add a platform to this project." + "add:Add a package to this project." + "admin:Administrative commands." + "authorized:View or change authorized users and organizations for a site." + "build:Build this project for all platforms." + "claim:Claim a site deployed with an old Meteor version." + "configure-android:Run the Android configuration tool from Meteor's ADK environment." + "create:Create a new project." + "debug:Run the project, but suspend the server process for debugging." + "deploy:Deploy this project to Meteor." "install-sdk:Installs SDKs for a platform." - "configure-android:Run the Android configuration tool from Meteor’s ADK environment." + "lint:Build this project and run the linters printing all errors and warnings." + "list-platforms:List the platforms added to your project." + "list-sites:List sites for which you are authorized." + "list:List the packages explicitly used by your project." + "login:Log in to your Meteor developer account." + "logout:Log out of your Meteor developer account." + "logs:Show logs for specified site." + "mongo:Connect to the Mongo database for the specified site." + "publish-for-arch:Builds an already-published package for a new platform." + "publish-release:Publish a new meteor release to the package server." + "publish:Publish a new version of a package to the package server." + "remove-platform:Remove a platform from this project." + "remove:Remove a package from this project." + "reset:Reset the project state. Erases the local database." + "run:[default] Run this project in local development mode." + "search:Search through the package server database." + "shell:Launch a Node REPL for interactively evaluating server-side code." + "show:Show detailed information about a release or package." + "test-packages:Test one or more packages." + "update:Upgrade this project's dependencies to their latest versions." + "whoami:Prints the username of your Meteor developer account." ) local expl @@ -64,4 +64,4 @@ case "$words[2]" in add) _meteor_all_packages _wanted packages expl 'all packages' compadd -a packages ;; -esac \ No newline at end of file +esac