Skip to content

Instantly share code, notes, and snippets.

@mopp
Created June 23, 2013 10:17
Show Gist options
  • Save mopp/5844513 to your computer and use it in GitHub Desktop.
Save mopp/5844513 to your computer and use it in GitHub Desktop.
function! g:vimconsole#hooks.on_logged(context)
call vimconsole#winopen()
" 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment