From 4f72b1fafebfaa370d465a8b7e297e72ed44b4e5 Mon Sep 17 00:00:00 2001 From: EsVagy42 Date: Tue, 9 Sep 2025 21:33:59 +0200 Subject: [PATCH] Added space when reading c# dll name --- config/dap.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/dap.nix b/config/dap.nix index f53f083..0c26c1c 100644 --- a/config/dap.nix +++ b/config/dap.nix @@ -36,7 +36,7 @@ name = "launch - netcoredbg", request = "launch", program = function() - return vim.fn.input('Path to dll', vim.fn.getcwd() .. '/bin/Debug/', 'file') + return vim.fn.input('Path to dll ', vim.fn.getcwd() .. '/bin/Debug/', 'file') end, }, } '';