Skip to content

Commit cd08157

Browse files
committed
use signature help fork until merge
1 parent b3e91eb commit cd08157

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

lua/misc/handlers.lua

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
-- Custom handlers for LSP actions
2+
-- using telescope.nvim
3+
-- TODO: Some of theses don't work reliably
4+
-- so they are not used, yet.
15
local pickers = require "telescope.pickers"
26
local conf = require("telescope.config").values
37
local finders = require "telescope.finders"

lua/plugins/completion.lua

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ return {
1212
event = 'InsertEnter',
1313
dependencies = {
1414
'hrsh7th/cmp-nvim-lsp',
15-
'hrsh7th/cmp-nvim-lsp-signature-help',
15+
-- TODO: wait for PR merge to revert back to hrsh7th upstream
16+
'jmbuhr/cmp-nvim-lsp-signature-help',
1617
'hrsh7th/cmp-buffer',
1718
'hrsh7th/cmp-path',
1819
'hrsh7th/cmp-calc',
@@ -25,7 +26,6 @@ return {
2526
'L3MON4D3/LuaSnip',
2627
'rafamadriz/friendly-snippets',
2728
'onsails/lspkind-nvim',
28-
'jmbuhr/otter.nvim',
2929
},
3030
config = function()
3131
local cmp = require 'cmp'
@@ -104,7 +104,6 @@ return {
104104
format = lspkind.cmp_format {
105105
mode = 'symbol',
106106
menu = {
107-
otter = '[🦦]',
108107
nvim_lsp = '[LSP]',
109108
nvim_lsp_signature_help = '[sig]',
110109
luasnip = '[snip]',
@@ -121,7 +120,6 @@ return {
121120
},
122121
},
123122
sources = {
124-
-- { name = 'otter' }, -- for code chunks in quarto
125123
{ name = 'path' },
126124
{ name = 'nvim_lsp_signature_help' },
127125
{ name = 'nvim_lsp' },

lua/plugins/lsp.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ return {
55

66
-- for lsp features in code cells / embedded code
77
'jmbuhr/otter.nvim',
8-
dev = false,
8+
dev = true,
99
dependencies = {
1010
{
1111
'neovim/nvim-lspconfig',

0 commit comments

Comments
 (0)