gabrielelanaro / emacs-for-python

Collection of emacs extensions specifically collected for python development, with workflow guidelines!
http://gabrielelanaro.github.com/emacs-for-python
GNU General Public License v3.0
809 stars 150 forks source link

How to remove the underscore line while editing? #136

Open MassD opened 10 years ago

MassD commented 10 years ago

Hi.

I begin to use yoru suite. It is very nice.

However, could you please tell me how to remove the long underscore line which indicates the current edit position?

the line looks like this:

line

oracleyue commented 10 years ago

try this, it works for me (set-face-attribute hl-line-face nil :underline nil) Since by default the line hightlight color is the same as the background color, you won't see the highlight. Try to change the bg color of highlight, if you like, by (set-face-background 'hl-line "grey27") Here is a snaphot of what my line hightlight looks like selection_001