From 19f9c77a6eb255e38516d59789e35d4551582b1e Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Mon, 27 Jan 2025 17:35:59 +0100 Subject: [PATCH] fix(dap): remove deprecated function call --- lua/rustaceanvim/config/internal.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/rustaceanvim/config/internal.lua b/lua/rustaceanvim/config/internal.lua index 5026878b..3e4e5d70 100644 --- a/lua/rustaceanvim/config/internal.lua +++ b/lua/rustaceanvim/config/internal.lua @@ -65,7 +65,6 @@ local function load_dap_configuration(type) -- It is necessary to check for changes in the `dap.configurations` table, as -- `load_launchjs` does not return anything, it loads directly into `dap.configurations`. local pre_launch = vim.deepcopy(dap.configurations) or {} - require('dap.ext.vscode').load_launchjs(nil, { lldb = { 'rust' }, codelldb = { 'rust' } }) for name, configuration_entries in pairs(dap.configurations) do if pre_launch[name] == nil or not vim.deep_equal(pre_launch[name], configuration_entries) then -- `configurations` are tables of `configuration` entries