From a8dadc64af47fca7ad6a5181b06cd06792bfb216 Mon Sep 17 00:00:00 2001 From: Per Malmberg Date: Sun, 12 May 2024 11:56:15 +0200 Subject: [PATCH] Fix readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c885be5..bdf05a0 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ lua require('dap-go').setup { -- whether the dlv process to be created detached or not. there is -- an issue on Windows where this needs to be set to false -- otherwise the dlv server creation will fail. - detached = vim.fn.has 'win32' == 0 + detached = vim.fn.has("win32") == 0, -- the current working directory to run dlv from, if other than -- the current working directory. cwd = nil,