Skip to content

Commit

Permalink
Merge pull request #1841 from Hofer-Julian/rename-caraparse
Browse files Browse the repository at this point in the history
Reflect the rename from caraparse to carapace-parse
  • Loading branch information
rsteube authored Sep 17, 2023
2 parents ff88156 + f6cb2d9 commit e175498
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/carapace-parse/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

var rootCmd = &cobra.Command{
Use: "carapace-parse",
Short: "GNU help parser.\n(e.g. 'ln --help | ./caraparse -n ln')",
Short: "GNU help parser.\n(e.g. 'ln --help | ./carapace-parse -n ln')",
Run: func(cmd *cobra.Command, args []string) {
name, _ := cmd.Flags().GetString("name")
parent, _ := cmd.Flags().GetString("parent")
Expand Down
2 changes: 1 addition & 1 deletion docs/src/development/creatingCompleters.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cp -r completers/cp_completer completers/ln_completer
- update the package name in `main.go`
- replace `root.go`
```sh
ln --help | caraparse -n ln > completers/ln_completer/cmd/root.go
ln --help | carapace-parse -n ln > completers/ln_completer/cmd/root.go
```
- fix issues and add completions as required
```go
Expand Down

0 comments on commit e175498

Please sign in to comment.