Conversation
Codecov Report
@@ Coverage Diff @@
## master #560 +/- ##
==========================================
- Coverage 58.30% 58.25% -0.06%
==========================================
Files 64 64
Lines 4197 4211 +14
==========================================
+ Hits 2447 2453 +6
- Misses 1516 1522 +6
- Partials 234 236 +2
Continue to review full report at Codecov.
|
|
@fmuellner do you think it would be useful a "--full-match" flag for adding double-quotes in the terms and forcing that "exact" (it still is case insensitive) match? |
Do you mean to both That said, a flag does sound more convenient than escaping quotes on the command line. I'd prefer |
Yes! Sorry. It must be for both :)
Hmm, although I agree with your concern with |
Maybe as a string flag (
Right, that's a concern. OTOH, both Google and DuckDuckGo use "exact match/term": And in both cases, the search is case insensitive (in fact, searching for "cats and dogs" turns up "Cats & Dogs" as top result in both for me) |
Yeah.. using it as a string would be confusing.
Hmmm. let's use Thanks @fmuellner ! |
Gitlab support matching on the exact search terms by enclosing the search strings in double quotes (as is common for web search engines as well). This requires careful quoting or escaping on the command line - for example '"foo bar"' or "\"foo bar\"" - which is cumbersome; make this more convenient by adding a dedicated command line flag that takes care of the quoting.
Search is as useful for merge requests as for issues, so support the same option as `lab issue list`.
Search is as useful for merge requests as for issues, so support
the same option as
lab issue list.