mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -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.
561 B
561 B
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:
.wrap-guide {
width: 10px;
background-color: red;
}