summaryrefslogtreecommitdiff
path: root/mnv/runtime/ftplugin/README.txt
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 12:41:27 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 12:41:27 +0300
commit4f2d36194b4f299aa7509d815c07121039ea833b (patch)
treef3ded014bad3a4c76ff6a22b8726ebaab68c3d13 /mnv/runtime/ftplugin/README.txt
parent5b578e70c314723a3cde5c9bfc2be0bf1dadc93b (diff)
downloadProject-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.tar.gz
Project-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.zip
NOISSUE change uvim folder name to mnv
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'mnv/runtime/ftplugin/README.txt')
-rw-r--r--mnv/runtime/ftplugin/README.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/mnv/runtime/ftplugin/README.txt b/mnv/runtime/ftplugin/README.txt
new file mode 100644
index 0000000000..e9ec638fc9
--- /dev/null
+++ b/mnv/runtime/ftplugin/README.txt
@@ -0,0 +1,24 @@
+The ftplugin directory is for MNV plugin scripts that are only used for a
+specific filetype.
+
+All files ending in .mnv in this directory and subdirectories will be sourced
+by MNV when it detects the filetype that matches the name of the file or
+subdirectory.
+For example, these are all loaded for the "c" filetype:
+
+ c.mnv
+ c_extra.mnv
+ c/settings.mnv
+
+Note that the "_" in "c_extra.mnv" is required to separate the filetype name
+from the following arbitrary name.
+
+The filetype plugins are only loaded when the ":filetype plugin" command has
+been used.
+
+The default filetype plugin files contain settings that 95% of the users will
+want to use. They do not contain personal preferences, like the value of
+'shiftwidth'.
+
+If you want to do additional settings, or overrule the default filetype
+plugin, you can create your own plugin file. See ":help ftplugin" in MNV.