mirror of
https://github.com/neovim/neovim.git
synced 2026-01-15 17:45:24 +00:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
14 lines
260 B
VimL
14 lines
260 B
VimL
" Vim syntax file
|
|
" Language: OpenCL
|
|
" Last Change: 2024 Nov 19
|
|
" Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> (invalid)
|
|
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
" TODO: support openCL specific keywords
|
|
runtime! syntax/c.vim
|
|
|
|
let current_syntax = "opencl"
|