From 30e6870ff76751db0783f39269b1783ffaf7a68f Mon Sep 17 00:00:00 2001 From: haya14busa Date: Mon, 29 Jun 2015 17:38:52 +0900 Subject: [PATCH] Raise priority for target highlight --- autoload/EasyMotion/highlight.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/EasyMotion/highlight.vim b/autoload/EasyMotion/highlight.vim index 7ca7e16..fa915a6 100644 --- a/autoload/EasyMotion/highlight.vim +++ b/autoload/EasyMotion/highlight.vim @@ -147,9 +147,9 @@ call EasyMotion#highlight#init() let s:h = {} let s:h.ids = {} let s:priorities = { - \ g:EasyMotion_hl_group_target : 1, - \ g:EasyMotion_hl2_first_group_target : 1, - \ g:EasyMotion_hl2_second_group_target : 1, + \ g:EasyMotion_hl_group_target : 100, + \ g:EasyMotion_hl2_first_group_target : 100, + \ g:EasyMotion_hl2_second_group_target : 100, \ g:EasyMotion_hl_group_shade : 0, \ g:EasyMotion_hl_inc_search : 1, \ g:EasyMotion_hl_inc_cursor : 2,