Merge pull request #102 from puremourning/import-vim

Import vim
This commit is contained in:
mergify[bot] 2020-01-28 20:59:48 +00:00 committed by GitHub
commit 4e1f14261b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 2 deletions

View file

@ -38,13 +38,16 @@ Vim.
NOTE: Windows is not supported. There is a branch with windows support, which
you can contribute to, rather than opening an issue.
* Output of `vim --version`
* Version of Vimspector: (e.g. output of `git rev-parse HEAD` if cloned or the
name of the tarball used to install otherwise)
* Output of `vim --version` or `nvim --version`
```
paste here
```
* Output of `which vim`:
* Output of `which vim` or `which nvim`:
```
paste here
@ -56,6 +59,18 @@ paste here
paste here
```
* Output of `:py3 import vim`:
```
paste here
```
* For neovim: output of `:checkhealth`
```
paste here
```
* Operating system: <linux or macOS> and version
**Additional context**

View file

@ -24,6 +24,11 @@ of the following reasons:
* The issue does not represent a Vimspector bug or feature request
* etc.
Issue titles are important. It's not usually helpful to write a title like
`Issue with Vimspector` or `Issue configuring` or even pasting an error message.
Spend a minute to come up with a consise summary of the problem. This helps with
management of issues, with triage, and above all with searching.
But above all else, please *please* complete the issue template. I know it is a
little tedious to get all the various diagnostics, but you *must* provide them,
*even if you think they are irrelevant*. This is important, because the

View file

@ -27,6 +27,7 @@ function! vimspector#internal#state#Reset() abort
let prefix='neo'
endif
py3 << EOF
import vim
from vimspector import debug_session
_vimspector_session = debug_session.DebugSession( vim.eval( 'prefix' ) )
EOF