lsp_signature.nvim icon indicating copy to clipboard operation
lsp_signature.nvim copied to clipboard

Shows in Telescope

Open ChristianChiarulli opened this issue 3 years ago • 7 comments

After starting nvim and immediately starting telescope the virtual text is present in telescope.

It is not present after closing and reopening.

image

ChristianChiarulli avatar Jul 12 '22 14:07 ChristianChiarulli

Where does modname: string come from?

ray-x avatar Jul 12 '22 14:07 ray-x

image

I think one of these require statements in this case

ChristianChiarulli avatar Jul 12 '22 14:07 ChristianChiarulli

strange. not reproduce. Could you record a short clip? also, the way you trigger telescope if you using customised keymap in insert mode.

ray-x avatar Jul 12 '22 16:07 ray-x

I can't seem to reproduce, maybe it was the recent telescope update? I have an older version on my other computer I'll give it a shot on there. If I can't reproduce it I'll close the issue until I can find a way to do it.

ChristianChiarulli avatar Jul 12 '22 16:07 ChristianChiarulli

I think it's due to the syntax being used here:

require "user.keymaps"
require "user.plugins"
require "user.autocommands"
require "user.colorscheme"
require "user.cmp"
require "user.navic"
require "user.lsp-inlayhints"
require "user.lsp"

If I include the parens the issue doesn't occur:

require("user.keymaps")
require("user.plugins")
require("user.autocommands")
require("user.colorscheme")
require("user.cmp")
require("user.navic")
require("user.lsp-inlayhints")
require("user.lsp")

ChristianChiarulli avatar Jul 31 '22 18:07 ChristianChiarulli

well, this is really strange. Both should work fine.

ray-x avatar Jul 31 '22 22:07 ray-x

@ChristianChiarulli I disable the signature for Telescope file type. Could you check if it works for you? Thanks.

ray-x avatar Feb 02 '23 10:02 ray-x