blob: 8770bdb67496fd6366720f6654337478edaa791f [file] [log] [blame]
Riley Bruinsf5398c82024-07-07 20:56:43 +02001" Vim filetype plugin
2" Language: CUDA
3" Maintainer: Riley Bruins <ribru17@gmail.com>
4" Last Change: 2024 Jul 06
5
6if exists('b:did_ftplugin')
7 finish
8endif
9let b:did_ftplugin = 1
10
11" Set 'comments' to format dashed lists in comments.
12" Also include ///, used for Doxygen.
13setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
14setlocal commentstring=//\ %s
15
16let b:undo_ftplugin = 'setl com< cms<'