From b4d3ac9eaccc84eafb5f002a15e3b3a33a5fb13c Mon Sep 17 00:00:00 2001 From: haya14busa Date: Thu, 20 Feb 2014 05:53:00 +0900 Subject: [PATCH] Unify the way to get marker_char from marker_chars --- autoload/EasyMotion.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/EasyMotion.vim b/autoload/EasyMotion.vim index dd6c4f3..190fbea 100644 --- a/autoload/EasyMotion.vim +++ b/autoload/EasyMotion.vim @@ -917,7 +917,7 @@ function! s:PromptUser(groups) "{{{ let substitute_expr = i == 0 \ ? marker_chars_first . \ repeat(' ', target_char_disp_len - 1) - \ : matchstr(marker_chars, '^.\zs.') + \ : split(marker_chars, '\zs')[i] let lines[line_num]['marker'] = substitute( \ lines[line_num]['marker'],