├── .busted ├── .editorconfig ├── .gitignore ├── .luacheckrc ├── .woodpecker └── test.yml ├── LICENSE.txt ├── README.md ├── doc └── dap-python.txt ├── lua └── dap-python.lua ├── nvim-dap-python-scm-1.rockspec └── spec ├── .env ├── .env-empty ├── debugpy_spec.lua ├── discovery_spec.lua └── simple.py /.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/.busted -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.woodpecker/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/.woodpecker/test.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/README.md -------------------------------------------------------------------------------- /doc/dap-python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/doc/dap-python.txt -------------------------------------------------------------------------------- /lua/dap-python.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/lua/dap-python.lua -------------------------------------------------------------------------------- /nvim-dap-python-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/nvim-dap-python-scm-1.rockspec -------------------------------------------------------------------------------- /spec/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/spec/.env -------------------------------------------------------------------------------- /spec/.env-empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/debugpy_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/spec/debugpy_spec.lua -------------------------------------------------------------------------------- /spec/discovery_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/spec/discovery_spec.lua -------------------------------------------------------------------------------- /spec/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-dap-python/HEAD/spec/simple.py --------------------------------------------------------------------------------