Skip to content

atom-minimap/minimap-selection

Repository files navigation

minimap-selection package

Build Status

Display the buffer's selections on the minimap

Screenshot

Settings

Highlight Cursors Lines

When enabled, lines that holds a cursors will be highlighted in the minimap.

Customization

The selection color can be customized using the following CSS rule in your user stylesheet:

.minimap-selection .region {
  background: green;
}

When the Highlight Cursors Lines setting is enabled the line's highlight color can be customized using the following CSS rule in your user stylesheet:

.minimap-selection .cursor-line {
  background: blue;
}

When the Outline Selection setting is enabled, the outline color can be customized using the following CSS rule:

.minimap-selection .region-outline {
  background: green;
}