Elpy: How to stop elpy from displaying vertical lines demarcating indentation

Created on 9 Jun 2016  Â·  5Comments  Â·  Source: jorgenschaefer/elpy

In elpy mode, emacs displays a lot of vertical lines that demarcate indentation. I would like it to not do so. What elpy variable controls this?

Question

Most helpful comment

I think there is no a specific variable for this, but I think you can disable highlight-indentation by using a hook with something like this:

(add-hook 'elpy-mode-hook (lambda () (highlight-indentation-mode -1)))

All 5 comments

I think there is no a specific variable for this, but I think you can disable highlight-indentation by using a hook with something like this:

(add-hook 'elpy-mode-hook (lambda () (highlight-indentation-mode -1)))

Yes, That did it. Thanks a lot!

Maybe a better solution, in the FAQ ;)

https://github.com/jorgenschaefer/elpy/wiki/FAQ#q-can-i-tell-elpy-not-to-load-one-of-the-minor-modes-it-enables-by-default

@humitos, you've been very active helping people in issues here – thank you very much for your work, it is greatly appreciated!

@jorgenschaefer I try to do what I can when I _think I know_ the answer. When I started configuring my emacs I felt the frustration...

You are the author of elpy but not the only user ;-)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

CDitzel picture CDitzel  Â·  5Comments

Holt59 picture Holt59  Â·  6Comments

kapilsh picture kapilsh  Â·  3Comments

mfcabrera picture mfcabrera  Â·  6Comments

rakanalh picture rakanalh  Â·  5Comments