From a39c322ca7298d4b664956d179027eb1400da934 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Thu, 15 Feb 2024 14:59:21 +0100 Subject: [PATCH] bugfix args debugger --- lua/custom/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins.lua b/lua/custom/plugins.lua index cc707f4..8bff8b6 100644 --- a/lua/custom/plugins.lua +++ b/lua/custom/plugins.lua @@ -765,7 +765,7 @@ local plugins = { return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file") end, args = function() - require('custom.utils').tokenize_args(vim.fn.input("args: ")) + return require('custom.utils').tokenize_args(vim.fn.input("args: ")) end, cwd = "${workspaceFolder}", -- FIXME: perhaps we can put the stdio somewhere more practical