view runtime/indent/cuda.vim @ 35093:8c7e1b4e0e34 default tip

Added tag v9.1.0386 for changeset 72c223dcd7dac8035dd5daa8ab91f74e12542921
author Christian Brabandt <cb@256bit.org>
date Wed, 01 May 2024 19:00:05 +0200
parents 4027cefc2aab
children
line wrap: on
line source

" Vim indent file
" Language:	CUDA
" Maintainer:	The Vim Project <https://github.com/vim/vim>
" Last Change:	2023 Aug 10
" Former Maintainer:	Bram Moolenaar <Bram@vim.org>

" Only load this indent file when no other was loaded.
if exists("b:did_indent")
   finish
endif
let b:did_indent = 1

" It's just like C indenting
setlocal cindent

let b:undo_indent = "setl cin<"