Comments
-
Greg Hurrell
Can you give me an example of some of the paths that you're trying to find?
I'm inclined to think that if you get the knack of things (specifically knowing that chars matching in certain positions, such as after a "/" are scored more highly, and also that runs of characters are scored more highly too) then you should be able to drill down to the file you're looking for without limiting yourself to the kind of substring search that, if I understand it correctly, you're suggesting.
It would also be good if you could describe exactly how you would expect this to work. My understanding of it is that given a search string like "foo bar" it would expect to find "foo" as a run of consecutive characters, and "bar" as another in order to match.
Add a comment
Comments are now closed for this issue.