From 192ce94ac6f14ca7d03682f3ab67a6d0559fcb1f Mon Sep 17 00:00:00 2001 From: alemidev Date: Tue, 18 Oct 2022 23:08:08 +0200 Subject: [PATCH] fix: where did this come from?? --- plugin/codemp.vim | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) 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