fixes
This commit is contained in:
parent
96280ace7b
commit
df99a2e698
|
@ -82,8 +82,8 @@ M.maps = function()
|
|||
maps.n["<C-j>"] = { "<C-w>j", desc = "Move to below split" }
|
||||
maps.n["<C-k>"] = { "<C-w>k", desc = "Move to above split" }
|
||||
maps.n["<C-l>"] = { "<C-w>l", desc = "Move to right split" }
|
||||
maps.n["<C-Up>"] = { "<Cmd>resize -2<CR>", desc = "Resize split up" }
|
||||
maps.n["<C-Down>"] = { "<Cmd>resize +2<CR>", desc = "Resize split down" }
|
||||
maps.n["<C-Up>"] = { "<Cmd>resize +2<CR>", desc = "Resize split up" }
|
||||
maps.n["<C-Down>"] = { "<Cmd>resize -2<CR>", desc = "Resize split down" }
|
||||
maps.n["<C-Left>"] = { "<Cmd>vertical resize -2<CR>", desc = "Resize split left" }
|
||||
maps.n["<C-Right>"] = { "<Cmd>vertical resize +2<CR>", desc = "Resize split right" }
|
||||
-- NOTE: These don't make sense when predominantly using floating terminals
|
||||
|
@ -681,6 +681,7 @@ M.maps = function()
|
|||
function()
|
||||
vim.ui.input({ prompt = "Expression: " }, function(expr)
|
||||
if expr then
|
||||
---@diagnostic disable-next-line: missing-fields
|
||||
require("dapui").eval(expr, { enter = true })
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Reference in New Issue