vscode-clangd icon indicating copy to clipboard operation
vscode-clangd copied to clipboard

Function signatures do not show in ctrl + shift + o (Go to symbol)

Open wkjung opened this issue 2 years ago • 1 comments

Seems like in Go to symbol plane (with ctrl shift o) I can't see the parameter hints.

image

However, I can see the hints (with "--completion-style=detailed" tho) when typing: image

It would be really great if I can see the hints also in the Go to symbol plane. Is there a configuration that I should turn on, or this is just not supported?

wkjung avatar Jul 06 '22 06:07 wkjung

Clangd sends this information to the client in its response to the textDocument/documentSymbol request, and vscode does show the signatures in the Outline view (in the Explorer pane).

Not showing the same information in the "Go to symbol..." dropdown looks like an issue in upstream vscode (not the vscode-clangd plugin).

image

HighCommander4 avatar Jul 06 '22 08:07 HighCommander4