mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
The goal is that `loadPackage` will be the go-to place for loading all kinds of resources out of directories. `requireExtension` was only designed to load and activate extension modules.
22 lines
561 B
Markdown
22 lines
561 B
Markdown
### 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
|
|
|
|
Setting the wrap guide column still needs to be converted to the new config
|
|
system. Bug someone if you find this and we still haven't done it.
|
|
|
|
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;
|
|
}
|
|
```
|