ray-x / lsp_signature.nvim

LSP signature hint as you type
Apache License 2.0
2.03k stars 58 forks source link

fix bugs that not show no parameter function signature. #138

Closed codewdy closed 2 years ago

codewdy commented 2 years ago

when there is a no parameter signature, it's be filtered by mistake. clangd 11.0 int a(); int a(int x); int a(int x, int y); int main() { a( // only show a(int x) and a(int x, int y) }

codewdy commented 2 years ago

in lua, use "and" not "&&"...

ray-x commented 2 years ago

Thanks! Merged.