nvim-config/lua/keymaps.lua

145 lines
6.0 KiB
Lua
Raw Normal View History

2023-10-22 10:16:17 +00:00
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`
2023-10-22 10:16:17 +00:00
-- Clear highlights on search when pressing <Esc> in normal mode
-- See `:help hlsearch`
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
2023-10-22 10:16:17 +00:00
-- Diagnostic keymaps
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous [D]iagnostic message' })
vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next [D]iagnostic message' })
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { desc = 'Show diagnostic [E]rror messages' })
vim.keymap.set('n', '<leader>q', vim.diagnostic.setqflist, { desc = 'Open diagnostic [Q]uickfix list' })
-- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier
-- NOTE: This won't work in all terminal emulators/tmux/etc. Try your own mapping
vim.keymap.set('t', '<Esc><Esc>', '<C-\\><C-n>', { desc = 'Exit terminal mode' })
2024-03-07 13:17:46 +00:00
-- Open terminal in current window
vim.keymap.set({ 'n', 'v' }, '<leader>to', '<cmd>term<cr>', { desc = '[T]erminal [O]pen' })
2024-03-07 13:17:46 +00:00
-- Disable arrow keys in normal mode
2024-02-28 07:03:09 +00:00
vim.keymap.set({ 'n', 'v' }, '<left>', '<cmd>echo "Use h to move!!"<CR>')
vim.keymap.set({ 'n', 'v' }, '<right>', '<cmd>echo "Use l to move!!"<CR>')
vim.keymap.set({ 'n', 'v' }, '<up>', '<cmd>echo "Use k to move!!"<CR>')
vim.keymap.set({ 'n', 'v' }, '<down>', '<cmd>echo "Use j to move!!"<CR>')
-- Keybinds to make split navigation easier.
-- Use CTRL+<hjkl> to switch between windows
--
-- See `:help wincmd` for a list of all window commands
vim.keymap.set('n', '<C-h>', '<C-w><C-h>', { desc = 'Move focus to the left window' })
vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right window' })
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
2024-02-28 07:56:41 +00:00
-- Populate CMD to prepare for change directory
2024-04-08 09:39:27 +00:00
vim.keymap.set('n', '<leader>cd ', ':cd ', { desc = 'Prepare CMD for [C]hange [D]irectory' })
2024-04-08 11:18:48 +00:00
-- Navigate to 'base' directory, the initial dir that nvim was run in
vim.keymap.set('n', '<leader>cdb', '<cmd>cd ' .. vim.g.base_dir .. '<cr>', { desc = '[C]hange [D]irectory to [B]ase directory' })
-- Navigate to 'user home' directory
vim.keymap.set('n', '<leader>cdh', '<cmd>cd ' .. vim.env.HOME .. '<cr>', { desc = '[C]hange [D]irectory to [H]ome' })
-- Automatically navigate to config directory
vim.keymap.set('n', '<leader>cdn', '<cmd>cd ' .. vim.fn.stdpath 'config' .. '<cr>', { desc = '[C]hange [D]irectory to [N]eovim' })
2024-02-28 07:56:41 +00:00
2024-03-19 12:32:42 +00:00
-- Switch to between buffers
vim.keymap.set('n', '<leader>bp', '<cmd>bp<cr>', { desc = '[B]uffer [P]revious' })
vim.keymap.set('n', '<leader>bn', '<cmd>bn<cr>', { desc = '[B]uffer [N]ext' })
2024-04-14 14:23:39 +00:00
-- Navigate quickfix list
vim.keymap.set('n', '<leader>lo', '<cmd>copen<cr>', { desc = 'Quickfix [L]ist [O]pen' })
vim.keymap.set('n', '<C-S-j>', '<cmd>cnext<cr>')
vim.keymap.set('n', '<C-S-k>', '<cmd>cprev<cr>')
2024-05-14 06:41:24 +00:00
-- Resizing windows
vim.keymap.set({ 'n', 'v' }, '<M-,>', '<C-W><')
vim.keymap.set({ 'n', 'v' }, '<M-.>', '<C-W>>')
vim.keymap.set({ 'n', 'v' }, '<M-=>', '<C-W>+')
vim.keymap.set({ 'n', 'v' }, '<M-->', '<C-W>-')
local function get_visual_selection()
-- Get selection position
local s_start = vim.fn.getpos "'<"
local s_end = vim.fn.getpos "'>"
-- Get line count
local n_lines = math.abs(s_end[2] - s_start[2]) + 1
-- Read lines from buffer
local lines = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)
-- Subtract unselected sections from lines
lines[1] = string.sub(lines[1], s_start[3], -1)
if n_lines == 1 then
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3] - s_start[3] + 1)
else
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3])
end
-- Return selected
return lines
end
2024-07-03 10:39:17 +00:00
local function global_cmd_yank()
2024-07-03 10:41:21 +00:00
-- Prompt user input for expression
local inexpr = vim.fn.input 'Enter expression: '
local outsep = vim.fn.input 'Enter separator: '
2024-07-03 10:41:21 +00:00
2024-07-03 10:39:17 +00:00
-- Get the (selected) lines
local lines = nil
local mode = vim.api.nvim_get_mode()['mode']
if string.find(mode:lower(), '^v') then
lines = get_visual_selection()
2024-07-03 10:39:17 +00:00
else
lines = vim.api.nvim_buf_get_lines(0, 0, -1, false)
end
2024-07-03 10:41:21 +00:00
-- Apply expression on all lines
local matches = vim.fn.matchstrlist(lines, inexpr)
local extracted = vim.tbl_map(function(value)
return value['text']
end, matches)
-- Concat matches according to separator
local value = table.concat(extracted, outsep)
2024-07-03 10:42:34 +00:00
-- Trigger global search to highlight results
vim.cmd('g/' .. inexpr .. '/')
-- Write to system register
vim.fn.setreg('+', value)
2024-07-03 10:42:34 +00:00
print('Found ' .. #extracted .. ' results!')
2024-07-03 10:39:17 +00:00
end
vim.keymap.set({ 'n', 'v' }, '<leader>gy', global_cmd_yank, { desc = '[G]lobal command [Y]ank' })
-- Fix filename keymap
vim.keymap.set({ 'n', 'v' }, '<leader>fp', function()
-- lua print(string.gsub(vim.api.nvim_buf_get_name(0), vim.fn.getcwd(), ''))
local cwd = vim.fn.getcwd():lower()
local path = vim.api.nvim_buf_get_name(0):lower()
local file, _ = string.gsub(path, cwd .. '\\', '')
vim.cmd('0f | file ' .. file)
end, { desc = '[F]ile Fix Relative [P]ath' })
if vim.g.neovide then
-- System clipboard keybinds in normal and visual mode
2024-05-14 06:45:38 +00:00
vim.keymap.set({ 'n', 'v' }, '<C-S-c>', '"+y', { desc = 'Yank to System clipboard' })
vim.keymap.set({ 'n', 'v' }, '<C-S-v>', '"+p', { desc = 'Paste from System clipboard' })
2024-07-01 14:48:32 +00:00
-- Clipboard for command and insert mode
vim.keymap.set({ 'c', 'i' }, '<C-S-v>', '<C-R>+', { desc = 'Paste from System clipboard' })
2024-08-05 14:25:19 +00:00
-- Clipboard for terminal mode
vim.keymap.set({ 't' }, '<C-S-v>', '<C-\\><C-n>"+pi', { desc = 'Paste from System clipboard' })
end
-- [[ Basic Autocommands ]]
-- See `:help lua-guide-autocommands`
-- Highlight when yanking (copying) text
-- Try it with `yap` in normal mode
-- See `:help vim.highlight.on_yank()`
2023-10-22 10:16:17 +00:00
vim.api.nvim_create_autocmd('TextYankPost', {
desc = 'Highlight when yanking (copying) text',
group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }),
2023-10-22 10:16:17 +00:00
callback = function()
vim.highlight.on_yank()
end,
})
-- vim: ts=2 sts=2 sw=2 et