release: telescope 0.1.0 (#2067)
This commit is contained in:
6
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
6
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -29,6 +29,12 @@ body:
|
|||||||
placeholder: "macOS 11.5"
|
placeholder: "macOS 11.5"
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
- type: input
|
||||||
|
attributes:
|
||||||
|
label: "Telescope version / branch / rev"
|
||||||
|
placeholder: "telescope 0.1.0"
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: "checkhealth telescope"
|
label: "checkhealth telescope"
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -71,24 +71,34 @@ wiki.
|
|||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
|
It is suggested to either use the latest release
|
||||||
|
[tag](https://github.com/nvim-telescope/telescope.nvim/tags) or our release
|
||||||
|
branch (which will get consistent updates)
|
||||||
|
[0.1.x](https://github.com/nvim-telescope/telescope.nvim/tree/0.1.x).
|
||||||
|
|
||||||
|
It is not suggested to run latest master.
|
||||||
|
|
||||||
Using [vim-plug](https://github.com/junegunn/vim-plug)
|
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'
|
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.0' }
|
||||||
|
" or , { 'branch': '0.1.x' }
|
||||||
```
|
```
|
||||||
|
|
||||||
Using [dein](https://github.com/Shougo/dein.vim)
|
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')
|
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.0' })
|
||||||
|
" 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',
|
'nvim-telescope/telescope.nvim', tag = '0.1.0',
|
||||||
|
-- or , branch = '0.1.x',
|
||||||
requires = { {'nvim-lua/plenary.nvim'} }
|
requires = { {'nvim-lua/plenary.nvim'} }
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user