Mercurial > vim
view runtime/syntax/icemenu.vim @ 31930:e3ab1d0f2ef9 v9.0.1297
patch 9.0.1297: wrong value for $LC_CTYPE makes the environ test fail
Commit: https://github.com/vim/vim/commit/962d91643520ec3748fcf5af3263d89ccfcdda92
Author: WuerfelDev <dev@wuerfeldev.de>
Date: Fri Feb 10 20:49:08 2023 +0000
patch 9.0.1297: wrong value for $LC_CTYPE makes the environ test fail
Problem: Wrong value for $LC_CTYPE makes the environ test fail.
Solution: Unset $LC_CTYPE when running tests. (closes https://github.com/vim/vim/issues/11963)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 10 Feb 2023 22:00:03 +0100 |
parents | 43efa4f5a8ea |
children |
line wrap: on
line source
" Vim syntax file " Language: Icewm Menu " Maintainer: James Mahler <James.Mahler@gmail.com> " Last Change: Fri Apr 1 15:13:48 EST 2005 " Extensions: ~/.icewm/menu " Comment: Icewm is a lightweight window manager. This adds syntax " highlighting when editing your user's menu file (~/.icewm/menu). " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif " not case sensitive syntax case ignore " icons .xpm .png and .gif syntax match _icon /"\=\/.*\.xpm"\=/ syntax match _icon /"\=\/.*\.png"\=/ syntax match _icon /"\=\/.*\.gif"\=/ syntax match _icon /"\-"/ " separator syntax keyword _rules separator " prog and menu syntax keyword _ids menu prog " highlights highlight link _rules Underlined highlight link _ids Type highlight link _icon Special let b:current_syntax = "IceMenu"