2020-07-28 14:09:36 -04:00
---
stage: Create
group: Source Code
2020-11-26 01:09:20 -05:00
info: "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments"
2020-07-28 14:09:36 -04:00
type: reference
2021-02-16 07:09:03 -05:00
description: "Autocomplete characters in Markdown fields."
2020-07-28 14:09:36 -04:00
---
2021-02-09 13:09:59 -05:00
# Autocomplete characters **(FREE)**
2019-07-17 01:33:52 -04:00
2021-02-16 07:09:03 -05:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/36705) in GitLab 13.9: you can search using the full name in user autocomplete.
2019-07-17 01:33:52 -04:00
The autocomplete characters provide a quick way of entering field values into
Markdown fields. When you start typing a word in a Markdown field with one of
the following characters, GitLab progressively autocompletes against a set of
matching values. The string matching is not case sensitive.
2021-02-22 13:10:55 -05:00
| Character | Autocompletes | Relevant matches shown |
| :-------- | :------------ | :---- |
| `~` | Labels | 20 |
| `%` | Milestones | 5 |
| `@` | Users and groups | 10 |
| `#` | Issues | 5 |
| `!` | Merge requests | 5 |
| `&` | Epics | 5 |
| `$` | Snippets | 5 |
| `:` | Emoji | 5 |
| `/` | Quick Actions | 100 |
When you select an item from the list, the value is entered in the field.
The more characters you enter, the more precise the matches are.
2019-07-17 01:33:52 -04:00
Autocomplete characters are useful when combined with [Quick Actions ](quick_actions.md ).
2021-02-22 13:10:55 -05:00
## User autocomplete
2019-07-17 01:33:52 -04:00
Assume your GitLab instance includes the following users:
2020-10-15 20:08:56 -04:00
<!-- vale gitlab.Spelling = NO -->
2019-07-17 01:33:52 -04:00
| Username | Name |
| :-------------- | :--- |
| alessandra | Rosy Grant |
| lawrence.white | Kelsey Kerluke |
| leanna | Rosemarie Rogahn |
| logan_gutkowski | Lee Wuckert |
| shelba | Josefine Haley |
2020-10-15 20:08:56 -04:00
<!-- vale gitlab.Spelling = YES -->
2021-02-22 13:10:55 -05:00
User autocompletion sorts by the users whose username or name start with your query first.
For example, typing `@lea` shows `leanna` first and typing `@ros` shows `Rosemarie Rogahn` and `Rosy Grant` first.
Any usernames or names that include your query are shown afterwards in the autocomplete menu.
2021-02-16 07:09:03 -05:00
You can also search across the full name to find a user.
2021-02-22 13:10:55 -05:00
To find `Rosy Grant` , even if their username is for example `alessandra` , you can type their full name without spaces like `@rosygrant` .