From aff22f5bf107af69b0a6189debae613e36d3455f Mon Sep 17 00:00:00 2001 From: TJ DeVries Date: Wed, 18 Nov 2020 09:44:53 -0500 Subject: Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 124 +++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..3c2f4ac --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,124 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + + + +### Description + + +**Expected Behavior** + + +**Actual Behavior** + + +### Details + + +
Reproduce + + + +1. nvim -NU test.vim +2. +3. +
+ + +
Environment + + +- nvim version: +- Operating system: +- Telescope commit: + +
+ + +
Configuration +

+ + +```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 << EOF + +require('telescope').setup{ + defaults = { + vimgrep_arguments = { + 'rg', + '--color=never', + '--no-heading', + '--with-filename', + '--line-number', + '--column', + '--smart-case' + }, + prompt_position = "bottom", + prompt_prefix = ">", + selection_strategy = "reset", + sorting_strategy = "descending", + layout_strategy = "horizontal", + layout_defaults = {}, + file_ignore_patterns = {}, + shorten_path = true, + winblend = 0, + width = 0.75, + preview_cutoff = 120, + results_height = 1, + results_width = 0.8, + border = {}, + borderchars = { '─', '│', '─', '│', '╭', '╮', '╯', '╰'}, + color_devicons = true, + use_less = true, + } +} +EOF +``` -- cgit v1.2.3