fix: typo 'begining' -> 'beginning' in clojure extra

This commit is contained in:
Felipe Matarazzo 2026-05-04 10:39:10 -03:00
parent 55934524a4
commit 35f9ac3316

View file

@ -78,13 +78,13 @@ return {
{ "n", "x" }, { "n", "x" },
"[c", "[c",
"<CMD>call search('^; -\\+$', 'bw')<CR>", "<CMD>call search('^; -\\+$', 'bw')<CR>",
{ silent = true, buffer = true, desc = "Jumps to the begining of previous evaluation output." } { silent = true, buffer = true, desc = "Jumps to the beginning of previous evaluation output." }
) )
vim.keymap.set( vim.keymap.set(
{ "n", "x" }, { "n", "x" },
"]c", "]c",
"<CMD>call search('^; -\\+$', 'w')<CR>", "<CMD>call search('^; -\\+$', 'w')<CR>",
{ silent = true, buffer = true, desc = "Jumps to the begining of next evaluation output." } { silent = true, buffer = true, desc = "Jumps to the beginning of next evaluation output." }
) )
end, end,
}) })