aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-01 05:24:44 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-11-05 22:45:48 +0100
commit4de70f5b9581bd0e35e7af3b6fb1eb835d538555 (patch)
tree024a025d26b1d70030616b2747145ac01c1a9def
parent672977414343fdc9c3dee912b77f77120c7ab1da (diff)
downloadrneovim-4de70f5b9581bd0e35e7af3b6fb1eb835d538555.tar.gz
rneovim-4de70f5b9581bd0e35e7af3b6fb1eb835d538555.tar.bz2
rneovim-4de70f5b9581bd0e35e7af3b6fb1eb835d538555.zip
doc
- update standard-plugin-list. closes #8388
-rw-r--r--runtime/doc/deprecated.txt5
-rw-r--r--runtime/doc/help.txt3
-rw-r--r--runtime/doc/pi_msgpack.txt2
-rw-r--r--src/nvim/api/vim.c2
4 files changed, 8 insertions, 4 deletions
diff --git a/runtime/doc/deprecated.txt b/runtime/doc/deprecated.txt
index 7c98b81867..92a6bd6b4f 100644
--- a/runtime/doc/deprecated.txt
+++ b/runtime/doc/deprecated.txt
@@ -42,10 +42,11 @@ Functions ~
*last_buffer_nr()* Obsolete name for bufnr("$").
Modifiers ~
+*cpo-<*
*:menu-<special>*
-*:menu-special* <> notation is always enabled. |cpo-<|
+*:menu-special* <> notation is always enabled.
*:map-<special>*
-*:map-special* <> notation is always enabled. |cpo-<|
+*:map-special* <> notation is always enabled.
Normal commands ~
*]f*
diff --git a/runtime/doc/help.txt b/runtime/doc/help.txt
index 976402c915..c2ad25aeda 100644
--- a/runtime/doc/help.txt
+++ b/runtime/doc/help.txt
@@ -160,6 +160,9 @@ Versions ~
*standard-plugin-list*
Standard plugins ~
|pi_gzip.txt| Reading and writing compressed files
+|pi_health.txt| Healthcheck framework
+|pi_matchit.txt| Extended "%" matching
+|pi_msgpack.txt| msgpack utilities
|pi_netrw.txt| Reading and writing files over a network
|pi_paren.txt| Highlight matching parens
|pi_spec.txt| Filetype plugin to work with rpm spec files
diff --git a/runtime/doc/pi_msgpack.txt b/runtime/doc/pi_msgpack.txt
index 2484a13878..951b897f55 100644
--- a/runtime/doc/pi_msgpack.txt
+++ b/runtime/doc/pi_msgpack.txt
@@ -1,4 +1,4 @@
-*pi_msgpack.txt* Nvim
+*pi_msgpack.txt* msgpack utilities
Author: Nikolay Pavlov <kp-pav@yandex.ru>
Copyright: (c) 2015 by Nikolay Pavlov
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index fed20a272a..7fcccfd988 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -1028,7 +1028,7 @@ Array nvim_get_api_info(uint64_t channel_id)
/// @param attributes Informal attributes describing the client. Clients might
/// define their own keys, but the following are suggested:
/// - "website" Website of client (for instance github repository)
-/// - "license" Informal descripton of the license, such as "Apache 2",
+/// - "license" Informal description of the license, such as "Apache 2",
/// "GPLv3" or "MIT"
/// - "logo" URI or path to image, preferably small logo or icon.
/// .png or .svg format is preferred.