From c91a012505df9e62bcdc4ab005a611794a93f8fe Mon Sep 17 00:00:00 2001 From: haya14busa Date: Fri, 21 Mar 2014 16:54:42 +0900 Subject: [PATCH] Oops...Remove cmdline.set_suffix() --- autoload/EasyMotion/command_line.vim | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/autoload/EasyMotion/command_line.vim b/autoload/EasyMotion/command_line.vim index d76c417..51fb03f 100644 --- a/autoload/EasyMotion/command_line.vim +++ b/autoload/EasyMotion/command_line.vim @@ -2,7 +2,7 @@ " FILE: autoload/EasyMotion/command_line.vim " AUTHOR: haya14busa " Reference: https://github.com/osyo-manga/vim-over -" Last Change: 15 Mar 2014. +" Last Change: 21 Mar 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 @@ -144,8 +144,6 @@ function! s:search.on_enter(cmdline) "{{{ endif call EasyMotion#highlight#add_highlight('\%#', \ g:EasyMotion_hl_inc_cursor) - call a:cmdline.set_suffix(printf("col:%d", a:cmdline.getpos())) - " redraw endif endfunction "}}} function! s:search.on_leave(cmdline) "{{{ @@ -168,9 +166,6 @@ function! s:search.on_char(cmdline) "{{{ if g:EasyMotion_off_screen_search call s:off_screen_search(re) endif - call a:cmdline.set_suffix(printf("col:%d", a:cmdline.getpos())) - "redraw - " throw 'vital-over excetion' elseif s:search.line.length() >= s:num_strokes call s:search.exit() endif