File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
crates/chat-cli/src/cli/chat/cli Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -39,25 +39,30 @@ pub enum ContextSubcommand {
39
39
Show {
40
40
/// Print out each matched file's content, hook configurations, and last
41
41
/// session.conversation summary
42
+ #[ arg( short, long) ]
42
43
expand : bool ,
43
44
} ,
44
45
/// Add context rules (filenames or glob patterns)
45
46
Add {
46
47
/// Add to global rules (available in all profiles)
48
+ #[ arg( short, long) ]
47
49
global : bool ,
48
50
/// Include even if matched files exceed size limits
51
+ #[ arg( short, long) ]
49
52
force : bool ,
50
53
paths : Vec < String > ,
51
54
} ,
52
55
/// Remove specified rules from current profile
53
56
Remove {
54
57
/// Remove specified rules globally
58
+ #[ arg( short, long) ]
55
59
global : bool ,
56
60
paths : Vec < String > ,
57
61
} ,
58
62
/// Remove all rules from current profile
59
63
Clear {
60
64
/// Remove global rules
65
+ #[ arg( short, long) ]
61
66
global : bool ,
62
67
} ,
63
68
}
You can’t perform that action at this time.
0 commit comments