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
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' }
}