That's just how the FTS engine works (indeed most fts engines work). Think of for example a google search. They dont return multiple matches per webpage.
As for replicating near queries, you can do so in the viewer, using regular expressions. So for example to find the words one and two near each other you can search for
(?s)\bone\b.{3,150}\btwo\b
The only caveat is that the numbers above are characters not words, so its not quite as precise as in the FTS search.
|