Questions tagged [vimspector]

8 questions
4
votes
2 answers

NeoVim: vimspector unavailable: Requires Vim compiled with +python3

After installing vimspector with Plug.vim, when I reopen neovim, I met the problem as described in the title.
Zhehao Li
  • 189
  • 9
2
votes
1 answer

Why vimspector does not stop at breakpoint in Python Flask

I'm trying to setup Flask debugging in NVIM. When I debug a simple file and use break point (F9) vimspector works as charm. a = 5 b = 10 def misko(a, b): c = 2 a = c * a return a + b if __name__ == "__main__": misko(a, b) However,…
user2156115
  • 1,169
  • 4
  • 17
  • 30
1
vote
1 answer

vimspector, read memory at address

I trying to debug (for study purposes) simple program written with c language. I use vimspector(gdb) as debugger. How can I read memory at certain address with vimspector? I found vimspector can do this (someone's screenshot as a…
flvr
  • 13
  • 2
1
vote
1 answer

No variables seen in the debugging window in Vimspector while debugging a c++ program in Neovim. Breakpoints set are not seen too

I am new to this Neovim debugging using Vimspector. When i set breakpoints and open debugger i am unable to see any variables or see breakpoints itself. What might be wrong here? Vimspector Debugger when opened,showing no variables or break…
1
vote
1 answer

C++ & vimspector & -exec -enable-pretty-printing

Currently I have to enter -exec -enable-pretty-printing into vimspector debugger command line (debugging C++ code using vscode-cpptools) to see std::string as a "string" rather than as a STL container. Could you advice me how to modify my…
Macky
  • 125
  • 9
1
vote
1 answer

Cannot start vimspector for remote debugging Docker container

I am trying to configure vimspector for remote debugging Python Django application running in a Docker container and when starting the debugger become following error: Channel is already running Error detected while processing function…
silentser
  • 2,083
  • 2
  • 23
  • 29
0
votes
1 answer

Configuring vimspector with ruby on rails app running passenger

My question is how do i get vimspector running with a ruby on rails app running passenger (I think) I'm trying to set up vimspector with some ruby on rails projects I'm working on. Basically the problem is that vimspector doesn't stop at breakpoints…
0
votes
1 answer

How to configure vimspector.json to work with poetry run

I'm building a CLI in python using poetry and have used vimspector separately in the past for python debugging. When I test a normal python file, I can set up my vimspector.json like { "configurations": { "run": { "adapter": "debugpy", …
hselbie
  • 1,749
  • 9
  • 24
  • 40