annotate runtime/indent/cuda.vim @ 23884:00e904bdb8a5
v8.2.2484
patch 8.2.2484: Vim9: Cannot use a comment starting with #{
Commit: https://github.com/vim/vim/commit/dee37dc733df444df1950eb922a35560e4b113d6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 7 16:40:05 2021 +0100
patch 8.2.2484: Vim9: Cannot use a comment starting with #{
Problem: Vim9: Cannot use a comment starting with #{ after an expression.
Solution: Remove the check for "{" since #{ dictionaries are not supported.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 07 Feb 2021 16:45:04 +0100 |
parents |
7bc41231fbc7 |
children |
4027cefc2aab |
rev |
line source |
2034
|
1 " Vim indent file
|
|
2 " Language: CUDA
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
4 " Last Change: 2008 Nov 29
|
|
5
|
|
6 " Only load this indent file when no other was loaded.
|
|
7 if exists("b:did_indent")
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_indent = 1
|
|
11
|
|
12 " It's just like C indenting
|
|
13 setlocal cindent
|
|
14
|
|
15 let b:undo_indent = "setl cin<"
|