<div dir="ltr"><div>I'm experimenting with how completions are displayed in clangd, and trying to reduce the noise, particularly for templates.</div><div><br></div><div>e.g. this example</div><div>  std::vector<int> X;</div><div>  X.push_back|</div><div>currently produces</div><div>  void push_back(std::vector<int, std::allocator<int> >::value_type &&__x)</div><div>and i'd prefer</div><div>  void push_back(value_type &&__x)</div><div><br></div><div>I can get this by enabling PrintingPolicy.SuppressScope in SemaCodeComplete.</div><div>My initial thought was just to do this locally in clangd, but maybe:</div><div> - there are known cases where this falls down terribly</div><div> - this is just better and we should turn it on for other users (xcode?) too</div><div><br></div><div>The global change only breaks a few tests, in the obvious way: either a return type or parameter of a completion is no longer qualified.</div><div><br></div><div>(There are other things that are noisy here -- int would be better than value_type -- but that's a different question)</div><div><br></div><div>Cheers, Sam</div></div>