@@ -83,22 +83,22 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
8383
8484``` viml
8585Plug 'nvim-lua/plenary.nvim'
86- Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.3 ' }
86+ Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.4 ' }
8787" or , { 'branch': '0.1.x' }
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.3 ' })
94+ call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.4 ' })
9595" or , { 'rev': '0.1.x' })
9696```
9797Using [ packer.nvim] ( https://github.com/wbthomason/packer.nvim )
9898
9999``` lua
100100use {
101- ' nvim-telescope/telescope.nvim' , tag = ' 0.1.3 ' ,
101+ ' nvim-telescope/telescope.nvim' , tag = ' 0.1.4 ' ,
102102-- or , branch = '0.1.x',
103103 requires = { {' nvim-lua/plenary.nvim' } }
104104}
@@ -109,14 +109,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim)
109109``` lua
110110-- init.lua:
111111 {
112- ' nvim-telescope/telescope.nvim' , tag = ' 0.1.3 ' ,
112+ ' nvim-telescope/telescope.nvim' , tag = ' 0.1.4 ' ,
113113-- or , branch = '0.1.x',
114114 dependencies = { ' nvim-lua/plenary.nvim' }
115115 }
116116
117117-- plugins/telescope.lua:
118118return {
119- ' nvim-telescope/telescope.nvim' , tag = ' 0.1.3 ' ,
119+ ' nvim-telescope/telescope.nvim' , tag = ' 0.1.4 ' ,
120120-- or , branch = '0.1.x',
121121 dependencies = { ' nvim-lua/plenary.nvim' }
122122 }
0 commit comments