doc: update tag to latest version (#2737)

This commit is contained in:
Simon Hauser
2023-10-11 12:26:43 +02:00
committed by GitHub
parent 550055e640
commit a2a15cf6c9
+5 -5
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.3' }
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.4' }
" 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.3' })
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.4' })
" or , { 'rev': '0.1.x' })
```
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
use {
'nvim-telescope/telescope.nvim', tag = '0.1.3',
'nvim-telescope/telescope.nvim', tag = '0.1.4',
-- 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.3',
'nvim-telescope/telescope.nvim', tag = '0.1.4',
-- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' }
}
-- plugins/telescope.lua:
return {
'nvim-telescope/telescope.nvim', tag = '0.1.3',
'nvim-telescope/telescope.nvim', tag = '0.1.4',
-- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' }
}