Files
vim-matchup/ISSUE_TEMPLATE.md
2017-10-31 09:31:49 -04:00

961 B

Explain the issue

Most issues are related to bugs or problems. In these cases, you should include a minimal working example and a minimal vimrc file (see below), as well as:

  1. Steps to reproduce
  2. Expected behavior
  3. Observed behavior

If your issue is instead a feature request or anything else, please consider if minimal examples and vimrc files might still be relevant.

Minimal working example

Please provide a minimal working example, e.g.,

if l:x == 1
  call one()
else
  call two()
elseif
  call three()
endif

Minimal vimrc file

Please provide a minimal vimrc file that reproduces the issue. The following should often suffice:

set nocompatible

" load match-up
let &rtp  = '~/.vim/bundle/matchup.vim,' . &rtp
let &rtp .= ',~/.vim/bundle/matchup.vim/after'

" load other plugins, if necessary
" let &rtp = '~/path/to/other/plugin,' . &rtp

filetype plugin indent on
syntax enable

" match-up options go here