summaryrefslogtreecommitdiff
path: root/mnv/runtime/syntax/testdir/input/help.txt
diff options
context:
space:
mode:
Diffstat (limited to 'mnv/runtime/syntax/testdir/input/help.txt')
-rw-r--r--mnv/runtime/syntax/testdir/input/help.txt61
1 files changed, 61 insertions, 0 deletions
diff --git a/mnv/runtime/syntax/testdir/input/help.txt b/mnv/runtime/syntax/testdir/input/help.txt
new file mode 100644
index 0000000000..d7eb03271f
--- /dev/null
+++ b/mnv/runtime/syntax/testdir/input/help.txt
@@ -0,0 +1,61 @@
+
+
+ MNV REFERENCE MANUAL by Bram Moolenaar
+ and Somebody Else
+ and Another Person
+
+
+ MNV USER MANUAL by Bram Moolenaar
+ and Somebody Else
+ and Another Person
+
+
+MNV HELP FILE FORMAT
+
+
+Issue #17721 (Strange >mnv highlighting in help documentation?)~
+
+ *restore-cursor* *last-position-jump* >mnv
+ augroup RestoreCursor
+ autocmd!
+ autocmd BufReadPost *
+ \ let line = line("'\"")
+ \ | if line >= 1 && line <= line("$") && &filetype !~# 'commit'
+ \ && index(['xxd', 'gitrebase'], &filetype) == -1
+ \ && !&diff
+ \ | execute "normal! g`\""
+ \ | endif
+ augroup END
+
+
+URLs~
+
+ *g:zig_recommended_style*
+By default the following indentation options are set, in accordance with Zig's
+recommended style (https://ziglang.org/documentation/master/): >
+
+
+NOTE, WARNING and DEPRECATED~
+
+When you 'send a file to MNV', MNV changes to that file's directory. Note,
+however, that any long directory names will appear in their short (MS-DOS)
+form on some Windows versions. This is a limitation of the Windows "Send To"
+mechanism.
+
+
+EXAMPLE LANGUAGES~
+ *mnv9-mix*
+There is one way to use both legacy and MNV9 syntax in one script file: >mnv9
+
+ " legacy MNV script comments may go here
+ if !has('mnv9script')
+ " legacy MNV script commands go here
+ finish
+ endif
+ mnv9script
+ # MNV9 script commands go here
+
+This allows for writing a script that takes advantage of the MNV9 script
+syntax if possible, but will also work on a MNV version without it.
+
+ mnv:tw=78:ts=8:noet:ft=help:norl: