Reduce lines of code a little

This commit is contained in:
haya14busa 2014-06-19 17:44:20 +09:00
parent cb801bca48
commit 70406b717c

View File

@ -978,13 +978,11 @@ function! s:PromptUser(groups) "{{{
\ '')
" Highlight targets {{{
if marker_chars_len == 1
let _hl_group = g:EasyMotion_hl_group_target
elseif i == 0
let _hl_group = g:EasyMotion_hl2_first_group_target
else
let _hl_group = g:EasyMotion_hl2_second_group_target
endif
let _hl_group =
\ (marker_chars_len == 1) ? g:EasyMotion_hl_group_target
\ : (i == 0) ? g:EasyMotion_hl2_first_group_target
\ : g:EasyMotion_hl2_second_group_target
if exists('*matchaddpos')
call EasyMotion#highlight#add_pos_highlight(
\ line_num, col_num, _hl_group)