File: README.org

package info (click to toggle)
emacs-highlight-indentation 0.7.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 80 kB
  • sloc: lisp: 184; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 770 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
* Highlighting indentation for Emacs
  Provides two minor modes =highlight-indentation-mode= and
  =highlight-indentation-current-column-mode=

  - =highlight-indentation-mode= displays guidelines indentation
    (space indentation only).
  - =highlight-indentation-current-column-mode= displays guidelines for
    the current-point indentation (space indentation only).
    
  [[http://i.imgur.com/TUyPH.png]]

  Appearance of guidelines is customizable by changing the face
  =highlight-indentation-face= and
  =highlight-indentation-current-column-face=.

  Example, colors from screenshot:
  #+BEGIN_SRC emacs-lisp
  (set-face-background 'highlight-indentation-face "#e3e3d3")
  (set-face-background 'highlight-indentation-current-column-face "#c3b3b3")
  #+END_SRC