Skip to content

Commit 72b1ce7

Browse files
committed
doc: fix/remove broken tag references
1 parent 1bbbd5f commit 72b1ce7

File tree

13 files changed

+16
-27
lines changed

13 files changed

+16
-27
lines changed

runtime/doc/api.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ nvim_buf_lines_event[{buf}, {changedtick}, {firstline}, {lastline}, {linedata},
9797

9898
When {changedtick} is |v:null| this means the screen lines (display) changed
9999
but not the buffer contents. {linedata} contains the changed screen lines.
100-
This happens when |inccommand| shows a buffer preview.
100+
This happens when 'inccommand' shows a buffer preview.
101101

102102
Properties:~
103103
{buf} API buffer handle (buffer number)
@@ -138,7 +138,7 @@ nvim_buf_changedtick_event[{buf}, {changedtick}] *nvim_buf_changedtick_event*
138138
nvim_buf_detach_event[{buf}] *nvim_buf_detach_event*
139139

140140
When buffer is detached (i.e. updates are disabled). Triggered explicitly by
141-
|nvim_buf_detach| or implicitly in these cases:
141+
|nvim_buf_detach()| or implicitly in these cases:
142142
- Buffer was |abandon|ed and 'hidden' is not set.
143143
- Buffer was reloaded, e.g. with |:edit| or an external change triggered
144144
|:checktime| or 'autoread'.

runtime/doc/autocmd.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Name triggered by ~
278278
|VimEnter| after doing all the startup stuff
279279
|GUIEnter| after starting the GUI successfully
280280
|GUIFailed| after starting the GUI failed
281-
|TermResponse| after the terminal response to |t_RV| is received
281+
|TermResponse| after the terminal response to t_RV is received
282282
|QuitPre| when using `:quit`, before deciding whether to exit
283283
|ExitPre| when using a command that may make Vim exit
284284
|VimLeavePre| before exiting Nvim, before writing the shada file
@@ -989,7 +989,7 @@ TermClose When a |terminal| job ends.
989989
TermOpen When a |terminal| job is starting. Can be
990990
used to configure the terminal buffer.
991991
*TermResponse*
992-
TermResponse After the response to |t_RV| is received from
992+
TermResponse After the response to t_RV is received from
993993
the terminal. The value of |v:termresponse|
994994
can be used to do things depending on the
995995
terminal version. Note that this event may be

runtime/doc/cmdline.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ CTRL-\ e {expr} *c_CTRL-\_e*
212212

213213
*c_CTRL-Y*
214214
CTRL-Y When there is a modeless selection, copy the selection into
215-
the clipboard. |modeless-selection|
215+
the clipboard.
216216
If there is no selection CTRL-Y is inserted as a character.
217217

218218
CTRL-M or CTRL-J *c_CTRL-M* *c_CTRL-J* *c_<NL>* *c_<CR>* *c_CR*

runtime/doc/eval.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2925,7 +2925,7 @@ confirm({msg} [, {choices} [, {default} [, {type}]]])
29252925
made. It returns the number of the choice. For the first
29262926
choice this is 1.
29272927

2928-
{msg} is displayed in a |dialog| with {choices} as the
2928+
{msg} is displayed in a dialog with {choices} as the
29292929
alternatives. When {choices} is missing or empty, "&OK" is
29302930
used (and translated).
29312931
{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
85608560
|tag-old-static|.
85618561
tag_any_white Compiled with support for any white characters in tags
85628562
files |tag-any-white|.
8563-
termresponse Compiled with support for |t_RV| and |v:termresponse|.
8563+
termresponse Compiled with support for t_RV and |v:termresponse|.
85648564
textobjects Compiled with support for |text-objects|.
85658565
timers Compiled with |timer_start()| support.
85668566
title Compiled with window title support |'title'|.

runtime/doc/if_lua.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,7 @@ shared between command calls. All Lua default libraries are available. In
229229
addition, Lua "print" function has its output redirected to the Nvim message
230230
area, with arguments separated by a white space instead of a tab.
231231

232-
Lua uses the "vim" module (see |lua-vim|) to issue commands to Nvim
233-
and manage buffers (|lua-buffer|) and windows (|lua-window|). However,
232+
Lua uses the "vim" module (see |lua-vim|) to issue commands to Nvim. However,
234233
procedures that alter buffer content, open new buffers, and change cursor
235234
position are restricted when the command is executed in the |sandbox|.
236235

@@ -261,7 +260,7 @@ vim.stricmp(a, b) *lua-vim.stricmp*
261260
greater then b or a is lesser then b respectively.
262261

263262
vim.type_idx *lua-vim.type_idx*
264-
Type index for use in |lua-special-tables|. Specifying one of the
263+
Type index for use in |lua-special-tbl|. Specifying one of the
265264
values from |lua-vim.types| allows typing the empty table (it is
266265
unclear whether empty lua table represents empty list or empty array)
267266
and forcing integral numbers to be |Float|. See |lua-special-tbl| for

runtime/doc/index.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,6 @@ tag command action ~
14721472
|:sfind| :sf[ind] split current window and edit file in 'path'
14731473
|:sfirst| :sfir[st] split window and go to first file in the
14741474
argument list
1475-
|:simalt| :sim[alt] Win32 GUI: simulate Windows ALT key
14761475
|:sign| :sig[n] manipulate signs
14771476
|:silent| :sil[ent] run a command silently
14781477
|:sleep| :sl[eep] do nothing for a few seconds

runtime/doc/options.txt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@ A jump table for the options with a short description can be found at |Q_op|.
14851485
global
14861486
When 'confirm' is on, certain operations that would normally
14871487
fail because of unsaved changes to a buffer, e.g. ":q" and ":e",
1488-
instead raise a |dialog| asking if you wish to save the current
1488+
instead raise a dialog asking if you wish to save the current
14891489
file(s). You can still use a ! to unconditionally |abandon| a buffer.
14901490
If 'confirm' is off you can still activate confirmation for one
14911491
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|.
28032803
:set guifont=*
28042804
< will bring up a font requester, where you can pick the font you want.
28052805

2806-
The font name depends on the GUI used. See |setting-guifont| for a
2807-
way to set 'guifont' for various systems.
2806+
The font name depends on the GUI used.
28082807

28092808
For Mac OSX you can use something like this: >
28102809
:set guifont=Monaco:h10
@@ -6586,8 +6585,7 @@ A jump table for the options with a short description can be found at |Q_op|.
65866585
menu. This conflicts with the use of the ALT key for mappings and
65876586
entering special characters. This option tells what to do:
65886587
no Don't use ALT keys for menus. ALT key combinations can be
6589-
mapped, but there is no automatic handling. This can then be
6590-
done with the |:simalt| command.
6588+
mapped, but there is no automatic handling.
65916589
yes ALT key handling is done by the windowing system. ALT key
65926590
combinations cannot be mapped.
65936591
menu Using ALT in combination with a character that is a menu

runtime/doc/remote.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,6 @@ a client and send strings to other instances of Vim on the same X11 display.
167167
When an X11 GUI Vim (gvim) is started, it will try to register a send-server
168168
name on the 'VimRegistry' property on the root window.
169169

170-
A non GUI Vim with access to the X11 display (|xterm-clipboard| enabled), can
171-
also act as a command server if a server name is explicitly given with the
172-
--servername argument, or when Vim was build with the |+autoservername|
173-
feature.
174-
175170
An empty --servername argument will cause the command server to be disabled.
176171

177172
To send commands to a Vim server from another application, read the source

runtime/doc/sign.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ DEFINING A SIGN. *:sign-define* *E255* *E160* *E612*
7979
will cause redraw problems.
8080
toolkit supports ~
8181
Win32 .bmp, .ico, .cur
82-
pixmap (.xpm) |+xpm_w32|
8382

8483
linehl={group}
8584
Highlighting group used for the whole line the sign is placed

runtime/doc/ui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ the editor.
167167
mouse support is active. Some options like 'ambiwidth' have already
168168
taken effect on the grid, where appropriate empty cells are added,
169169
however a UI might still use such options when rendering raw text
170-
sent from Nvim, like for |ui-ext-cmdline|.
170+
sent from Nvim, like for |ui-cmdline|.
171171

172172
["mode_change", mode, mode_idx]
173173
The mode changed. The first parameter `mode` is a string representing

0 commit comments

Comments
 (0)