vim-easymotion icon indicating copy to clipboard operation
vim-easymotion copied to clipboard

Easy motion highlights indention guide lines.

Open DasOhmoff opened this issue 5 years ago • 3 comments

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: image 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: image As you can see, the ¦ character gets highlighted.

This problem in either of the following scenarios:

  1. the setting: let EasyMotion_do_shade = 0 is set
  2. 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?

DasOhmoff avatar May 01 '20 13:05 DasOhmoff

Hello, did anyone see this post?

DasOhmoff avatar May 26 '20 09:05 DasOhmoff

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?

IngoMeyer441 avatar Jan 11 '21 15:01 IngoMeyer441

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:

  1. the setting: let EasyMotion_do_shade = 0 is set
  2. 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.

DasOhmoff avatar Oct 23 '21 15:10 DasOhmoff