view runtime/compiler/shellcheck.vim @ 32527:2a672d04c547 v9.0.1595

patch 9.0.1595: line pointer becomes invalid when using spell checking Commit: https://github.com/vim/vim/commit/e84c773d42e8b6ef0f8ae9b6c7312e0fd47909af Author: Luuk van Baal <luukvbaal@gmail.com> Date: Wed May 31 18:57:36 2023 +0100 patch 9.0.1595: line pointer becomes invalid when using spell checking Problem: Line pointer becomes invalid when using spell checking. Solution: Call ml_get() at the right places. (Luuk van Baal, closes https://github.com/vim/vim/issues/12456)
author Bram Moolenaar <Bram@vim.org>
date Wed, 31 May 2023 20:00:07 +0200
parents a3bb84cd0f59
children e1df51f68736
line wrap: on
line source

" Vim compiler file
" Compiler:	ShellCheck
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2020 Sep 4

if exists("current_compiler")
  finish
endif
let current_compiler = "shellcheck"

if exists(":CompilerSet") != 2		" older Vim always used :setlocal
  command -nargs=* CompilerSet setlocal <args>
endif

let s:cpo_save = &cpo
set cpo&vim

CompilerSet makeprg=shellcheck\ -f\ gcc
CompilerSet errorformat=%f:%l:%c:\ %trror:\ %m\ [SC%n],
		       \%f:%l:%c:\ %tarning:\ %m\ [SC%n],
		       \%f:%l:%c:\ %tote:\ %m\ [SC%n],
		       \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save