doc: fix/remove broken tag references

This commit is contained in:
Justin M. Keyes
2018-11-05 02:47:22 +01:00
parent 1bbbd5f0ff
commit 72b1ce7f30
13 changed files with 16 additions and 27 deletions

View File

@@ -97,7 +97,7 @@ nvim_buf_lines_event[{buf}, {changedtick}, {firstline}, {lastline}, {linedata},
When {changedtick} is |v:null| this means the screen lines (display) changed When {changedtick} is |v:null| this means the screen lines (display) changed
but not the buffer contents. {linedata} contains the changed screen lines. but not the buffer contents. {linedata} contains the changed screen lines.
This happens when |inccommand| shows a buffer preview. This happens when 'inccommand' shows a buffer preview.
Properties:~ Properties:~
{buf} API buffer handle (buffer number) {buf} API buffer handle (buffer number)
@@ -138,7 +138,7 @@ nvim_buf_changedtick_event[{buf}, {changedtick}] *nvim_buf_changedtick_event*
nvim_buf_detach_event[{buf}] *nvim_buf_detach_event* nvim_buf_detach_event[{buf}] *nvim_buf_detach_event*
When buffer is detached (i.e. updates are disabled). Triggered explicitly by When buffer is detached (i.e. updates are disabled). Triggered explicitly by
|nvim_buf_detach| or implicitly in these cases: |nvim_buf_detach()| or implicitly in these cases:
- Buffer was |abandon|ed and 'hidden' is not set. - Buffer was |abandon|ed and 'hidden' is not set.
- Buffer was reloaded, e.g. with |:edit| or an external change triggered - Buffer was reloaded, e.g. with |:edit| or an external change triggered
|:checktime| or 'autoread'. |:checktime| or 'autoread'.

View File

@@ -278,7 +278,7 @@ Name triggered by ~
|VimEnter| after doing all the startup stuff |VimEnter| after doing all the startup stuff
|GUIEnter| after starting the GUI successfully |GUIEnter| after starting the GUI successfully
|GUIFailed| after starting the GUI failed |GUIFailed| after starting the GUI failed
|TermResponse| after the terminal response to |t_RV| is received |TermResponse| after the terminal response to t_RV is received
|QuitPre| when using `:quit`, before deciding whether to exit |QuitPre| when using `:quit`, before deciding whether to exit
|ExitPre| when using a command that may make Vim exit |ExitPre| when using a command that may make Vim exit
|VimLeavePre| before exiting Nvim, before writing the shada file |VimLeavePre| before exiting Nvim, before writing the shada file
@@ -989,7 +989,7 @@ TermClose When a |terminal| job ends.
TermOpen When a |terminal| job is starting. Can be TermOpen When a |terminal| job is starting. Can be
used to configure the terminal buffer. used to configure the terminal buffer.
*TermResponse* *TermResponse*
TermResponse After the response to |t_RV| is received from TermResponse After the response to t_RV is received from
the terminal. The value of |v:termresponse| the terminal. The value of |v:termresponse|
can be used to do things depending on the can be used to do things depending on the
terminal version. Note that this event may be terminal version. Note that this event may be

View File

@@ -212,7 +212,7 @@ CTRL-\ e {expr} *c_CTRL-\_e*
*c_CTRL-Y* *c_CTRL-Y*
CTRL-Y When there is a modeless selection, copy the selection into CTRL-Y When there is a modeless selection, copy the selection into
the clipboard. |modeless-selection| the clipboard.
If there is no selection CTRL-Y is inserted as a character. If there is no selection CTRL-Y is inserted as a character.
CTRL-M or CTRL-J *c_CTRL-M* *c_CTRL-J* *c_<NL>* *c_<CR>* *c_CR* CTRL-M or CTRL-J *c_CTRL-M* *c_CTRL-J* *c_<NL>* *c_<CR>* *c_CR*

View File

@@ -2925,7 +2925,7 @@ confirm({msg} [, {choices} [, {default} [, {type}]]])
made. It returns the number of the choice. For the first made. It returns the number of the choice. For the first
choice this is 1. choice this is 1.
{msg} is displayed in a |dialog| with {choices} as the {msg} is displayed in a dialog with {choices} as the
alternatives. When {choices} is missing or empty, "&OK" is alternatives. When {choices} is missing or empty, "&OK" is
used (and translated). used (and translated).
{msg} is a String, use '\n' to include a newline. Only on {msg} is a String, use '\n' to include a newline. Only on
@@ -8560,7 +8560,7 @@ tag_old_static Compiled with support for old static tags
|tag-old-static|. |tag-old-static|.
tag_any_white Compiled with support for any white characters in tags tag_any_white Compiled with support for any white characters in tags
files |tag-any-white|. files |tag-any-white|.
termresponse Compiled with support for |t_RV| and |v:termresponse|. termresponse Compiled with support for t_RV and |v:termresponse|.
textobjects Compiled with support for |text-objects|. textobjects Compiled with support for |text-objects|.
timers Compiled with |timer_start()| support. timers Compiled with |timer_start()| support.
title Compiled with window title support |'title'|. title Compiled with window title support |'title'|.

View File

@@ -229,8 +229,7 @@ shared between command calls. All Lua default libraries are available. In
addition, Lua "print" function has its output redirected to the Nvim message addition, Lua "print" function has its output redirected to the Nvim message
area, with arguments separated by a white space instead of a tab. area, with arguments separated by a white space instead of a tab.
Lua uses the "vim" module (see |lua-vim|) to issue commands to Nvim Lua uses the "vim" module (see |lua-vim|) to issue commands to Nvim. However,
and manage buffers (|lua-buffer|) and windows (|lua-window|). However,
procedures that alter buffer content, open new buffers, and change cursor procedures that alter buffer content, open new buffers, and change cursor
position are restricted when the command is executed in the |sandbox|. position are restricted when the command is executed in the |sandbox|.
@@ -261,7 +260,7 @@ vim.stricmp(a, b) *lua-vim.stricmp*
greater then b or a is lesser then b respectively. greater then b or a is lesser then b respectively.
vim.type_idx *lua-vim.type_idx* vim.type_idx *lua-vim.type_idx*
Type index for use in |lua-special-tables|. Specifying one of the Type index for use in |lua-special-tbl|. Specifying one of the
values from |lua-vim.types| allows typing the empty table (it is values from |lua-vim.types| allows typing the empty table (it is
unclear whether empty lua table represents empty list or empty array) unclear whether empty lua table represents empty list or empty array)
and forcing integral numbers to be |Float|. See |lua-special-tbl| for and forcing integral numbers to be |Float|. See |lua-special-tbl| for

View File

@@ -1472,7 +1472,6 @@ tag command action ~
|:sfind| :sf[ind] split current window and edit file in 'path' |:sfind| :sf[ind] split current window and edit file in 'path'
|:sfirst| :sfir[st] split window and go to first file in the |:sfirst| :sfir[st] split window and go to first file in the
argument list argument list
|:simalt| :sim[alt] Win32 GUI: simulate Windows ALT key
|:sign| :sig[n] manipulate signs |:sign| :sig[n] manipulate signs
|:silent| :sil[ent] run a command silently |:silent| :sil[ent] run a command silently
|:sleep| :sl[eep] do nothing for a few seconds |:sleep| :sl[eep] do nothing for a few seconds

View File

@@ -1485,7 +1485,7 @@ A jump table for the options with a short description can be found at |Q_op|.
global global
When 'confirm' is on, certain operations that would normally When 'confirm' is on, certain operations that would normally
fail because of unsaved changes to a buffer, e.g. ":q" and ":e", fail because of unsaved changes to a buffer, e.g. ":q" and ":e",
instead raise a |dialog| asking if you wish to save the current instead raise a dialog asking if you wish to save the current
file(s). You can still use a ! to unconditionally |abandon| a buffer. file(s). You can still use a ! to unconditionally |abandon| a buffer.
If 'confirm' is off you can still activate confirmation for one If 'confirm' is off you can still activate confirmation for one
command only (this is most useful in mappings) with the |:confirm| command only (this is most useful in mappings) with the |:confirm|
@@ -2803,8 +2803,7 @@ A jump table for the options with a short description can be found at |Q_op|.
:set guifont=* :set guifont=*
< will bring up a font requester, where you can pick the font you want. < will bring up a font requester, where you can pick the font you want.
The font name depends on the GUI used. See |setting-guifont| for a The font name depends on the GUI used.
way to set 'guifont' for various systems.
For Mac OSX you can use something like this: > For Mac OSX you can use something like this: >
:set guifont=Monaco:h10 :set guifont=Monaco:h10
@@ -6586,8 +6585,7 @@ A jump table for the options with a short description can be found at |Q_op|.
menu. This conflicts with the use of the ALT key for mappings and menu. This conflicts with the use of the ALT key for mappings and
entering special characters. This option tells what to do: entering special characters. This option tells what to do:
no Don't use ALT keys for menus. ALT key combinations can be no Don't use ALT keys for menus. ALT key combinations can be
mapped, but there is no automatic handling. This can then be mapped, but there is no automatic handling.
done with the |:simalt| command.
yes ALT key handling is done by the windowing system. ALT key yes ALT key handling is done by the windowing system. ALT key
combinations cannot be mapped. combinations cannot be mapped.
menu Using ALT in combination with a character that is a menu menu Using ALT in combination with a character that is a menu

View File

@@ -167,11 +167,6 @@ a client and send strings to other instances of Vim on the same X11 display.
When an X11 GUI Vim (gvim) is started, it will try to register a send-server When an X11 GUI Vim (gvim) is started, it will try to register a send-server
name on the 'VimRegistry' property on the root window. name on the 'VimRegistry' property on the root window.
A non GUI Vim with access to the X11 display (|xterm-clipboard| enabled), can
also act as a command server if a server name is explicitly given with the
--servername argument, or when Vim was build with the |+autoservername|
feature.
An empty --servername argument will cause the command server to be disabled. An empty --servername argument will cause the command server to be disabled.
To send commands to a Vim server from another application, read the source To send commands to a Vim server from another application, read the source

View File

@@ -79,7 +79,6 @@ DEFINING A SIGN. *:sign-define* *E255* *E160* *E612*
will cause redraw problems. will cause redraw problems.
toolkit supports ~ toolkit supports ~
Win32 .bmp, .ico, .cur Win32 .bmp, .ico, .cur
pixmap (.xpm) |+xpm_w32|
linehl={group} linehl={group}
Highlighting group used for the whole line the sign is placed Highlighting group used for the whole line the sign is placed

View File

@@ -167,7 +167,7 @@ the editor.
mouse support is active. Some options like 'ambiwidth' have already mouse support is active. Some options like 'ambiwidth' have already
taken effect on the grid, where appropriate empty cells are added, taken effect on the grid, where appropriate empty cells are added,
however a UI might still use such options when rendering raw text however a UI might still use such options when rendering raw text
sent from Nvim, like for |ui-ext-cmdline|. sent from Nvim, like for |ui-cmdline|.
["mode_change", mode, mode_idx] ["mode_change", mode, mode_idx]
The mode changed. The first parameter `mode` is a string representing The mode changed. The first parameter `mode` is a string representing

View File

@@ -321,7 +321,7 @@ Where can you find plugins?
- Some come with Vim. You can find them in the directory $VIMRUNTIME/macros - Some come with Vim. You can find them in the directory $VIMRUNTIME/macros
and its sub-directories and under $VIM/vimfiles/pack/dist/opt/. and its sub-directories and under $VIM/vimfiles/pack/dist/opt/.
- Download from the net. There is a large collection on http://www.vim.org. - Download from the net. There is a large collection on http://www.vim.org.
- They are sometimes posted in a Vim |maillist|. - They are sometimes posted in a Vim maillist.
- You could write one yourself, see |write-plugin|. - You could write one yourself, see |write-plugin|.

View File

@@ -203,8 +203,7 @@ USING UNICODE IN A UNICODE TERMINAL
There are terminals that support Unicode directly. The standard xterm that There are terminals that support Unicode directly. The standard xterm that
comes with XFree86 is one of them. Let's use that as an example. comes with XFree86 is one of them. Let's use that as an example.
First of all, the xterm must have been compiled with Unicode support. See First of all, the xterm must have been compiled with Unicode support.
|UTF8-xterm| how to check that and how to compile it when needed.
Start the xterm with the "-u8" argument. You might also need so specify a Start the xterm with the "-u8" argument. You might also need so specify a
font. Example: > font. Example: >

View File

@@ -381,7 +381,7 @@ T *+tag_binary* binary searching in tags file |tag-binary-search|
N *+tag_old_static* old method for static tags |tag-old-static| N *+tag_old_static* old method for static tags |tag-old-static|
m *+tag_any_white* any white space allowed in tags file |tag-any-white| m *+tag_any_white* any white space allowed in tags file |tag-any-white|
B *+termguicolors* 24-bit color in xterm-compatible terminals support B *+termguicolors* 24-bit color in xterm-compatible terminals support
N *+termresponse* support for |t_RV| and |v:termresponse| N *+termresponse* support for t_RV and |v:termresponse|
N *+textobjects* |text-objects| selection N *+textobjects* |text-objects| selection
N *+timers* the |timer_start()| function N *+timers* the |timer_start()| function
N *+title* Setting the window 'title' and 'icon' N *+title* Setting the window 'title' and 'icon'