diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-09-28 22:18:09 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-09-28 22:18:09 +0200 |
commit | 27903c5b8656c796564ef073c1ebe77a2f0154e1 (patch) | |
tree | 2b0a3a14494d7976fb79a7517706e25d2a95d080 /syntax/ch.vim | |
parent | d5e38fa97bc50a93a66473d6cd7072fbcbadda57 (diff) | |
download | vim-polyglot-3.0.0.tar.gz vim-polyglot-3.0.0.zip |
Revert inlining basic language packv3.0.0
Diffstat (limited to 'syntax/ch.vim')
-rw-r--r-- | syntax/ch.vim | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/syntax/ch.vim b/syntax/ch.vim deleted file mode 100644 index 181e8d27..00000000 --- a/syntax/ch.vim +++ /dev/null @@ -1,42 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1 - -" Vim syntax file -" Language: Ch -" Maintainer: SoftIntegration, Inc. <info@softintegration.com> -" URL: http://www.softintegration.com/download/vim/syntax/ch.vim -" Last change: 2004 Sep 01 -" Created based on cpp.vim -" -" Ch is a C/C++ interpreter with many high level extensions -" - -" quit when a syntax file was already loaded -if exists("b:current_syntax") - finish -endif - -" Read the C syntax to start with -runtime! syntax/c.vim -unlet b:current_syntax - -" Ch extentions - -syn keyword chStatement new delete this foreach -syn keyword chAccess public private -syn keyword chStorageClass __declspec(global) __declspec(local) -syn keyword chStructure class -syn keyword chType string_t array - -" Default highlighting - -hi def link chAccess chStatement -hi def link chExceptions Exception -hi def link chStatement Statement -hi def link chType Type -hi def link chStructure Structure - -let b:current_syntax = "ch" - -" vim: ts=8 - -endif |