diff options
author | Jacek Kiedrowski <[email protected]> | 2021-07-05 20:15:25 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-05 20:15:25 +0100 |
commit | 1f32f7737a544d539b2251cbdb2b717ff7e06458 (patch) | |
tree | 7c0b4e3e928833972efe282eb84dc25b70235b25 /ftplugin/python.lua | |
parent | 97d7adfb2f710345bf5d6a0cac4d76900f11fd38 (diff) | |
parent | 6b41286d70b71184b915724a0a03ccd8ec3b4e16 (diff) |
Merge branch 'ChristianChiarulli:master' into master
Diffstat (limited to 'ftplugin/python.lua')
-rw-r--r-- | ftplugin/python.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ftplugin/python.lua b/ftplugin/python.lua index 04fe2ded..62464397 100644 --- a/ftplugin/python.lua +++ b/ftplugin/python.lua @@ -76,5 +76,7 @@ if O.lang.python.autoformat then } end -local dap_install = require("dap-install") -dap_install.config("python_dbg", {}) +if O.plugin.debug.active and O.plugin.dap_install.active then + local dap_install = require("dap-install") + dap_install.config("python_dbg", {}) +end |