File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
extensions/terminal-suggest/src
test/completions/upstream Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -4026,7 +4026,7 @@ const daemonServices: Fig.Suggestion[] = [
4026
4026
4027
4027
const completionSpec : Fig . Spec = {
4028
4028
name : "git" ,
4029
- description : "The stupid content tracker " ,
4029
+ description : "Distributed version control system " ,
4030
4030
generateSpec : async ( _ , executeShellCommand ) => {
4031
4031
const { stdout } = await executeShellCommand ( {
4032
4032
command : "git" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const completionSpec: Fig.Spec = {
10
10
{
11
11
name : [ "-m" , "--mode" ] ,
12
12
description : "Set file mode (as in chmod), not a=rwx - umask" ,
13
- args : { name : "MODE " } ,
13
+ args : { name : "mode " } ,
14
14
} ,
15
15
{
16
16
name : [ "-p" , "--parents" ] ,
@@ -22,9 +22,8 @@ const completionSpec: Fig.Spec = {
22
22
} ,
23
23
{
24
24
name : [ "-Z" , "--context" ] ,
25
- description :
26
- "Set the SELinux security context of each created directory to CTX" ,
27
- args : { name : "CTX" } ,
25
+ description : "Set the SELinux security context of each created directory" ,
26
+ args : { name : "context" } ,
28
27
} ,
29
28
{ name : "--help" , description : "Display this help and exit" } ,
30
29
{
Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ import { testPaths, type ISuiteSpec } from '../../helpers';
8
8
import mkdirSpec from '../../../completions/upstream/mkdir' ;
9
9
10
10
const allOptions = [
11
- '--context <CTX >' ,
11
+ '--context <context >' ,
12
12
'--help' ,
13
- '--mode <MODE >' ,
13
+ '--mode <mode >' ,
14
14
'--parents' ,
15
15
'--verbose' ,
16
16
'--version' ,
17
- '-Z <CTX >' ,
18
- '-m <MODE >' ,
17
+ '-Z <context >' ,
18
+ '-m <mode >' ,
19
19
'-p' ,
20
20
'-v' ,
21
21
] ;
You can’t perform that action at this time.
0 commit comments