mhutch / MonoDevelop.MSBuildEditor

Improved MSBuild editing support
Other
211 stars 24 forks source link

Values in value completion should sort before references and tags #195

Open mhutch opened 3 months ago

mhutch commented 3 months ago

image

We add XML comment/CDATA and MSBuild property/item/metadata references into the value completion list both to aid discovery and so that completion shows all valid values. However, the VS editor sorts these at the top of the list. This is undesirable as they are used much less frequently than the actual values.

We should override them to sort to the bottom (perhaps prepend ZZZZ to the sort text or something), or omit them entirely and tune the completion behavior to still be good.