Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uninstallation does not reverse all the effects #12

Closed
Weyaaron opened this issue May 9, 2022 · 2 comments
Closed

Uninstallation does not reverse all the effects #12

Weyaaron opened this issue May 9, 2022 · 2 comments
Labels
documentation Improvements or additions to documentation

Comments

@Weyaaron
Copy link

Weyaaron commented May 9, 2022

Dear community,
I installed vimspectorpy, but was confused. After some consideration I decided to stick to my original setup for the moment. Therefore, I uninstalled vimspectorpy. However, there is a part of the config that has not been reversed:

Vimspector new configurations

Next time you are on a python source and start a debug session (F5) you'll get this option:

    debug this file - launch a debug session for the current file, using the python from your $VIRTUAL_ENV if there is one, or python3.

image
This my current vimspector.json:

{
  "$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json",
  "adapters": {
  },
  "configurations": {
    "run - scratch.py": {
      "adapter": "debugpy",
      "configuration": {
        "request": "launch",
        "default": true,
        "type": "python",
        "cwd": "${workspaceRoot}",
        "program": "${workspaceRoot}/scratch.py",
        "args" : ["crawl"],
        "stopOnEntry": false,
        "console": "integratedTerminal",
        "python": ["/home/aaron/.conda/envs/qse/bin/python"]
      },
      "breakpoints":{
        "exception": {
          "raised": "Y",
          "uncaught": "Y",
          "userUnhandled": "Y"
        }
      }
    }
  }
}

I would like to revert this config, but I lack the knowledge how to do this. Any input is appreciated.

Greetings,
Aaron

@sagi-z
Copy link
Owner

sagi-z commented Dec 17, 2022

Hi @Weyaaron , to remove vimspectorpy completely please do this (assuming a normal plugin install on linux):

find ~/.vim/plugged/vimspector/configurations -name '*vimspectorpy.json' -delete

I'll update the documentation for this.

@sagi-z sagi-z added the documentation Improvements or additions to documentation label Dec 17, 2022
@Weyaaron
Copy link
Author

This file has been deleted, I appreciate the feedback :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants