minimap-codeglance
Codeglance like functionality for Atom
olmokramer 29,250 104 0.4.7 MIT GitHub

minimap-codeglance package

Codeglance for Atom as a minimap plugin. Shows the code that's under the mouse cursor when hovering the minimap.

Minimap codeglance

styling the codeglance element

You can style the codeglance element from your stylesheet (~/.atom/styles.less) like this:

minimap-codeglance {
  // see through the codeglance element
  opacity: .8;
  // change the shadow of the element
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  // etc.
}

todo