Mercurial > vim
view runtime/compiler/xmlwf.vim @ 33897:7777043c9393 v9.0.2154
patch 9.0.2154: The option[] array is not sorted
Commit: https://github.com/vim/vim/commit/f48558e10a08a1a483e25ef847bbceeac6b44561
Author: zeertzjq <zeertzjq@outlook.com>
Date: Fri Dec 8 21:34:31 2023 +0100
patch 9.0.2154: The option[] array is not sorted
Problem: The options[] array is not sorted alphabetically.
Solution: Sort it alphabetically. Add a test. Avoid unnecessary loop
iterations in findoption().
closes: #13648
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 10 Dec 2023 15:16:32 +0100 |
parents | 2704c4e3e20a |
children | e1df51f68736 |
line wrap: on
line source
" Vim Compiler File " Compiler: xmlwf " Maintainer: Robert Rowsome <rowsome@wam.umd.edu> " Last Change: 2019 Jul 23 if exists("current_compiler") finish endif let current_compiler = "xmlwf" let s:cpo_save = &cpo set cpo&vim if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif CompilerSet makeprg=xmlwf\ %:S CompilerSet errorformat=%f:%l%c:%m let &cpo = s:cpo_save unlet s:cpo_save