You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stage_descriptions/completions-06-wt6.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ For example, if these executables exist in PATH:
12
12
13
13
When the user types `xyz_` and presses tab, the shell completes to `xyz_foo` because that is the longest prefix shared by all three executables.
14
14
15
-
Each subsequent tab press completes to the next common prefix:
15
+
After the user types the next separator character, pressing tab completes to the next common prefix of the remaining matches:
16
16
17
17
```bash
18
18
# Note: The prompt lines below are displayed on the same line
@@ -22,7 +22,7 @@ $ xyz_foo_bar_<TAB>
22
22
$ xyz_foo_bar_baz
23
23
```
24
24
25
-
If there is only one match after performing completion, then the shell should complete the command name as in previous stages (with a trailing space).
25
+
If there is only one match after performing completion, then the shell should complete the command name as with previous stages (with a trailing space).
0 commit comments