blob: c237aa30f95f65b81e0bd8ea51b7310dffdfc9f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
" Vim syntax file
" Language: OpenCL
" Last Change: 2024 Nov 19
" Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
if exists("b:current_syntax")
finish
endif
" TODO: support openCL specific keywords
runtime! syntax/c.vim
let current_syntax = "opencl"
|