Mercurial > vim
view runtime/compiler/tidy.vim @ 31227:1a9e44a45614 v9.0.0947
patch 9.0.0947: invalid memory access in substitute with function
Commit: https://github.com/vim/vim/commit/cc762a48d42b579fb7bdec2c614636b830342dd5
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Nov 25 13:03:31 2022 +0000
patch 9.0.0947: invalid memory access in substitute with function
Problem: Invalid memory access in substitute with function that goes to
another file.
Solution: Check for text locked in CTRL-W gf.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 25 Nov 2022 14:15:05 +0100 |
parents | 34b4eb3a8458 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: HTML Tidy " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2020 Sep 4 if exists("current_compiler") finish endif let current_compiler = "tidy" 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=tidy\ -quiet\ -errors\ --gnu-emacs\ yes CompilerSet errorformat=%f:%l:%c:\ %trror:\ %m, \%f:%l:%c:\ %tarning:\ %m, \%f:%l:%c:\ %tnfo:\ %m, \%f:%l:%c:\ %m, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save