aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulia DeMille <8127111+judemille@users.noreply.github.com>2024-01-17 18:49:04 -0600
committerGitHub <noreply@github.com>2024-01-18 02:49:04 +0200
commit12fbbff7e91b1d07498f0574505e9d48baa9d7bf (patch)
tree11017014ac43e2a86dd0faf7f3d34f0163329466
parent2730051a3ff2eaf34e392f2304bab217d884fc30 (diff)
downloadneovim-tasks-master.tar.gz
neovim-tasks-master.zip
fix: don't try to encode dap_open_command in JSON (#21)HEADmaster
dap_open_command is a function, and Neovim gets *very* angry when asked to encode a command in JSON. I don't know if it silently allowed this before or what, but it's causing issues for me. Signed-off-by: Julia DeMille <me@jdemille.com>
-rw-r--r--lua/tasks/project_config.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/tasks/project_config.lua b/lua/tasks/project_config.lua
index b3891a3..f0ca017 100644
--- a/lua/tasks/project_config.lua
+++ b/lua/tasks/project_config.lua
@@ -23,7 +23,10 @@ end
23--- Writes all values as JSON to disk. 23--- Writes all values as JSON to disk.
24function ProjectConfig:write() 24function ProjectConfig:write()
25 local params_file = Path:new(config.params_file) 25 local params_file = Path:new(config.params_file)
26 local tmp_dap_open_command = self.dap_open_command
27 self.dap_open_command = nil
26 params_file:write(vim.json.encode(self), 'w') 28 params_file:write(vim.json.encode(self), 'w')
29 self.dap_open_command = tmp_dap_open_command
27end 30end
28 31
29return ProjectConfig 32return ProjectConfig