Skip to content

Commit 4c11208

Browse files
committed
update: hover.nvim still unstable
1 parent ce16b20 commit 4c11208

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

lua/aceforeverd/lsp/common.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ local lsp_maps = {
147147
end,
148148
['gr'] = [[<cmd>FzfLua lsp_references<CR>]],
149149
['<leader>gd'] = vim.lsp.buf.definition,
150-
['<leader>K'] = vim.lsp.buf.hover,
151-
['<leader>gK'] = vim.lsp.buf.signature_help,
150+
['K'] = vim.lsp.buf.hover,
151+
['gK'] = vim.lsp.buf.signature_help,
152152
['<leader>gi'] = vim.lsp.buf.implementation,
153153
['<leader>gr'] = vim.lsp.buf.references,
154154
['<Leader>wa'] = vim.lsp.buf.add_workspace_folder,

lua/aceforeverd/plugins/init.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ M.plugin_list = {
320320
})
321321
end,
322322
keys = {
323-
{ 'K', function() require('hover').hover() end, desc = 'hover.nvim' },
324-
{ 'gK', function() require('hover').hover_select() end, desc = 'hover.nvim (select)' },
323+
{ '<leader>K', function() require('hover').hover() end, desc = 'hover.nvim' },
324+
{ '<leader>gK', function() require('hover').hover_select() end, desc = 'hover.nvim (select)' },
325325
}
326326
},
327327

@@ -612,7 +612,7 @@ M.plugin_list = {
612612
'chrisgrieser/nvim-spider',
613613
config = function()
614614
require('spider').setup({
615-
skipInsignificantPunctuation = true,
615+
skipInsignificantPunctuation = false,
616616
})
617617
end,
618618
keys = {
@@ -626,6 +626,7 @@ M.plugin_list = {
626626
{
627627
'rlane/pounce.nvim',
628628
cmd = { 'Pounce', 'PounceRepeat', 'PounceReg', 'PounceExpand' },
629+
keys = { { mode = { 'n', 'x', 'o' }, ';p', '<cmd>Pounce<cr>', desc = 'Pounce' } }
629630
},
630631
-- ==============================================
631632
-- MOTIONS END

0 commit comments

Comments
 (0)