Mercurial > vim
annotate runtime/syntax/cuda.vim @ 22163:b6d36f0b4f03 v8.2.1631
patch 8.2.1631: test_fails() does not check the context of the line number
Commit: https://github.com/vim/vim/commit/9bd5d879c2ecfbdbb168b090e12f4b89724a302e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 6 21:47:48 2020 +0200
patch 8.2.1631: test_fails() does not check the context of the line number
Problem: test_fails() does not check the context of the line number.
Solution: Use another argument to specify the context of the line number.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 06 Sep 2020 22:00:03 +0200 |
parents | 167a030448fa |
children | e7137eab4b6f |
rev | line source |
---|---|
1620 | 1 " Vim syntax file |
2 " Language: CUDA (NVIDIA Compute Unified Device Architecture) | |
3 " Maintainer: Timothy B. Terriberry <tterribe@users.sourceforge.net> | |
13231 | 4 " Last Change: 2018 Feb 06 |
1620 | 5 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
6 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
7 if exists("b:current_syntax") |
1620 | 8 finish |
9 endif | |
10 | |
13231 | 11 " Read the C++ syntax to start with |
12 runtime! syntax/cpp.vim | |
1620 | 13 |
14 " CUDA extentions | |
15 syn keyword cudaStorageClass __device__ __global__ __host__ | |
16 syn keyword cudaStorageClass __constant__ __shared__ | |
17 syn keyword cudaStorageClass __inline__ __align__ __thread__ | |
18 "syn keyword cudaStorageClass __import__ __export__ __location__ | |
19 syn keyword cudaStructure template | |
20 syn keyword cudaType char1 char2 char3 char4 | |
21 syn keyword cudaType uchar1 uchar2 uchar3 uchar4 | |
22 syn keyword cudaType short1 short2 short3 short4 | |
23 syn keyword cudaType ushort1 ushort2 ushort3 ushort4 | |
24 syn keyword cudaType int1 int2 int3 int4 | |
25 syn keyword cudaType uint1 uint2 uint3 uint4 | |
26 syn keyword cudaType long1 long2 long3 long4 | |
27 syn keyword cudaType ulong1 ulong2 ulong3 ulong4 | |
28 syn keyword cudaType float1 float2 float3 float4 | |
29 syn keyword cudaType ufloat1 ufloat2 ufloat3 ufloat4 | |
30 syn keyword cudaType dim3 texture textureReference | |
31 syn keyword cudaType cudaError_t cudaDeviceProp cudaMemcpyKind | |
32 syn keyword cudaType cudaArray cudaChannelFormatKind | |
33 syn keyword cudaType cudaChannelFormatDesc cudaTextureAddressMode | |
34 syn keyword cudaType cudaTextureFilterMode cudaTextureReadMode | |
35 syn keyword cudaVariable gridDim blockIdx blockDim threadIdx | |
36 syn keyword cudaConstant __DEVICE_EMULATION__ | |
37 syn keyword cudaConstant cudaSuccess | |
38 " Many more errors are defined, but only these are listed in the maunal | |
39 syn keyword cudaConstant cudaErrorMemoryAllocation | |
40 syn keyword cudaConstant cudaErrorInvalidDevicePointer | |
41 syn keyword cudaConstant cudaErrorInvalidSymbol | |
42 syn keyword cudaConstant cudaErrorMixedDeviceExecution | |
43 syn keyword cudaConstant cudaMemcpyHostToHost | |
44 syn keyword cudaConstant cudaMemcpyHostToDevice | |
45 syn keyword cudaConstant cudaMemcpyDeviceToHost | |
46 syn keyword cudaConstant cudaMemcpyDeviceToDevice | |
47 syn keyword cudaConstant cudaReadModeElementType | |
48 syn keyword cudaConstant cudaReadModeNormalizedFloat | |
49 syn keyword cudaConstant cudaFilterModePoint | |
50 syn keyword cudaConstant cudaFilterModeLinear | |
51 syn keyword cudaConstant cudaAddressModeClamp | |
52 syn keyword cudaConstant cudaAddressModeWrap | |
53 syn keyword cudaConstant cudaChannelFormatKindSigned | |
54 syn keyword cudaConstant cudaChannelFormatKindUnsigned | |
55 syn keyword cudaConstant cudaChannelFormatKindFloat | |
56 | |
57 hi def link cudaStorageClass StorageClass | |
58 hi def link cudaStructure Structure | |
59 hi def link cudaType Type | |
60 hi def link cudaVariable Identifier | |
61 hi def link cudaConstant Constant | |
62 | |
63 let b:current_syntax = "cuda" | |
64 | |
65 " vim: ts=8 |