diff --git a/plugin/codemp.vim b/plugin/codemp.vim index e601b00..f0d492d 100644 --- a/plugin/codemp.vim +++ b/plugin/codemp.vim @@ -1,11 +1,3 @@ -" Copyright 2017 Justin Charette -" -" Licensed under the Apache License, Version 2.0 or the MIT license -" , at your -" option. This file may not be copied, modified, or distributed -" except according to those terms. - if ! exists('s:jobid') let s:jobid = 0 endif @@ -95,6 +87,6 @@ function codemp#cursor() endfunction function s:OnStderr(id, data, event) dict - let g:msg = 'codemp: stderr: ' . join(a:data, "\n") + let g:msg = 'codemp: ' . join(a:data, "\n") echo g:msg endfunction