Skip to content

Tags: garyeung/vimspector

Tags

1313

Toggle 1313's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request puremourning#148 from puremourning/cpptools-update

Remove workaround for broken cpptools

1309

Toggle 1309's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request puremourning#142 from puremourning/tweaks

Tweaks

1307

Toggle 1307's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Note what diagnostics are required,

1306

Toggle 1306's commit message
Clarify that Python 3.6 is required

closes puremourning#143

1305

Toggle 1305's commit message
Fix tab creation when current buffer contains no file

1304

Toggle 1304's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request puremourning#139 from puremourning/no-name

Don't create a new buffer when opening the vimspector tab

1278

Toggle 1278's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request puremourning#134 from puremourning/docs-update

Document: splat, central config dirs

1273

Toggle 1273's commit message
Clear exception breakpoints when calling ClearBreakpoints

1272

Toggle 1272's commit message
Guess VIMSPECTOR_MI_DEBUGGER path

1271

Toggle 1271's commit message
When creating a terminal window in neovim, use a new buffer

neovim's termopen() replaces the buffer object in the current window
with a terminal, internally, this completely breaks the buffer list.

Repro:
* Create test.vim:

```
vsplit
call termopen( '/bin/bash', { 'cwd': getcwd() } )
call bufload( expand( '<sfile>' ) )
```

Then:
* `nvim -Nu NONE test.vim`
* `:source %`

Error is "Invald buffer name 'test.vim'"

Anyway, the correct thing to do is to create a _new_ buffer before
making it into a terminal (vnew, new) rather than a split of the current
one. This was only working before because the CodeView window never had
any buffer in it and was broken by the change to use the current buffer
when staring debugging.

Fixes puremourning#131