chore(vimdoc): Auto update

This commit is contained in:
hedyhli
2023-12-01 00:14:29 +00:00
committed by github-actions[bot]
parent 9d26280c0b
commit 7d49af4e01

View File

@@ -1,4 +1,4 @@
*outline.txt* For NVIM v0.7.0 Last change: 2023 November 30
*outline.txt* For NVIM v0.7.0 Last change: 2023 December 01
==============================================================================
Table of Contents *outline-table-of-contents*
@@ -74,7 +74,8 @@ SETUP *outline-setup*
Call the setup function with your configuration options.
Note that a call to `.setup()` is **required** for this plugin to work
(otherwise you might see this error: simrat39/symbols-outline.nvim#213).
(otherwise you might see this error: simrat39/symbols-outline.nvim#213
<simrat39/symbols-outline.nvim#213>).
>lua
require("outline").setup({})
@@ -473,7 +474,7 @@ is an example which uses treesitter.
All providers should support at least nvim 0.7. You can make use of
`_G._outline_nvim_has` with fields `[8]` and `[9]` equivalent to
`vim.fn.has('nvim-0.8) == 1` and `vim.fn.has('nvim-0.9) == 1` respectively.
`vim.fn.has('nvim-0.8') == 1` and `vim.fn.has('nvim-0.9') == 1` respectively.
If a higher nvim version is required, it is recommended to check for this
requirement in the `supports_buffer` function.