I have a list control in GTK+ (a gtk.TreeView
with one column), with "find-as-you type" enabled (so typing any text will open a small search field for searching through the list entries). Now, if the user enters some search text like "abc", should I search only for entries starting with "abc", or should I search for entries that contain "abc" somewhere in their text?
(links to relevant Human Interface Guidelines appreciated)