Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 1.01 KB

CONTRIBUTING.md

File metadata and controls

62 lines (42 loc) · 1.01 KB

Reporting an issue

When you report an issue, please use the following issue template.

* Problems summary

* Expected

* Environment Information
 * OS:
 * Vim version:

* Minimal vimrc less than 50 lines

```VimL
" Your vimrc
set nocompatible

set runtimepath+=~/path/to/unite.vim/
```

* How to reproduce

 0. startup vim (Write with option arguments if necessary).
 1.
 2.
 3.

* Screen shot (if possible)

Example

  • Problems summary

    file/new doesn't work on windows.

  • Expected

    I want to save the file there is a space.

  • Environment Information

    • OS:Windows7 64bit
    • Vim version:Vim 7.4.111
  • Minimal vimrc less than 50 lines

    " minimal.vimrc
    if has('vim_starting')
    set nocompatible
    set runtimepath+=~/.cache/neobundle/unite.vim/
    endif
  • How to reproduce

    1. startup vim: vim -u minimal.vimrc
    2. :Unite file/new.
    3. Input C:/Foo\ Bar/test.txt
    4. Enter candidate.
    5. :w
    6. Can not be saved.