Sublime Text 2 as block highlighting in emacs

Is there an emacs plugin that creates these beautiful vertical lines for code blocks, for example in Sublime Text 2? (See Attached Screenshots, what I mean).

enter image description here

+6
source share
2 answers

Please see the indent selection:

https://github.com/antonj/Highlight-Indentation-for-Emacs/

Unfortunately, the current version is very simple, and it draws personal columns instead of thin rows, so it does not look very attractive. But at least this is the beginning.

I do not use it by default - if I am lost, I do Mx highlight-indentation .

+3
source

This is not exactly the same, but you get similar benefits from the features mentioned here:

http://www.emacswiki.org/emacs/HighlightCurrentColumn

http://www.emacswiki.org/emacs/VlineMode

Vline can use a thin line (or face). The selection of the column marker remains placed (does not move with the cursor), and you can select any number of columns, but it uses a face, not a thin line.

+1
source

Source: https://habr.com/ru/post/905826/


All Articles