mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-14 11:44:32 +00:00
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rsteube/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var rmCmd = &cobra.Command{
|
|
Use: "rm",
|
|
Short: "Remove files from the working tree and from the index",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
GroupID: groups[group_main].ID,
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(rmCmd).Standalone()
|
|
|
|
rmCmd.Flags().Bool("cached", false, "only remove from the index")
|
|
rmCmd.Flags().BoolP("dry-run", "n", false, "dry run")
|
|
rmCmd.Flags().BoolP("force", "f", false, "override the up-to-date check")
|
|
rmCmd.Flags().Bool("ignore-unmatch", false, "exit with a zero status even if nothing matched")
|
|
rmCmd.Flags().Bool("pathspec-file-nul", false, "pathspec elements are separated with NUL character")
|
|
rmCmd.Flags().String("pathspec-from-file", "", "read pathspec from file")
|
|
rmCmd.Flags().BoolP("quiet", "q", false, "do not list removed files")
|
|
rmCmd.Flags().BoolS("r", "r", false, "allow recursive removal")
|
|
rootCmd.AddCommand(rmCmd)
|
|
|
|
carapace.Gen(rmCmd).FlagCompletion(carapace.ActionMap{
|
|
"pathspec-from-file": carapace.ActionFiles(),
|
|
})
|
|
|
|
carapace.Gen(rmCmd).PositionalAnyCompletion(carapace.ActionFiles())
|
|
}
|