File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,11 @@ Also, please bear the following coding guidelines in mind:
67
67
external programs, which are expensive to fork and execute, so do
68
68
make full use of those:
69
69
70
- ` ?(pattern-list) ` - match zero or one occurrences of patterns
71
- ` *(pattern-list) ` - match zero or more occurrences of patterns
72
- ` +(pattern-list) ` - match one or more occurrences of patterns
73
- ` @(pattern-list) ` - match exactly one of the given patterns
74
- ` !(pattern-list) ` - match anything except one of the given patterns
70
+ - ` ?(pattern-list) ` - match zero or one occurrences of patterns
71
+ - ` *(pattern-list) ` - match zero or more occurrences of patterns
72
+ - ` +(pattern-list) ` - match one or more occurrences of patterns
73
+ - ` @(pattern-list) ` - match exactly one of the given patterns
74
+ - ` !(pattern-list) ` - match anything except one of the given patterns
75
75
76
76
- Following on from the last point, be sparing with the use of
77
77
external processes whenever you can. Completion functions need to be
You can’t perform that action at this time.
0 commit comments