Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Extend verbose option to the command-line
I did a grep for more instances, but I think that's the only place where
it calls echo directly.
  • Loading branch information
somini committed Nov 16, 2015
commit e3ee8c96b26137abc384d3ba93910bf506c885eb
4 changes: 3 additions & 1 deletion autoload/EasyMotion/command_line.vim
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ function! s:Cancell() " {{{
call EasyMotion#highlight#delete_highlight()
call EasyMotion#helper#VarReset('&scrolloff')
keepjumps call setpos('.', s:save_orig_pos)
echo 'EasyMotion: Cancelled'
if g:EasyMotion_verbose
echo 'EasyMotion: Cancelled'
endif
return ''
endfunction " }}}
function! s:getPromptMessage(num_strokes) "{{{
Expand Down