AutoYADM commit: 2024-12-21 14:50:04
This commit is contained in:
parent
d3b6d90513
commit
1b939f701a
2 changed files with 8 additions and 1 deletions
|
@ -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" })
|
||||
|
|
|
@ -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" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue