aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/cuda.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-28 14:05:39 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-10-28 14:07:58 +0100
commit733b4ce0339f2fdcdb0db67717fc090dcfecf250 (patch)
treedc9498c3ac8b8d71933f785502c0689be8cd07ec /runtime/syntax/cuda.vim
parent1a51524ad540da00736027313cd89747c86c1690 (diff)
downloadrneovim-733b4ce0339f2fdcdb0db67717fc090dcfecf250.tar.gz
rneovim-733b4ce0339f2fdcdb0db67717fc090dcfecf250.tar.bz2
rneovim-733b4ce0339f2fdcdb0db67717fc090dcfecf250.zip
vim-patch:7254067ee970
Update runtime files. https://github.com/vim/vim/commit/7254067ee970686cc3ff4a1effc3e49e9192a5c1
Diffstat (limited to 'runtime/syntax/cuda.vim')
-rw-r--r--runtime/syntax/cuda.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/cuda.vim b/runtime/syntax/cuda.vim
index cfc70b9ea8..13d70e343a 100644
--- a/runtime/syntax/cuda.vim
+++ b/runtime/syntax/cuda.vim
@@ -1,15 +1,15 @@
" Vim syntax file
" Language: CUDA (NVIDIA Compute Unified Device Architecture)
" Maintainer: Timothy B. Terriberry <tterribe@users.sourceforge.net>
-" Last Change: 2007 Oct 13
+" Last Change: 2018 Feb 06
" 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
+" Read the C++ syntax to start with
+runtime! syntax/cpp.vim
" CUDA extentions
syn keyword cudaStorageClass __device__ __global__ __host__