[CB-3816] 'plugin list' yields identifier, not 'name'; add/rm supports >1 arg
Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/8f78f9c2 Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/8f78f9c2 Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/8f78f9c2 Branch: refs/heads/master Commit: 8f78f9c2fbb4929c990dfd070b168cd75760ddae Parents: a2b1719 Author: Mike Sierra <[email protected]> Authored: Thu Jul 18 13:30:46 2013 -0400 Committer: Michael Brooks <[email protected]> Committed: Thu Jul 18 12:19:15 2013 -0700 ---------------------------------------------------------------------- docs/en/edge/guide/cli/index.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/8f78f9c2/docs/en/edge/guide/cli/index.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/guide/cli/index.md b/docs/en/edge/guide/cli/index.md index e4f9d4f..2650932 100644 --- a/docs/en/edge/guide/cli/index.md +++ b/docs/en/edge/guide/cli/index.md @@ -82,7 +82,7 @@ which follow common web development file-naming conventions. The distribute the application. The other two arguments are optional: the `com.example.hello` argument -provides your project with a reverse-domain-style identifier, and the +provides your project with a reverse domain-style identifier, and the `"Hello World!"` provides the application's display text. You can edit both of these values later in the `config.xml` file. @@ -248,18 +248,22 @@ might add: * Debug console: $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-console.git -Use `plugin ls` (or `plugin list`) to view currently installed plugins: +Use `plugin ls` (or `plugin list`) to view currently installed +plugins. Each displays by its identifier: $ cordova plugin ls # or 'plugin list' [ 'org.apache.cordova.core.console' ] -To remove a plugin, you refer to it by the same name that appears in +To remove a plugin, refer to it by the same identifier that appears in the listing. For example, here is how you would remove support for a debug console from a release version: $ cordova plugin rm org.apache.cordova.core.console $ cordova plugin remove org.apache.cordova.core.console # same +You can batch-remove or add plugins by specifying more than one +argument for each command. + <!-- ## Run the App on the Device
