aboutsummaryrefslogtreecommitdiff
path: root/scripts/gen_eval_files.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gen_eval_files.lua')
-rwxr-xr-xscripts/gen_eval_files.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/gen_eval_files.lua b/scripts/gen_eval_files.lua
index 7193346758..ee8bbe48a3 100755
--- a/scripts/gen_eval_files.lua
+++ b/scripts/gen_eval_files.lua
@@ -217,14 +217,14 @@ local CONFIG = {
'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',
'pattern. It can be matched with a "\\n" in the pattern, or with ".". Example:',
- '>',
- '\t:let a = "aaaa\\nxxxx"',
- '\t:echo matchstr(a, "..\\n..")',
- '\taa',
- '\txx',
- '\t:echo matchstr(a, "a.x")',
- '\ta',
- '\tx',
+ '>vim',
+ '\tlet a = "aaaa\\nxxxx"',
+ '\techo matchstr(a, "..\\n..")',
+ '\t" aa',
+ '\t" xx',
+ '\techo matchstr(a, "a.x")',
+ '\t" a',
+ '\t" x',
'',
'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',