- Use '/' key to quickly access this field.
- Enter a name of repository, or repository group for quick search.
- Prefix query to allow special search:
user:admin, to search for usernames, always global
user_group:devops, to search for user groups, always global
pr:303, to search for pull request number, title, or description, always global
commit:efced4, to search for commits, scoped to repositories or groups
file:models.py, to search for file paths, scoped to repositories or groups
For advanced full text search visit: repository search
Strip prefix in `attr_matches` result (#13943)
Fixes #13935
Reasoning behind implementation chosen:
- `a.b.c` prefix in `a.b.c.<tab>` needs to be preserved as otherwise the
completer will replace it with completion rather than appending (so we
cannot just use `.suffix`, we need to use `a.b.c.suffix` here)
- as in the issue we cannot use `a b.suffix` but need to use `b.suffix`
or `.suffix`
- `d['a b']` prefix cannot be split using space splitting so we need to
tokenize
- however, we can do either `a[0].suffix` or `.suffix`