From a6beb3a855b42faa1d0fee1081602257719c2c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3n=C3=A1n=20Carrigan?= Date: Mon, 15 Jan 2024 18:10:45 +0000 Subject: [PATCH] chore: styling --- lua/dapui/util.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lua/dapui/util.lua b/lua/dapui/util.lua index 0435152..19a6588 100644 --- a/lua/dapui/util.lua +++ b/lua/dapui/util.lua @@ -206,7 +206,13 @@ end function M.apply_mapping(mappings, func, buffer) for _, key in pairs(mappings) do if type(func) ~= "string" then - vim.api.nvim_buf_set_keymap(buffer, "n", key, "", { noremap = true, callback = func, nowait = true }) + vim.api.nvim_buf_set_keymap( + buffer, + "n", + key, + "", + { noremap = true, callback = func, nowait = true } + ) else vim.api.nvim_buf_set_keymap(buffer, "n", key, func, { noremap = true, nowait = true }) end