We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a55bd48 commit 21c6870Copy full SHA for 21c6870
autoload/easycomplete/ui.vim
@@ -137,7 +137,8 @@ function! easycomplete#ui#HighlightWordUnderCursor() " {{{
137
3match none
138
return
139
endif
140
- if getline(".")[col(".")-1] !~# '[[:punct:][:blank:]]'
+ let curr_char = getline(".")[col(".")-1]
141
+ if curr_char !~# '[[:punct:][:blank:]]' || curr_char == "_"
142
if empty(s:easycomplete_search_bg_color)
143
let bgcolor = easycomplete#ui#GetBgColor("Search")
144
else
0 commit comments