Remove package related documentation from core

This commit is contained in:
Matt Colyer 2013-08-20 15:17:00 -07:00
parent 7173467b1a
commit 95535d93c6
5 changed files with 0 additions and 77 deletions

View File

@ -1,29 +0,0 @@
## Command Panel
The command panel contains a partial implementation of the [Sam command language](http://man.cat-v.org/plan_9/1/sam).
In addition, packages are free to design and define any scoped command.
Pop open the command line by hitting .
You can get a list of commands available to Atom (including any keybindings) by hitting `meta-p`.
## Examples
`,` selects the entire file
`1,4` selects lines 1-4 in the current file
`/pattern` selects the first match after the cursor/selection
`s/pattern/replacement` replaces the first text matching pattern in current selection
`s/pattern/replacement/g` replaces all text matching pattern in current selection
`,s/pattern/replacement/g` replaces all text matching pattern in file
`1,4s/pattern/replacement` replaces all text matching pattern in lines 1-4
`x/pattern` selects all matches in the current selections
`,x/pattern` selects all matches in the file
`,x/pattern1/ x/pattern2` "structural regex" - selects all matches of pattern2 inside matches of pattern1

View File

@ -1,3 +0,0 @@
# Built-In Packages
Atom ships with several optional built-in packages.

View File

@ -1,7 +0,0 @@
## Markdown Preview
The `markdown-preview` extension displays the rendered HTML for the markdown
in the current editor.
It can be activated from the editor using the `ctrl-m` key-binding and is
currently enabled for `.markdown`, `.md`, `.mkd`, `.mkdown`, and `.ron` files.

View File

@ -1,33 +0,0 @@
## Wrap Guide
The `wrap-guide` extension places a vertical line in each editor at a certain
column to guide your formatting, so lines do not exceed a certain width.
By default, the wrap-guide is placed at the 80th column.
### Configuration
You can customize where the column is placed using the `wrapGuide.columns`
config option:
```coffeescript
"wrap-guide":
columns: [
{ pattern: "\.mm$", column: 200 },
{ pattern: "\.cc$", column: 120 }
]
```
The above config example would place the guide at the 200th column for paths
that end with `.mm` and place the guide at the 120th column for paths that end
with `.cc`.
You can configure the color and/or width of the line by adding the following
CSS to a custom stylesheet:
```css
.wrap-guide {
width: 10px;
background-color: red;
}
```

View File

@ -6,11 +6,6 @@
* [Getting Started](getting-started.html)
* [Configuring Atom](configuring-atom.html)
* Builtin Packages
* [Introduction](built-in-packages/intro.html)
* [Command Panel](built-in-packages/command-panel.html)
* [Markdown Preview](built-in-packages/markdown-preview.html)
* [Wrap Guide](built-in-packages/wrap-guide.html)
* Packages
* [Authoring Packages](packages/authoring-packages.html)
* [Creating Packages](packages/creating_a_package.html)