aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-11-07 01:05:23 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-11-07 01:08:51 +0100
commit8c6a92c6e2af2d5025b1be994802d61f39af2b9e (patch)
treef30af80d9205cdec7e8493bca332d4da771f40a2 /runtime/doc
parent0312fc2ddb4144a2fd0d323d742c41f625405420 (diff)
downloadrneovim-8c6a92c6e2af2d5025b1be994802d61f39af2b9e.tar.gz
rneovim-8c6a92c6e2af2d5025b1be994802d61f39af2b9e.tar.bz2
rneovim-8c6a92c6e2af2d5025b1be994802d61f39af2b9e.zip
vim-patch:e0720cbf63eb
Update runtime files. https://github.com/vim/vim/commit/e0720cbf63eb3045be8d965e3182c0c392c7b5e9
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/filetype.txt4
-rw-r--r--runtime/doc/ft_rust.txt2
-rw-r--r--runtime/doc/message.txt7
-rw-r--r--runtime/doc/usr_41.txt4
4 files changed, 12 insertions, 5 deletions
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt
index ed223e57db..377864b128 100644
--- a/runtime/doc/filetype.txt
+++ b/runtime/doc/filetype.txt
@@ -309,12 +309,12 @@ define yourself. There are a few ways to avoid this:
You need to define your own mapping before the plugin is loaded (before
editing a file of that type). The plugin will then skip installing the
default mapping.
-
+ *no_mail_maps*
3. Disable defining mappings for a specific filetype by setting a variable,
which contains the name of the filetype. For the "mail" filetype this
would be: >
:let no_mail_maps = 1
-
+< *no_plugin_maps*
4. Disable defining mappings for all filetypes by setting a variable: >
:let no_plugin_maps = 1
<
diff --git a/runtime/doc/ft_rust.txt b/runtime/doc/ft_rust.txt
index b6e974e371..c2e21e40bb 100644
--- a/runtime/doc/ft_rust.txt
+++ b/runtime/doc/ft_rust.txt
@@ -1,7 +1,7 @@
*ft_rust.txt* Filetype plugin for Rust
==============================================================================
-CONTENTS *rust* *ft-rust*
+CONTENTS *rust*
1. Introduction |rust-intro|
2. Settings |rust-settings|
diff --git a/runtime/doc/message.txt b/runtime/doc/message.txt
index 904b9dfce4..c381b07330 100644
--- a/runtime/doc/message.txt
+++ b/runtime/doc/message.txt
@@ -744,6 +744,13 @@ a user-defined command.
You tried to set an option after startup that only allows changes during
startup.
+ *E943* >
+ Command table needs to be updated, run 'make cmdidxs'
+
+This can only happen when changing the source code, when adding a command in
+src/ex_cmds.h. The lookup table then needs to be updated, by running: >
+ make cmdidxs
+
==============================================================================
3. Messages *messages*
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 0f4e2767ab..be88a35369 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -2227,8 +2227,8 @@ plugin for the mail filetype: >
endif
Two global variables are used:
-no_plugin_maps disables mappings for all filetype plugins
-no_mail_maps disables mappings for a specific filetype
+|no_plugin_maps| disables mappings for all filetype plugins
+|no_mail_maps| disables mappings for the "mail" filetype
USER COMMANDS