bugfix args debugger

This commit is contained in:
Christoph J. Scherr 2024-02-15 14:59:21 +01:00
parent 254cc44480
commit a39c322ca7
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 1 additions and 1 deletions

View File

@ -765,7 +765,7 @@ local plugins = {
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file") return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file")
end, end,
args = function() args = function()
require('custom.utils').tokenize_args(vim.fn.input("args: ")) return require('custom.utils').tokenize_args(vim.fn.input("args: "))
end, end,
cwd = "${workspaceFolder}", cwd = "${workspaceFolder}",
-- FIXME: perhaps we can put the stdio somewhere more practical -- FIXME: perhaps we can put the stdio somewhere more practical