aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/autoload/spellfile.vim2
-rw-r--r--runtime/doc/job_control.txt2
-rw-r--r--runtime/doc/msgpack_rpc.txt1
-rw-r--r--runtime/doc/nvim_provider.txt2
-rw-r--r--runtime/doc/options.txt2
-rw-r--r--runtime/doc/starting.txt4
-rw-r--r--runtime/doc/term.txt3
7 files changed, 8 insertions, 8 deletions
diff --git a/runtime/autoload/spellfile.vim b/runtime/autoload/spellfile.vim
index 8024f40bb0..5b1079e919 100644
--- a/runtime/autoload/spellfile.vim
+++ b/runtime/autoload/spellfile.vim
@@ -197,7 +197,7 @@ endfunc
function! spellfile#WritableSpellDir()
if has("unix")
- " For Unix always use the $HOME/.vim directory
+ " For Unix always use the $HOME/.nvim directory
return $HOME . "/.nvim/spell"
endif
for dir in split(&rtp, ',')
diff --git a/runtime/doc/job_control.txt b/runtime/doc/job_control.txt
index b3a95ae7b9..2521132047 100644
--- a/runtime/doc/job_control.txt
+++ b/runtime/doc/job_control.txt
@@ -83,7 +83,7 @@ Here's what is happening:
- The second shell is started with the -c argument, causing it to execute a
command then exit. In this case, the command is a for loop that will print 0
through 9 then exit.
-- The |JobHandler()| function is called by the `JobActivity` autocommand (notice
+- The `JobHandler()` function is called by the `JobActivity` autocommand (notice
how the shell* pattern matches the names `shell1` and `shell2` passed to
|jobstart()|), and it takes care of displaying stdout/stderr received from
the shells.
diff --git a/runtime/doc/msgpack_rpc.txt b/runtime/doc/msgpack_rpc.txt
index 121b47167b..f3fcd069c4 100644
--- a/runtime/doc/msgpack_rpc.txt
+++ b/runtime/doc/msgpack_rpc.txt
@@ -74,6 +74,7 @@ There are four ways to open msgpack-rpc streams to nvim:
2. Through the stdin/stdout of a program spawned by the |rpcstart()| function.
+ *$NVIM_LISTEN_ADDRESS*
3. Through the socket automatically created with each instance. To find out
the socket location (which is random by default) from a running nvim
instance, one can inspect the |$NVIM_LISTEN_ADDRESS| environment variable:
diff --git a/runtime/doc/nvim_provider.txt b/runtime/doc/nvim_provider.txt
index cea55a6656..f6c919c592 100644
--- a/runtime/doc/nvim_provider.txt
+++ b/runtime/doc/nvim_provider.txt
@@ -9,7 +9,7 @@ Nvim provider infrastructure *nvim-provider*
First of all, this document is meant to be read by developers interested in
contributing to the refactoring effort. If you are a normal user or plugin
developer looking to learn about Nvim |msgpack-rpc| infrastructure for
-implementing plugins in other programming languages, see |external-plugin|.
+implementing plugins in other programming languages, see |remote-plugin|.
For instructions on how to enable Python plugins, see |nvim-python|. For
clipboard, see |nvim-clipboard|.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index f1676ab619..627bc4158e 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -5522,7 +5522,7 @@ A jump table for the options with a short description can be found at |Q_op|.
$HOME/.vim/after"
Macintosh: "$VIM:vimfiles,
$VIMRUNTIME,
- $VIM:vimfiles:after"
+ $VIM:vimfiles:after")
global
{not in Vi}
This is a list of directories which will be searched for runtime
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index c34011f35b..c60bf40528 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -57,7 +57,7 @@ filename One or more file names. The first one will be the current
that needs to be saved. Except when in readonly mode, then
the buffer is not marked modified. Example: >
ls | nvim -R -
- Starting in Ex mode: >
+< Starting in Ex mode: >
nvim -e -
nvim -E
< Start editing in silent mode. See |-s-ex|.
@@ -212,7 +212,7 @@ argument.
{not in Vi}
*-g*
--g Start Vim in GUI mode. See |gui|. For the opposite see |-v|.
+-g Start Vim in GUI mode. See |gui|.
{not in Vi}
*-e*
diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt
index f37ba9b256..18b83d3812 100644
--- a/runtime/doc/term.txt
+++ b/runtime/doc/term.txt
@@ -25,8 +25,7 @@ NOTE: Most of this is not used when running the |GUI|.
1. Startup *startup-terminal*
When Vim is started a default terminal type is assumed. for MS-DOS this is
-the pc terminal, for Unix an ansi terminal. A few other terminal types are
-always available, see below |builtin-terms|.
+the pc terminal, for Unix an ansi terminal.
You can give the terminal name with the '-T' Vim argument. If it is not given
Vim will try to get the name from the TERM environment variable.