From b7bb754be8a65bcbef3b7fbca5ef69188c4200ae Mon Sep 17 00:00:00 2001 From: haya14busa Date: Tue, 21 Jan 2014 06:26:25 +0900 Subject: [PATCH] Fix cursor highlight priorities --- autoload/EasyMotion/highlight.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/EasyMotion/highlight.vim b/autoload/EasyMotion/highlight.vim index 677e8a3..f2984b4 100644 --- a/autoload/EasyMotion/highlight.vim +++ b/autoload/EasyMotion/highlight.vim @@ -2,7 +2,7 @@ " FILE: highlight.vim " AUTHOR: haya14busa " Reference: https://github.com/t9md/vim-smalls -" Last Change: 20 Jan 2014. +" Last Change: 21 Jan 2014. " License: MIT license {{{ " Permission is hereby granted, free of charge, to any person obtaining " a copy of this software and associated documentation files (the @@ -40,7 +40,7 @@ let s:priorities = { \ 'EasyMotionShade' : 0, \ 'EasyMotionShadeLine' : 0, \ 'EasyMotionIncSearch' : 1, - \ 'EasyMotionIncCursor' : 1, + \ 'EasyMotionIncCursor' : 2, \ 'EasyMotionMoveHL' : 0, \ } for group in keys(s:priorities)