Created
January 17, 2012 19:33
-
-
Save hirochachacha/1628362 to your computer and use it in GitHub Desktop.
ansi_buffer - quickrun.vim custom outputter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let ansi_buffer = quickrun#outputter#buffer#new() | |
function! ansi_buffer.init(session) | |
call call(quickrun#outputter#buffer#new().init, [a:session], self) | |
endfunction | |
function! ansi_buffer.finish(session) | |
AnsiEsc | |
call call(quickrun#outputter#buffer#new().finish, [a:session], self) | |
endfunction | |
call quickrun#register_outputter("ansi_buffer", ansi_buffer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment