Mercurial > vim
view runtime/syntax/synload.vim @ 20388:83f390b19223 v8.2.0749
patch 8.2.0749: TERM signal test fails on FreeBSD
Commit: https://github.com/vim/vim/commit/55ba4b844f1b0e44f0f2e1bd14d26e7ad2df9ffc
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed May 13 16:53:49 2020 +0200
patch 8.2.0749: TERM signal test fails on FreeBSD
Problem: TERM signal test fails on FreeBSD.
Solution: Do not check the messages, the may appear anywhere. (Dominique
Pelle, closes #6075)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 13 May 2020 17:00:04 +0200 |
parents | bd021eb62e73 |
children | 367439b95aba |
line wrap: on
line source
" Vim syntax support file " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2020 Apr 13 " This file sets up for syntax highlighting. " It is loaded from "syntax.vim" and "manual.vim". " 1. Set the default highlight groups. " 2. Install Syntax autocommands for all the available syntax files. if !has("syntax") finish endif " let others know that syntax has been switched on let syntax_on = 1 " Set the default highlighting colors. Use a color scheme if specified. if exists("colors_name") exe "colors " . colors_name else runtime! syntax/syncolor.vim endif " Line continuation is used here, remove 'C' from 'cpoptions' let s:cpo_save = &cpo set cpo&vim " First remove all old syntax autocommands. au! Syntax au Syntax * call s:SynSet() fun! s:SynSet() " clear syntax for :set syntax=OFF and any syntax name that doesn't exist syn clear if exists("b:current_syntax") unlet b:current_syntax endif let s = expand("<amatch>") if s == "ON" " :set syntax=ON if &filetype == "" echohl ErrorMsg echo "filetype unknown" echohl None endif let s = &filetype elseif s == "OFF" let s = "" endif if s != "" " Load the syntax file(s). When there are several, separated by dots, " load each in sequence. Skip empty entries. for name in split(s, '\.') if !empty(name) exe "runtime! syntax/" . name . ".vim syntax/" . name . "/*.vim" endif endfor endif endfun " Handle adding doxygen to other languages (C, C++, C#, IDL, java, php, DataScript) au Syntax c,cpp,cs,idl,java,php,datascript \ if (exists('b:load_doxygen_syntax') && b:load_doxygen_syntax) \ || (exists('g:load_doxygen_syntax') && g:load_doxygen_syntax) \ | runtime! syntax/doxygen.vim \ | endif " Source the user-specified syntax highlighting file if exists("mysyntaxfile") let s:fname = expand(mysyntaxfile) if filereadable(s:fname) execute "source " . fnameescape(s:fname) endif endif " Restore 'cpoptions' let &cpo = s:cpo_save unlet s:cpo_save