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:
6767 external programs, which are expensive to fork and execute, so do
6868 make full use of those:
6969
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
7575
7676- Following on from the last point, be sparing with the use of
7777 external processes whenever you can. Completion functions need to be
You can’t perform that action at this time.
0 commit comments