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:
10
README.md
10
README.md
@@ -83,7 +83,7 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
|
||||
|
||||
```viml
|
||||
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' }
|
||||
```
|
||||
|
||||
@@ -91,14 +91,14 @@ Using [dein](https://github.com/Shougo/dein.vim)
|
||||
|
||||
```viml
|
||||
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' })
|
||||
```
|
||||
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
|
||||
|
||||
```lua
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.2',
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.3',
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { {'nvim-lua/plenary.nvim'} }
|
||||
}
|
||||
@@ -109,14 +109,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim)
|
||||
```lua
|
||||
-- init.lua:
|
||||
{
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.2',
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.3',
|
||||
-- or , branch = '0.1.x',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||
}
|
||||
|
||||
-- plugins/telescope.lua:
|
||||
return {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.2',
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.3',
|
||||
-- or , branch = '0.1.x',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||
}
|
||||
|
||||
@@ -1760,8 +1760,9 @@ builtin.diagnostics({opts}) *telescope.builtin.diagnostics()*
|
||||
for listed buffers
|
||||
{no_sign} (boolean) hide DiagnosticSigns from
|
||||
Results (default: false)
|
||||
{line_width} (number) set length of diagnostic entry
|
||||
text in Results
|
||||
{line_width} (string|number) set length of diagnostic entry
|
||||
text in Results. Use 'full'
|
||||
for full untruncated text
|
||||
{namespace} (number) limit your diagnostics to a
|
||||
specific namespace
|
||||
{disable_coordinates} (boolean) don't show the line & row
|
||||
|
||||
Reference in New Issue
Block a user