Easy motion highlights indention guide lines.
Hello. Thank you for your help. I recently installed the plugin indentLine. This plugin uses vims conceal feature to show indention guide lines. It looks something like this:
As you can see, the indentations are marked with the ¦ character.
Now, if I try to search for "in" using easymotion-overwin-f2, this is what happens:
As you can see, the ¦ character gets highlighted.
This problem in either of the following scenarios:
- the setting:
let EasyMotion_do_shade = 0is set - there are only matches other windows. Then only the other windows get shaded, the current window does not, but the
¦character is still highlighted.
How can I avoid this, so that the ¦ character does not get highlighted?
Hello, did anyone see this post?
Hey, I also use easymotion with indentLine and don't see these kind of visual glitches. Do you have a minimal vimrc which can be used to reproduce this issue?
Oh. Sorry for the late response. I got distracted in something in my life. Here is the minimal config:
call plug#begin("~/.vim/plugged")
Plug 'DasOhmoff/vim-easymotion'
Plug 'Yggdroot/indentLine'
call plug#end()
let EasyMotion_do_shade = 0
I noticed that this problem in either of the following scenarios:
- the setting:
let EasyMotion_do_shade = 0is set - there are only matches other windows. Then only the other windows get shaded, the current window does not, but the
¦character is still highlighted.
I modified my original question to also mention that.
Thank you for your help.