doc(readme): update tag to latest version (#2805)

This commit is contained in:
牧羊犬真Q
2023-12-03 14:22:21 +08:00
committed by GitHub
parent 5f18f3dc51
commit e90fdba90d

View File

@@ -85,7 +85,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.4' } Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.5' }
" or , { 'branch': '0.1.x' } " or , { 'branch': '0.1.x' }
``` ```
@@ -93,14 +93,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.4' }) call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.5' })
" 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.4', 'nvim-telescope/telescope.nvim', tag = '0.1.5',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} } requires = { {'nvim-lua/plenary.nvim'} }
} }
@@ -111,14 +111,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua ```lua
-- init.lua: -- init.lua:
{ {
'nvim-telescope/telescope.nvim', tag = '0.1.4', 'nvim-telescope/telescope.nvim', tag = '0.1.5',
-- 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.4', 'nvim-telescope/telescope.nvim', tag = '0.1.5',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' } dependencies = { 'nvim-lua/plenary.nvim' }
} }