neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 32566dc1c3e85e9743f25b6e6a622f63646b5b4f
parent 5a27d02584656f35d757c01f10a1d3c88910c519
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sat,  9 Nov 2024 08:23:55 +0800

vim-patch:3780c11: runtime(compiler): fix typo in cppcheck compiler plugin

closes: vim/vim#16002

https://github.com/vim/vim/commit/3780c11267415ff57f261fcd3e1dea0c2c9d8dd0

Co-authored-by: Enno <Konfekt@users.noreply.github.com>

Diffstat:
Mruntime/compiler/cppcheck.vim | 8+++-----
1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/runtime/compiler/cppcheck.vim b/runtime/compiler/cppcheck.vim @@ -1,15 +1,13 @@ " vim compiler file " Compiler: cppcheck (C++ static checker) " Maintainer: Vincent B. (twinside@free.fr) -" Last Change: 2024 oct 17 by @Konfekt +" Last Change: 2024 Oct 17 by @Konfekt -if exists("cppcheck") - finish -endif +if exists("current_compiler") | finish | endif let current_compiler = "cppcheck" let s:cpo_save = &cpo -set cpo-=C +set cpo&vim let s:slash = has('win32')? '\' : '/'