add verbose/quiet commands
This commit is contained in:
parent
84200dcde6
commit
dbc90576b8
1 changed files with 8 additions and 0 deletions
|
@ -241,6 +241,8 @@ func generateInteractive(cmd *cobra.Command, model string) error {
|
|||
readline.PcItem("/set",
|
||||
readline.PcItem("history"),
|
||||
readline.PcItem("nohistory"),
|
||||
readline.PcItem("verbose"),
|
||||
readline.PcItem("quiet"),
|
||||
readline.PcItem("mode",
|
||||
readline.PcItem("vim"),
|
||||
readline.PcItem("emacs"),
|
||||
|
@ -299,6 +301,12 @@ func generateInteractive(cmd *cobra.Command, model string) error {
|
|||
case "nohistory":
|
||||
scanner.HistoryDisable()
|
||||
continue
|
||||
case "verbose":
|
||||
cmd.Flags().Set("verbose", "true")
|
||||
continue
|
||||
case "quiet":
|
||||
cmd.Flags().Set("verbose", "false")
|
||||
continue
|
||||
case "mode":
|
||||
if len(args) > 2 {
|
||||
switch args[2] {
|
||||
|
|
Loading…
Reference in a new issue