docs(builtin): fix and annotate language blocks (#24506)

This commit is contained in:
Lewis Russell
2023-08-01 09:57:52 +01:00
committed by GitHub
parent 12ccea5967
commit 9b5f58185e
4 changed files with 4635 additions and 4162 deletions

2847
runtime/doc/builtin.txt generated

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -217,14 +217,14 @@ local CONFIG = {
'same way. The difference is that a String is handled like it is one line.', 'same way. The difference is that a String is handled like it is one line.',
'When it contains a "\\n" character, this is not seen as a line break for the', 'When it contains a "\\n" character, this is not seen as a line break for the',
'pattern. It can be matched with a "\\n" in the pattern, or with ".". Example:', 'pattern. It can be matched with a "\\n" in the pattern, or with ".". Example:',
'>', '>vim',
'\t:let a = "aaaa\\nxxxx"', '\tlet a = "aaaa\\nxxxx"',
'\t:echo matchstr(a, "..\\n..")', '\techo matchstr(a, "..\\n..")',
'\taa', '\t" aa',
'\txx', '\t" xx',
'\t:echo matchstr(a, "a.x")', '\techo matchstr(a, "a.x")',
'\ta', '\t" a',
'\tx', '\t" x',
'', '',
'Don\'t forget that "^" will only match at the first character of the String and', 'Don\'t forget that "^" will only match at the first character of the String and',
'"$" at the last character of the string. They don\'t match after or before a', '"$" at the last character of the string. They don\'t match after or before a',

File diff suppressed because it is too large Load Diff