remove some comments
This commit is contained in:
@@ -5,22 +5,12 @@ vim.keymap.set("n", "<Esc>", "<cmd>nohlsearch<CR>")
|
|||||||
-- Diagnostic keymaps
|
-- Diagnostic keymaps
|
||||||
vim.keymap.set("n", "<leader>q", vim.diagnostic.setloclist, { desc = "Open diagnostic [Q]uickfix list" })
|
vim.keymap.set("n", "<leader>q", vim.diagnostic.setloclist, { desc = "Open diagnostic [Q]uickfix list" })
|
||||||
|
|
||||||
-- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier
|
|
||||||
-- for people to discover. Otherwise, you normally need to press <C-\><C-n>, which
|
|
||||||
-- is not what someone will guess without a bit more experience.
|
|
||||||
--
|
|
||||||
-- NOTE: This won't work in all terminal emulators/tmux/etc. Try your own mapping
|
-- NOTE: This won't work in all terminal emulators/tmux/etc. Try your own mapping
|
||||||
-- or just use <C-\><C-n> to exit terminal mode
|
-- or just use <C-\><C-n> to exit terminal mode
|
||||||
vim.keymap.set("t", "<Esc><Esc>", "<C-\\><C-n>:bd!<CR>", { desc = "Exit terminal mode", silent = true })
|
vim.keymap.set("t", "<Esc><Esc>", "<C-\\><C-n>:bd!<CR>", { desc = "Exit terminal mode", silent = true })
|
||||||
vim.keymap.set("i", "jj", "<Esc>", { desc = "Exit insert mode", silent = true })
|
|
||||||
-- TIP: Disable arrow keys in normal mode
|
|
||||||
-- vim.keymap.set('n', '<left>', '<cmd>echo "Use h to move!!"<CR>')
|
|
||||||
-- vim.keymap.set('n', '<right>', '<cmd>echo "Use l to move!!"<CR>')
|
|
||||||
-- vim.keymap.set('n', '<up>', '<cmd>echo "Use k to move!!"<CR>')
|
|
||||||
-- vim.keymap.set('n', '<down>', '<cmd>echo "Use j to move!!"<CR>')
|
|
||||||
|
|
||||||
-- Keybinds to make split navigation easier.
|
-- Exit insert mode
|
||||||
-- Use CTRL+<hjkl> to switch between windows
|
vim.keymap.set("i", "jj", "<Esc>", { desc = "Exit insert mode", silent = true })
|
||||||
|
|
||||||
-- Vertical navigation
|
-- Vertical navigation
|
||||||
vim.keymap.set("n", "<S-j>", "5j", { desc = "Jump ten spaces down", silent = true })
|
vim.keymap.set("n", "<S-j>", "5j", { desc = "Jump ten spaces down", silent = true })
|
||||||
|
|||||||
Reference in New Issue
Block a user