aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/api.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-05 02:47:22 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-11-05 22:45:48 +0100
commit72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e (patch)
tree0d3c93afc250c95a74510825c6153b24a1ff06b8 /runtime/doc/api.txt
parent1bbbd5f0ff27e75fd0d68f16cf1817cb19218bb4 (diff)
downloadrneovim-72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e.tar.gz
rneovim-72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e.tar.bz2
rneovim-72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e.zip
doc: fix/remove broken tag references
Diffstat (limited to 'runtime/doc/api.txt')
-rw-r--r--runtime/doc/api.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt
index e816d0ae76..712a8878ba 100644
--- a/runtime/doc/api.txt
+++ b/runtime/doc/api.txt
@@ -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
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:~
{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*
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 reloaded, e.g. with |:edit| or an external change triggered
|:checktime| or 'autoread'.