From 9ef80352b6e8e18e002d3d2097c8bbd1d168fe40 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Sat, 15 Mar 2025 09:53:43 +0100 Subject: 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 --- runtime/doc/syntax.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'runtime/doc') 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* -- cgit