mirror of
https://github.com/neovim/neovim.git
synced 2025-12-06 14:42:35 +00:00
Allow duplicates so that in languages with overloaded functions it will
show all signatures.
E.g. instead of having a single (last one wins)
add(int index, String element)
It shows all signatures:
add(String e) : boolean
add(int index, String element) : void