AutoYADM commit: 2024-12-21 14:50:04

This commit is contained in:
Daniel Fichtinger 2024-12-21 14:50:04 -05:00
parent d3b6d90513
commit 1b939f701a
2 changed files with 8 additions and 1 deletions

View file

@ -17,6 +17,9 @@ local special_key = "←"
vim.keymap.set({ "n", "i" }, special_key, "<C-CR>", { remap = true })
vim.keymap.set({ "i", "n" }, "<C-t>", "<Nop>")
-- map({ "n" }, "<C-Cr>", function()
-- vim.notify("test")
-- end)
-- Snacks.toggle.zen():map("<leader>uz")
map({ "n" }, "cl", "vgu", { noremap = true, desc = "Lowercase current char" })

View file

@ -52,10 +52,14 @@ return {
enabled = false,
},
keymap = {
preset = "default",
-- Available commands:
-- show, hide, cancel, accept, select_and_accept, select_prev, select_next, show_documentation, hide_documentation,
-- scroll_documentation_up, scroll_documentation_down, snippet_forward, snippet_backward, fallback
-- preset = "default",
["<CR>"] = { "accept", "fallback" },
["<Tab>"] = { "select_and_accept", "fallback" },
["<C-CR>"] = { "select_and_accept", "fallback" },
-- ["<C-CR>"] = { "select_and_accept", "fallback" },
-- ["<C-l>"] = { "select_prev", "fallback" },
-- ["<C-h>"] = { "select_next", "fallback" },
-- ["<C-L>"] = { "scroll_documentation_up" },