* feat: Consistent and sensible layout_config * [docgen] Update doc/telescope.txt skip-checks: true * [WIP]: Thu 17 Jun 2021 03:36:44 PM EDT * [WIP]: Thu 17 Jun 2021 03:38:11 PM EDT * layout_default -> layout_defaults * remove options from bug repot * Conni2461 suggestions: part 1 * [docgen] Update doc/telescope.txt skip-checks: true * Conni2461 suggestions: part 2 * [docgen] Update doc/telescope.txt skip-checks: true * Linting * Improve deprecation checks - Move `layout_defaults` handling to `deprecated.lua` - Check for "layout keys" outside of `layout_config` on `setup` * fixup: Just add a few more words Co-authored-by: Luke Kershaw <35707277+l-kershaw@users.noreply.github.com> Co-authored-by: Github Actions <actions@github>
93 lines
2.0 KiB
Markdown
93 lines
2.0 KiB
Markdown
---
|
|
name: Bug report
|
|
about: Create a report to help us improve
|
|
title: ''
|
|
labels: bug
|
|
assignees: ''
|
|
|
|
---
|
|
|
|
<!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
> Please make sure to take the time adhere fully the following template.
|
|
> So that the team can understand the issue and solve it very quickly,
|
|
> else the issue will be marked "missing issue template" and
|
|
> close right away!!!!!
|
|
|
|
TODO:
|
|
- Include test.vim content in details section (see configuration sec)
|
|
- Add description
|
|
- Add reproduce steps
|
|
- Add Expected and Actual behavior
|
|
- Include Environment information
|
|
|
|
TIP: copy the template to your vim buffer
|
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -->
|
|
|
|
### Description
|
|
<!-- Whats wrong? what is not working? what Issue(s) are you facing?, when .... -->
|
|
|
|
**Expected Behavior**
|
|
<!-- what is the Expected Behaviour in the steps you've defined above? -->
|
|
|
|
**Actual Behavior**
|
|
<!-- what is the Actual Behaviour your getting from the steps you've defined above? -->
|
|
|
|
### Details
|
|
|
|
<!-- Steps to reproduce -->
|
|
<details><summary>Reproduce</summary>
|
|
|
|
<!--
|
|
Example:
|
|
|
|
1. nvim -nu test.vim
|
|
2. :Telescope live_grep or git_commits
|
|
3. .... bang here is the issue
|
|
...
|
|
-->
|
|
|
|
1. nvim -nu test.vim
|
|
2.
|
|
3.
|
|
</details>
|
|
|
|
<!-- Environment Information -->
|
|
<details><summary>Environment</summary>
|
|
|
|
<!--
|
|
- nvim --version
|
|
- Operating system
|
|
- git log --pretty=format:'%h' -n 1
|
|
...
|
|
-->
|
|
- nvim --version output:
|
|
- Operating system:
|
|
- Telescope commit:
|
|
|
|
</details>
|
|
|
|
<!-- Configuration -->
|
|
<details><summary>Configuration</summary>
|
|
<p>
|
|
<!-- adopt your telescope configuration to the following template,
|
|
save it to test.vim then execute `nvim -NU test.vim` -->
|
|
|
|
```viml
|
|
set nocompatible hidden laststatus=2
|
|
|
|
if !filereadable('/tmp/plug.vim')
|
|
silent !curl --insecure -fLo /tmp/plug.vim
|
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
endif
|
|
|
|
source /tmp/plug.vim
|
|
call plug#begin('/tmp/plugged')
|
|
Plug 'nvim-lua/popup.nvim'
|
|
Plug 'nvim-lua/plenary.nvim'
|
|
Plug 'nvim-telescope/telescope.nvim'
|
|
call plug#end()
|
|
|
|
autocmd VimEnter * PlugClean! | PlugUpdate --sync | close
|
|
lua require('telescope').setup()
|
|
```
|