name | about | labels |
---|---|---|
Bug report |
Create a report to help us improve |
bug |
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:
- What vim version are you using? If using neovim, Are you using tree-sitter or classic matching?
- Steps to reproduce
- Expected behavior
- 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.
Please provide a minimal working example, e.g.,
if l:x == 1
call one()
elseif l:x == 2
call two()
else
call three()
endif
Please provide a minimal vimrc file that reproduces the issue. The following should often suffice:
set nocompatible
" load match-up
let &rtp = '~/.vim/bundle/vim-matchup,' . &rtp
let &rtp .= ',~/.vim/bundle/vim-matchup/after'
" load other plugins, if necessary
" let &rtp = '~/path/to/other/plugin,' . &rtp
filetype plugin indent on
syntax enable
" match-up options go here