-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add guide for reproducing issues
- Loading branch information
1 parent
6e0e149
commit 7227174
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Reproducing issues | ||
|
||
Since Neovim is very configurable and extensible, it's possible that some issues | ||
are caused by plugins or configuration. This can also make it very difficult to | ||
provide a fix. To help us diagnose the issue, please follow these steps: | ||
|
||
1. copy [repro.lua](../repro.lua) to a directory on your system | ||
2. run `nvim -u repro.lua` in that directory | ||
- this will start Neovim with a minimal configuration, completely defined by | ||
that one file. | ||
3. try to reproduce the issue | ||
- if you can't reproduce the issue, make changes to the file to make it more | ||
similar to your configuration until you can reproduce it. | ||
4. when reporting the issue, attach the contents of your `repro.lua` file to the | ||
issue report. |