From 6092de9af8f3f420c64cffa5b9d8e75b6c8a076c Mon Sep 17 00:00:00 2001 From: Cameron McEfee Date: Thu, 5 Dec 2013 14:04:22 -0800 Subject: [PATCH 1/4] Add manual package install directions to Atom docs --- docs/customizing-atom.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/customizing-atom.md b/docs/customizing-atom.md index 752c7d74d..d16dab266 100644 --- a/docs/customizing-atom.md +++ b/docs/customizing-atom.md @@ -19,6 +19,14 @@ Themes` section on the `Packages` tab within the Settings panel. You can install non-bundled packages by going to the `Available Packages` section on the `Packages` tab within the Settings panel (`cmd-,`). +To manually install a package from [atom.io](http://atom-io.dev/packages) (emmet, in this example), run this in your shell: + +`$ apm install emmet` + +If you want to install a specific version of a package, you can do so like this: + +`$ apm install emmet@0.1.5` + ## Customizing Key Bindings Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors From 250938869eb8cce2309d002bc1b4b75ee05be2b1 Mon Sep 17 00:00:00 2001 From: Cameron McEfee Date: Thu, 5 Dec 2013 15:23:52 -0800 Subject: [PATCH 2/4] Use @gjtorikian's suggested copy --- docs/customizing-atom.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/customizing-atom.md b/docs/customizing-atom.md index d16dab266..14e03257b 100644 --- a/docs/customizing-atom.md +++ b/docs/customizing-atom.md @@ -19,13 +19,11 @@ Themes` section on the `Packages` tab within the Settings panel. You can install non-bundled packages by going to the `Available Packages` section on the `Packages` tab within the Settings panel (`cmd-,`). -To manually install a package from [atom.io](http://atom-io.dev/packages) (emmet, in this example), run this in your shell: +To manually install a package or theme... -`$ apm install emmet` +`apm install ` -If you want to install a specific version of a package, you can do so like this: - -`$ apm install emmet@0.1.5` +`apm install @`. For example `apm install emmet@0.1.5` installs the `0.1.5` release of Emmet into Atom. ## Customizing Key Bindings From 97dbe0d3b2b8de941eae8145afc54d048cdeb522 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 6 Dec 2013 12:26:09 -0800 Subject: [PATCH 3/4] :memo: Wording tweaks and link to apm and emmet --- docs/customizing-atom.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/customizing-atom.md b/docs/customizing-atom.md index 14e03257b..efa18f5f8 100644 --- a/docs/customizing-atom.md +++ b/docs/customizing-atom.md @@ -19,11 +19,15 @@ Themes` section on the `Packages` tab within the Settings panel. You can install non-bundled packages by going to the `Available Packages` section on the `Packages` tab within the Settings panel (`cmd-,`). -To manually install a package or theme... +You can also install packages from the command line using the +[apm](https://github.com/atom/apm) command: -`apm install ` +`apm install ` to install the latest version. -`apm install @`. For example `apm install emmet@0.1.5` installs the `0.1.5` release of Emmet into Atom. +`apm install @` to install a specific version. + +For example `apm install emmet@0.1.5` installs the `0.1.5` release of the +[Emmet](https://github.com/atom/emmet) package into `~/.atom/packages`. ## Customizing Key Bindings From c0fe3c01de8f14b833b7959653c8aa18469d5081 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 6 Dec 2013 12:26:52 -0800 Subject: [PATCH 4/4] :memo: Remove extra space --- docs/customizing-atom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/customizing-atom.md b/docs/customizing-atom.md index efa18f5f8..54648661b 100644 --- a/docs/customizing-atom.md +++ b/docs/customizing-atom.md @@ -26,7 +26,7 @@ You can also install packages from the command line using the `apm install @` to install a specific version. -For example `apm install emmet@0.1.5` installs the `0.1.5` release of the +For example `apm install emmet@0.1.5` installs the `0.1.5` release of the [Emmet](https://github.com/atom/emmet) package into `~/.atom/packages`. ## Customizing Key Bindings