nvim-dap-python
nvim-dap-python copied to clipboard
An extension for nvim-dap, providing default configurations for python and methods to debug individual test methods or classes.
Fix #47 VIRTUAL_ENV still gets higher priority.
This is a bit of mess to try to get M.opts to be the standard across the configurations. I wanted the ability to allow users to specify runner config parameters...
I just run ```python a, b = 1, 2 input() ``` and I have error in dapui console ``` 0.51s - Error inserting pydevd breaks. Traceback (most recent call last):...
I'm developing a Python package and would like to be able to run `debugpy` with this package, and debug it from within nvim, but I don't know how to do...
Add support for BDD tests via behave
I looked through the issues but could not find a recent enough example of setting dap up with `pytest` running in a Docker container. If someone has an example of...
See https://github.com/microsoft/debugpy/issues/655 This requires https://github.com/mfussenegger/nvim-dap/pull/226 https://user-images.githubusercontent.com/38700/124895528-e99b4b80-dfdc-11eb-9793-861c5b5ea457.mp4
Hi! I am trying to use this with miniconda, however it doesn't pick up the environment. This is the setup that I have: ```require('dap') require('dap-python').setup('/home/xxx/miniconda3/bin/python') require("dapui").setup() require("nvim-dap-virtual-text").setup() vim.fn.sign_define('DapStopped', { text='▶',...
Hello guys. Is there a way to launch two processes at once? In this case Django server and the celery application. I've seen it been done in vscode but could...
Hi, When debugging pytest tests and the test contains an error than the debugger does not stop there but the test just results in a fail and exits. I think...