diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2025-03-15 09:53:43 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2025-03-15 10:26:56 +0100 |
| commit | 9ef80352b6e8e18e002d3d2097c8bbd1d168fe40 (patch) | |
| tree | 96f33613f9b4e2881eb889fb033ba02d89af4fc3 /runtime/doc | |
| parent | 1b1af8aae83e86a6d313d20682d9e02562e94edb (diff) | |
| download | rneovim-9ef80352b6e8e18e002d3d2097c8bbd1d168fe40.tar.gz rneovim-9ef80352b6e8e18e002d3d2097c8bbd1d168fe40.tar.bz2 rneovim-9ef80352b6e8e18e002d3d2097c8bbd1d168fe40.zip | |
vim-patch:96395e1: runtime(cs): Update C# runtime files
closes: vim/vim#16884
https://github.com/vim/vim/commit/96395e15125502e6c29bc93c58d688a2bdc31300
Co-authored-by: Nick Jensen <nickspoon@gmail.com>
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/syntax.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 00486a49db..ae9dc67256 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -811,6 +811,21 @@ doesn't work for you, or you don't edit Progress at all, use this in your startup vimrc: > :let filetype_w = "cweb" +CSHARP *cs.vim* *ft-cs-syntax* + +C# raw string literals may use any number of quote marks to encapsulate the +block, and raw interpolated string literals may use any number of braces to +encapsulate the interpolation, e.g. > + + $$$""""Hello {{{name}}}"""" +< +By default, Vim highlights 3-8 quote marks, and 1-8 interpolation braces. +The maximum numbers of quotes and braces recognized can configured using the +following variables: + + Variable Default ~ + g:cs_raw_string_quote_count 8 + g:cs_raw_string_interpolation_brace_count 8 DART *dart.vim* *ft-dart-syntax* |