File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,28 +84,28 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
8484
8585``` viml
8686Plug 'nvim-lua/plenary.nvim'
87- Plug 'nvim-telescope/telescope.nvim', { 'tag': '0 .1.9' }
87+ Plug 'nvim-telescope/telescope.nvim', { 'tag': 'v0 .1.9' }
8888```
8989
9090Using [ dein] ( https://github.com/Shougo/dein.vim )
9191
9292``` viml
9393call dein#add('nvim-lua/plenary.nvim')
94- call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0 .1.9' })
94+ call dein#add('nvim-telescope/telescope.nvim', { 'rev': 'v0 .1.9' })
9595```
9696
9797Using [ lazy.nvim] ( https://github.com/folke/lazy.nvim )
9898
9999``` lua
100100-- init.lua:
101101 {
102- ' nvim-telescope/telescope.nvim' , tag = ' 0 .1.9' ,
102+ ' nvim-telescope/telescope.nvim' , tag = ' v0 .1.9' ,
103103 dependencies = { ' nvim-lua/plenary.nvim' }
104104 }
105105
106106-- plugins/telescope.lua:
107107return {
108- ' nvim-telescope/telescope.nvim' , tag = ' 0 .1.9' ,
108+ ' nvim-telescope/telescope.nvim' , tag = ' v0 .1.9' ,
109109 dependencies = { ' nvim-lua/plenary.nvim' }
110110 }
111111```
You can’t perform that action at this time.
0 commit comments