master #1

Open
oli wants to merge 912 commits from master into lua
Showing only changes of commit 4e0c89a4c8 - Show all commits

View File

@@ -187,7 +187,7 @@ return {
type = 'codelldb',
request = 'launch',
program = function()
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/build_nvim/', 'file')
return vim.fn.input({'Path to executable: ', vim.fn.getcwd() .. '/build_nvim/', 'file'})
end,
cwd = '${workspaceFolder}',
stopOnEntry = false,
@@ -197,7 +197,7 @@ return {
type = 'lldb',
request = 'launch',
program = function()
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/build_nvim', 'file')
return vim.fn.input({'Path to executable: ', vim.fn.getcwd() .. '/build_nvim', 'file'})
end,
cwd = '${workspaceFolder}',
stopOnEntry = false,