Skip to content

Instantly share code, notes, and snippets.

@mopp
Created June 23, 2013 09:53
Show Gist options
  • Save mopp/5844460 to your computer and use it in GitHub Desktop.
Save mopp/5844460 to your computer and use it in GitHub Desktop.
function! g:vimconsole#hooks.on_logged(context)
echomsg string(a:context)
endfunction
function! s:tester(i)
call vimconsole#log('This message is test '.a:i)
endfunction
for i in range(26)
call s:tester(i)
endfor
:VimConsoleOpen
:VimConsoleRedraw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment