Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antonj/Highlight-Indentation-for-Emacs
Minor modes to highlight indentation guides in emacs.
https://github.com/antonj/Highlight-Indentation-for-Emacs
Last synced: 3 months ago
JSON representation
Minor modes to highlight indentation guides in emacs.
- Host: GitHub
- URL: https://github.com/antonj/Highlight-Indentation-for-Emacs
- Owner: antonj
- Created: 2010-12-16T09:05:11.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2022-01-03T03:42:21.000Z (almost 3 years ago)
- Last Synced: 2024-02-17T07:35:21.277Z (9 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 33.2 KB
- Stars: 453
- Watchers: 16
- Forks: 54
- Open Issues: 13
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* 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
To enable experimental support for showing indent guides on blank lines, set ~highlight-indentation-blank-lines~ to ~t~.