aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-06-20 00:10:08 -0400
committerJames McCoy <jamessan@jamessan.com>2016-07-08 01:38:21 -0400
commit8f2505e5942d5e6bdc5250b002b402b10709deb0 (patch)
treeefbf6cfbf3e7d4d07904c97dbfcd8ebd0c82acbd /runtime/doc
parent28300a1293b17072c1c5f053a55aae2268454246 (diff)
downloadrneovim-8f2505e5942d5e6bdc5250b002b402b10709deb0.tar.gz
rneovim-8f2505e5942d5e6bdc5250b002b402b10709deb0.tar.bz2
rneovim-8f2505e5942d5e6bdc5250b002b402b10709deb0.zip
vim-patch:dae8d21
Updated runtime files https://github.com/vim/vim/commit/dae8d21dd291df6a6679a00be64e18bca0156576 Ignore changes to * doc/eval.txt: Channel related docs * doc/help.txt, doc/index.txt, doc/os_390.txt: Removal of obsolete features, which already happened in Neovim * doc/tags: Generated at build time * doc/todo.txt, doc/version5.txt: Irrelevant to Neovim
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/help.txt2
-rw-r--r--runtime/doc/index.txt2
-rw-r--r--runtime/doc/message.txt2
-rw-r--r--runtime/doc/repeat.txt8
-rw-r--r--runtime/doc/starting.txt4
-rw-r--r--runtime/doc/syntax.txt4
-rw-r--r--runtime/doc/usr_29.txt2
-rw-r--r--runtime/doc/various.txt2
8 files changed, 15 insertions, 11 deletions
diff --git a/runtime/doc/help.txt b/runtime/doc/help.txt
index fd5b9a99ec..305eaea924 100644
--- a/runtime/doc/help.txt
+++ b/runtime/doc/help.txt
@@ -1,4 +1,4 @@
-*help.txt* For Vim version 7.4. Last change: 2016 Feb 22
+*help.txt* For Vim version 7.4. Last change: 2016 Feb 27
VIM - main help file
k
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index a974aa3d08..9efd107226 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1,4 +1,4 @@
-*index.txt* For Vim version 7.4. Last change: 2016 Feb 24
+*index.txt* For Vim version 7.4. Last change: 2016 Feb 27
VIM REFERENCE MANUAL by Bram Moolenaar
diff --git a/runtime/doc/message.txt b/runtime/doc/message.txt
index 114bb61d99..7ceddeb674 100644
--- a/runtime/doc/message.txt
+++ b/runtime/doc/message.txt
@@ -1,4 +1,4 @@
-*message.txt* For Vim version 7.4. Last change: 2013 Feb 23
+*message.txt* For Vim version 7.4. Last change: 2016 Feb 27
VIM REFERENCE MANUAL by Bram Moolenaar
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 4db3580efa..527b84c992 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -1,4 +1,4 @@
-*repeat.txt* For Vim version 7.4. Last change: 2016 Feb 24
+*repeat.txt* For Vim version 7.4. Last change: 2016 Feb 26
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -212,6 +212,10 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
'runtimepath'. And the directory found is added to
'runtimepath'.
+ If you have a directory under 'packpath' that doesn't
+ actually have a plugin file, just create an empty one.
+ This will still add the directory to 'runtimepath'.
+
Note that {name} is the directory name, not the name
of the .vim file. If the "{name}/plugin" directory
contains more than one file they are all sourced.
@@ -548,7 +552,7 @@ Additionally, these commands can be used:
About the additional commands in debug mode:
- There is no command-line completion for them, you get the completion for the
normal Ex commands only.
-- You can shorten them, up to a single character, unless more then one command
+- You can shorten them, up to a single character, unless more than one command
starts with the same letter. "f" stands for "finish", use "fr" for "frame".
- Hitting <CR> will repeat the previous one. When doing another command, this
is reset (because it's not clear what you want to repeat).
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index 0508c52540..5db65cfaad 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -1,4 +1,4 @@
-*starting.txt* For Vim version 7.4. Last change: 2016 Feb 21
+*starting.txt* For Vim version 7.4. Last change: 2016 Feb 27
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -714,7 +714,7 @@ There are several ways to exit Vim:
- Use `:cquit`. Also when there are changes.
When using `:cquit` or when there was an error message Vim exits with exit
-code 1. Errors can be avoide by using `:silent!`.
+code 1. Errors can be avoided by using `:silent!`.
==============================================================================
6. Saving settings *save-settings*
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index f7e9ece3d8..b6f1e4d856 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -1,4 +1,4 @@
-*syntax.txt* For Vim version 7.4. Last change: 2016 Feb 24
+*syntax.txt* For Vim version 7.4. Last change: 2016 Feb 25
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2886,7 +2886,7 @@ You may wish to embed languages into sh. I'll give an example courtesy of
Lorance Stinson on how to do this with awk as an example. Put the following
file into $HOME/.config/nvim/after/syntax/sh/awkembed.vim: >
- " AWK Embedding: {{{1
+ " AWK Embedding:
" ==============
" Shamelessly ripped from aspperl.vim by Aaron Hope.
if exists("b:current_syntax")
diff --git a/runtime/doc/usr_29.txt b/runtime/doc/usr_29.txt
index e495aad06d..9eb66ce83c 100644
--- a/runtime/doc/usr_29.txt
+++ b/runtime/doc/usr_29.txt
@@ -1,4 +1,4 @@
-*usr_29.txt* For Vim version 7.4. Last change: 2008 Jun 28
+*usr_29.txt* For Vim version 7.4. Last change: 2016 Feb 27
VIM USER MANUAL - by Bram Moolenaar
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index e6b05e1ab1..b3e5e2db03 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -1,4 +1,4 @@
-*various.txt* For Vim version 7.4. Last change: 2016 Feb 18
+*various.txt* For Vim version 7.4. Last change: 2016 Feb 27
VIM REFERENCE MANUAL by Bram Moolenaar