mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 19:38:20 +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