mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 17:21:49 +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