Skip to content

Commit 83a3a71

Browse files
authored
docs: update version tag in readme, missing v prefix (#3574)
1 parent 3a12a85 commit 83a3a71

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,28 +84,28 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
8484

8585
```viml
8686
Plug '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

9090
Using [dein](https://github.com/Shougo/dein.vim)
9191

9292
```viml
9393
call 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

9797
Using [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:
107107
return {
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
```

0 commit comments

Comments
 (0)