docs(readme): update to latest tag version (#2700)

* docs(readme): update to latest tag version

* [docgen] Update doc/telescope.txt
skip-checks: true

---------

Co-authored-by: Github Actions <actions@github>
This commit is contained in:
James Trew
2023-09-13 22:23:21 -04:00
committed by GitHub
parent a19770625a
commit 59812c26d8
2 changed files with 8 additions and 7 deletions

View File

@@ -83,7 +83,7 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
```viml ```viml
Plug 'nvim-lua/plenary.nvim' Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.2' } Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.3' }
" or , { 'branch': '0.1.x' } " or , { 'branch': '0.1.x' }
``` ```
@@ -91,14 +91,14 @@ Using [dein](https://github.com/Shougo/dein.vim)
```viml ```viml
call dein#add('nvim-lua/plenary.nvim') call dein#add('nvim-lua/plenary.nvim')
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.2' }) call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.3' })
" or , { 'rev': '0.1.x' }) " or , { 'rev': '0.1.x' })
``` ```
Using [packer.nvim](https://github.com/wbthomason/packer.nvim) Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua ```lua
use { use {
'nvim-telescope/telescope.nvim', tag = '0.1.2', 'nvim-telescope/telescope.nvim', tag = '0.1.3',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} } requires = { {'nvim-lua/plenary.nvim'} }
} }
@@ -109,14 +109,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua ```lua
-- init.lua: -- init.lua:
{ {
'nvim-telescope/telescope.nvim', tag = '0.1.2', 'nvim-telescope/telescope.nvim', tag = '0.1.3',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' } dependencies = { 'nvim-lua/plenary.nvim' }
} }
-- plugins/telescope.lua: -- plugins/telescope.lua:
return { return {
'nvim-telescope/telescope.nvim', tag = '0.1.2', 'nvim-telescope/telescope.nvim', tag = '0.1.3',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' } dependencies = { 'nvim-lua/plenary.nvim' }
} }

View File

@@ -1760,8 +1760,9 @@ builtin.diagnostics({opts}) *telescope.builtin.diagnostics()*
for listed buffers for listed buffers
{no_sign} (boolean) hide DiagnosticSigns from {no_sign} (boolean) hide DiagnosticSigns from
Results (default: false) Results (default: false)
{line_width} (number) set length of diagnostic entry {line_width} (string|number) set length of diagnostic entry
text in Results text in Results. Use 'full'
for full untruncated text
{namespace} (number) limit your diagnostics to a {namespace} (number) limit your diagnostics to a
specific namespace specific namespace
{disable_coordinates} (boolean) don't show the line & row {disable_coordinates} (boolean) don't show the line & row