Skip to content

Commit

Permalink
Merge pull request #1003 from carapace-sh/update-package
Browse files Browse the repository at this point in the history
update package path for carapace-sh
  • Loading branch information
rsteube authored Mar 11, 2024
2 parents a5adf91 + 71a5de9 commit eb31c05
Show file tree
Hide file tree
Showing 187 changed files with 373 additions and 375 deletions.
8 changes: 6 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "carapace",
"image": "ghcr.io/rsteube/carapace:v0.20.3",
"image": "ghcr.io/carapace-sh/carapace",
"settings": {
"terminal.integrated.shell.linux": "/bin/elvish"
},
Expand All @@ -10,5 +10,9 @@
"containerEnv": {
"TARGET": "/home/circleci/go/bin/example"
},
"onCreateCommand": [ "sh", "-c", "cd example && go install ."]
"onCreateCommand": [
"sh",
"-c",
"cd example && go install ."
]
}
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
git config user.email rsteube@users.noreply.github.com
git add .
git commit -m "initial commit [ci skip]"
git push --force https://rsteube:${GITHUB_TOKEN}@github.com/rsteube/carapace.git master:gh-pages
git push --force https://rsteube:${GITHUB_TOKEN}@github.com/carapace-sh/carapace.git master:gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
run: |
tag=latest
[[ "$GITHUB_REF" =~ ^refs/tags/ ]] && tag="${GITHUB_REF/refs\/tags\//}"
docker build . --tag "ghcr.io/rsteube/carapace:${tag}"
docker push "ghcr.io/rsteube/carapace:${tag}"
docker build . --tag "ghcr.io/carapace-sh/carapace:${tag}"
docker push "ghcr.io/carapace-sh/carapace:${tag}"
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: go tool covdata textfmt -i .cover/ -o integration.cov

- name: Filter coverage
run: sed -i '/^github.com\/rsteube\/carapace\/third_party/d' unit.cov integration.cov
run: sed -i '/^github.com\/carapace-sh\/carapace\/third_party/d' unit.cov integration.cov

- name: "Check formatting"
run: '[ "$(gofmt -d -s . | tee -a /dev/stderr)" = "" ]'
Expand All @@ -64,4 +64,4 @@ jobs:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
caraparse/caraparse
.cover
dist
docs/book
example/cmd/_test_files/*.txt
example/example
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:bookworm as base
LABEL org.opencontainers.image.source https://github.com/rsteube/carapace
LABEL org.opencontainers.image.source https://github.com/carapace-sh/carapace
USER root

FROM base as bat
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# carapace

[![PkgGoDev](https://pkg.go.dev/badge/github.com/rsteube/carapace)](https://pkg.go.dev/github.com/rsteube/carapace)
[![documentation](https://img.shields.io/badge/‌-documentation-blue?logo=gitbook)](https://rsteube.github.io/carapace/)
[![GoReportCard](https://goreportcard.com/badge/github.com/rsteube/carapace)](https://goreportcard.com/report/github.com/rsteube/carapace)
[![Coverage Status](https://coveralls.io/repos/github/rsteube/carapace/badge.svg?branch=master)](https://coveralls.io/github/rsteube/carapace?branch=master)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/carapace-sh/carapace)](https://pkg.go.dev/github.com/carapace-sh/carapace)
[![documentation](https://img.shields.io/badge/‌-documentation-blue?logo=gitbook)](https://carapace-sh.github.io/carapace/)
[![GoReportCard](https://goreportcard.com/badge/github.com/carapace-sh/carapace)](https://goreportcard.com/report/github.com/carapace-sh/carapace)
[![Coverage Status](https://coveralls.io/repos/github/carapace-sh/carapace/badge.svg?branch=master)](https://coveralls.io/github/carapace-sh/carapace?branch=master)

Command argument completion generator for [cobra]. You can read more about it here: _[A pragmatic approach to shell completion](https://dev.to/rsteube/a-pragmatic-approach-to-shell-completion-4gp0)_.

Expand All @@ -15,21 +15,21 @@ Supported shells:
- [Bash](https://www.gnu.org/software/bash/)
- [Elvish](https://elv.sh/)
- [Fish](https://fishshell.com/)
- [Ion](https://doc.redox-os.org/ion-manual/) ([experimental](https://github.com/rsteube/carapace/issues/88))
- [Ion](https://doc.redox-os.org/ion-manual/) ([experimental](https://github.com/carapace-sh/carapace/issues/88))
- [Nushell](https://www.nushell.sh/)
- [Oil](http://www.oilshell.org/)
- [Powershell](https://microsoft.com/powershell)
- [Tcsh](https://www.tcsh.org/) ([experimental](https://github.com/rsteube/carapace/issues/331))
- [Tcsh](https://www.tcsh.org/) ([experimental](https://github.com/carapace-sh/carapace-sh/issues/331))
- [Xonsh](https://xon.sh/)
- [Zsh](https://www.zsh.org/)

## Usage

Calling `carapace.Gen` on the root command is sufficient to enable completion using the [hidden command](https://rsteube.github.io/carapace/carapace/gen/hiddenSubcommand.html).
Calling `carapace.Gen` on the root command is sufficient to enable completion using the [hidden command](https://carapace-sh.github.io/carapace/carapace/gen/hiddenSubcommand.html).

```go
import (
"github.com/rsteube/carapace"
"github.com/carapace-sh/carapace"
)

carapace.Gen(rootCmd)
Expand All @@ -49,8 +49,8 @@ See [carapace-bin](https://github.com/rsteube/carapace-bin) for examples.

- [carapace-bin](https://github.com/rsteube/carapace-bin) multi-shell multi-command argument completer
- [carapace-bridge](https://github.com/rsteube/carapace-bridge) completion bridge
- [carapace-pflag](https://github.com/rsteube/carapace-pflag) Drop-in replacement for spf13/pflag with support for non-posix variants
- [carapace-shlex](https://github.com/rsteube/carapace-shlex) simple shell lexer
- [carapace-pflag](https://github.com/carapace-sh/carapace-pflag) Drop-in replacement for spf13/pflag with support for non-posix variants
- [carapace-shlex](https://github.com/carapace-sh/carapace-shlex) simple shell lexer
- [carapace-spec](https://github.com/rsteube/carapace-spec) define simple completions using a spec file
- [carapace-spec-clap](https://github.com/rsteube/carapace-spec-clap) spec generation for clap-rs/clap
- [carapace-spec-kingpin](https://github.com/rsteube/carapace-spec-kingpin) spec generation for alecthomas/kingpin
Expand Down
12 changes: 6 additions & 6 deletions action.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (
"time"

shlex "github.com/carapace-sh/carapace-shlex"
"github.com/rsteube/carapace/internal/cache"
"github.com/rsteube/carapace/internal/common"
"github.com/rsteube/carapace/pkg/cache/key"
"github.com/rsteube/carapace/pkg/match"
"github.com/rsteube/carapace/pkg/style"
pkgtraverse "github.com/rsteube/carapace/pkg/traverse"
"github.com/carapace-sh/carapace/internal/cache"
"github.com/carapace-sh/carapace/internal/common"
"github.com/carapace-sh/carapace/pkg/cache/key"
"github.com/carapace-sh/carapace/pkg/match"
"github.com/carapace-sh/carapace/pkg/style"
pkgtraverse "github.com/carapace-sh/carapace/pkg/traverse"
)

// Action indicates how to complete a flag or positional argument.
Expand Down
8 changes: 4 additions & 4 deletions action_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"testing"
"time"

"github.com/rsteube/carapace/internal/assert"
"github.com/rsteube/carapace/internal/common"
"github.com/rsteube/carapace/pkg/style"
"github.com/carapace-sh/carapace/internal/assert"
"github.com/carapace-sh/carapace/internal/common"
"github.com/carapace-sh/carapace/pkg/style"
)

func init() {
Expand Down Expand Up @@ -235,7 +235,7 @@ func TestActionExecCommand(t *testing.T) {
)

assertEqual(t,
ActionValues("module github.com/rsteube/carapace\n").Invoke(Context{}),
ActionValues("module github.com/carapace-sh/carapace\n").Invoke(Context{}),
ActionExecCommand("head", "-n1", "go.mod")(func(output []byte) Action { return ActionValues(string(output)) }).Invoke(Context{}),
)
}
2 changes: 1 addition & 1 deletion batch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package carapace
import (
"testing"

"github.com/rsteube/carapace/internal/common"
"github.com/carapace-sh/carapace/internal/common"
)

func TestBatch(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion carapace.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package carapace
import (
"os"

"github.com/rsteube/carapace/internal/shell"
"github.com/carapace-sh/carapace/internal/shell"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
Expand Down
4 changes: 2 additions & 2 deletions carapace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"testing"

"github.com/rsteube/carapace/internal/assert"
"github.com/rsteube/carapace/internal/uid"
"github.com/carapace-sh/carapace/internal/assert"
"github.com/carapace-sh/carapace/internal/uid"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions command.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"strings"

"github.com/rsteube/carapace/internal/spec"
"github.com/rsteube/carapace/pkg/style"
"github.com/carapace-sh/carapace/internal/spec"
"github.com/carapace-sh/carapace/pkg/style"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions complete.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package carapace
import (
"os"

"github.com/rsteube/carapace/internal/config"
"github.com/rsteube/carapace/internal/shell/bash"
"github.com/rsteube/carapace/internal/shell/nushell"
"github.com/rsteube/carapace/pkg/ps"
"github.com/carapace-sh/carapace/internal/config"
"github.com/carapace-sh/carapace/internal/shell/bash"
"github.com/carapace-sh/carapace/internal/shell/nushell"
"github.com/carapace-sh/carapace/pkg/ps"
"github.com/spf13/cobra"
)

Expand Down
10 changes: 5 additions & 5 deletions context.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import (
"path/filepath"
"strings"

"github.com/rsteube/carapace/internal/env"
"github.com/rsteube/carapace/internal/shell/zsh"
"github.com/rsteube/carapace/pkg/execlog"
"github.com/rsteube/carapace/pkg/util"
"github.com/rsteube/carapace/third_party/github.com/drone/envsubst"
"github.com/carapace-sh/carapace/internal/env"
"github.com/carapace-sh/carapace/internal/shell/zsh"
"github.com/carapace-sh/carapace/pkg/execlog"
"github.com/carapace-sh/carapace/pkg/util"
"github.com/carapace-sh/carapace/third_party/github.com/drone/envsubst"
"github.com/spf13/cobra"
)

Expand Down
16 changes: 8 additions & 8 deletions defaultActions.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import (
"os/exec"
"strings"

"github.com/rsteube/carapace/internal/common"
"github.com/rsteube/carapace/internal/config"
"github.com/rsteube/carapace/internal/env"
"github.com/rsteube/carapace/internal/export"
"github.com/rsteube/carapace/internal/man"
"github.com/rsteube/carapace/pkg/match"
"github.com/rsteube/carapace/pkg/style"
"github.com/rsteube/carapace/third_party/github.com/acarl005/stripansi"
"github.com/carapace-sh/carapace/internal/common"
"github.com/carapace-sh/carapace/internal/config"
"github.com/carapace-sh/carapace/internal/env"
"github.com/carapace-sh/carapace/internal/export"
"github.com/carapace-sh/carapace/internal/man"
"github.com/carapace-sh/carapace/pkg/match"
"github.com/carapace-sh/carapace/pkg/style"
"github.com/carapace-sh/carapace/third_party/github.com/acarl005/stripansi"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
Expand Down
4 changes: 2 additions & 2 deletions diff.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package carapace

import (
"github.com/rsteube/carapace/internal/common"
"github.com/rsteube/carapace/pkg/style"
"github.com/carapace-sh/carapace/internal/common"
"github.com/carapace-sh/carapace/pkg/style"
)

// Diff compares values of two actions.
Expand Down
2 changes: 1 addition & 1 deletion diff_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package carapace
import (
"testing"

"github.com/rsteube/carapace/pkg/style"
"github.com/carapace-sh/carapace/pkg/style"
)

func TestDiff(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
build: &base
build: .
image: ghcr.io/rsteube/carapace
image: ghcr.io/carapace-sh/carapace
command: sh -c 'cd /carapace/example && go build -buildvcs=false .'
user: 1000:1000
environment:
Expand Down
4 changes: 2 additions & 2 deletions docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ default-theme = "Latte"
preferred-dark-theme = "Mocha"
additional-css = ["asciinema/asciinema-player.css", "./theme/catppuccin.css"]
additional-js = ["asciinema/asciinema-player.min.js", "asciinema/load.js"]
git-repository-url = "https://github.com/rsteube/carapace"
edit-url-template = "https://github.com/rsteube/carapace/edit/master/docs/{path}"
git-repository-url = "https://github.com/carapace-sh/carapace"
edit-url-template = "https://github.com/carapace-sh/carapace/edit/master/docs/{path}"

[output.html.fold]
enable = true
Expand Down
4 changes: 2 additions & 2 deletions docs/src/carapace.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
- [Bash](https://www.gnu.org/software/bash/)
- [Elvish](https://elv.sh/)
- [Fish](https://fishshell.com/)
- [Ion](https://doc.redox-os.org/ion-manual/) ([experimental](https://github.com/rsteube/carapace/issues/88))
- [Ion](https://doc.redox-os.org/ion-manual/) ([experimental](https://github.com/carapace-sh/carapace/issues/88))
- [Nushell](https://www.nushell.sh/)
- [Oil](http://www.oilshell.org/)
- [Powershell](https://microsoft.com/powershell)
- [Xonsh](https://xon.sh/)
- [Zsh](https://www.zsh.org/)

[carapace]:https://github.com/rsteube/carapace
[carapace]:https://github.com/carapace-sh/carapace
[spf13/cobra]:https://github.com/spf13/cobra
2 changes: 1 addition & 1 deletion docs/src/carapace/action.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Action

An [`Action`](https://pkg.go.dev/github.com/rsteube/carapace#Action) indicates how to complete a flag or a positional argument.
An [`Action`](https://pkg.go.dev/github.com/carapace-sh/carapace#Action) indicates how to complete a flag or a positional argument.

6 changes: 3 additions & 3 deletions docs/src/carapace/action/cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ Cache is written as `json` to [`os.UserCacheDir`] using the [Export] format.
| cacheChecksum | sh1sum of given [`CacheKeys`] | `041858daaaa8b084122d4604a3223315c39edc3e` |

[Action]:../action.md
[`Cache`]:https://pkg.go.dev/github.com/rsteube/carapace#Action.Cache
[`key.String`]:https://pkg.go.dev/github.com/rsteube/carapace/pkg/key#String
[`CacheKeys`]:https://pkg.go.dev/github.com/rsteube/carapace/pkg/cache#CacheKey
[`Cache`]:https://pkg.go.dev/github.com/carapace-sh/carapace#Action.Cache
[`key.String`]:https://pkg.go.dev/github.com/carapace-sh/carapace/pkg/key#String
[`CacheKeys`]:https://pkg.go.dev/github.com/carapace-sh/carapace/pkg/cache#CacheKey
[callback actions]:./defaultActions/actionCallback.md
[Export]:../export.md
[`os.UserCacheDir`]:https://pkg.go.dev/os#UserCacheDir
Expand Down
2 changes: 1 addition & 1 deletion docs/src/carapace/action/chdir.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ carapace.ActionFiles().Chdir("/tmp")

![](./chdir.cast)

[`Chdir`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.Chdir
[`Chdir`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.Chdir
2 changes: 1 addition & 1 deletion docs/src/carapace/action/chdirF.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ carapace.ActionFiles().ChdirF(traverse.GitWorkTree)
![](./chdirF.cast)

[Chdir]:./chdir.md
[`ChdirF`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.ChdirF
[`ChdirF`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.ChdirF
2 changes: 1 addition & 1 deletion docs/src/carapace/action/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ carapace.ActionValuesDescribed(

![](./filter.cast)

[`Filter`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.Filter
[`Filter`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.Filter
2 changes: 1 addition & 1 deletion docs/src/carapace/action/filterArgs.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ carapace.ActionValues(

![](./filterArgs.cast)

[`FilterArgs`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.FilterArgs
[`FilterArgs`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.FilterArgs
2 changes: 1 addition & 1 deletion docs/src/carapace/action/filterParts.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ carapace.ActionMultiParts(",", func(c carapace.Context) carapace.Action {

![](./filterParts.cast)

[`FilterParts`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.FilterParts
[`FilterParts`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.FilterParts
2 changes: 1 addition & 1 deletion docs/src/carapace/action/invoke.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ carapace.ActionCallback(func(c carapace.Context) carapace.Action {
![](./invoke.cast)

[callback]:../defaultActions/actionCallback.md
[`Invoke`]:https://pkg.go.dev/github.com/rsteube/carapace#Action.Invoke
[`Invoke`]:https://pkg.go.dev/github.com/carapace-sh/carapace#Action.Invoke
[Action]:../action.md
2 changes: 1 addition & 1 deletion docs/src/carapace/action/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ carapace.ActionValues(

![](./list.cast)

[`List`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.List
[`List`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.List
2 changes: 1 addition & 1 deletion docs/src/carapace/action/multiParts.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ carapace.ActionValues(

![](./multiparts.cast)

[`MultiParts`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.Multiparts
[`MultiParts`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.Multiparts
2 changes: 1 addition & 1 deletion docs/src/carapace/action/multiPartsP.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ carapace.ActionStyledValuesDescribed(
![](./multiPartsP.cast)

[MultiParts]:./multiParts.md
[`MultiPartsP`]:https://pkg.go.dev/github.com/rsteube/carapace#Action.MultiPartsP
[`MultiPartsP`]:https://pkg.go.dev/github.com/carapace-sh/carapace#Action.MultiPartsP
2 changes: 1 addition & 1 deletion docs/src/carapace/action/noSpace.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ carapace.ActionValues(

![](./nospace.cast)

[`NoSpace`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.NoSpace
[`NoSpace`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.NoSpace
2 changes: 1 addition & 1 deletion docs/src/carapace/action/prefix.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ carapace.ActionFiles().Prefix("file://")

![](./prefix.cast)

[`Prefix`]: https://pkg.go.dev/github.com/rsteube/carapace#Action.Prefix
[`Prefix`]: https://pkg.go.dev/github.com/carapace-sh/carapace#Action.Prefix
Loading

0 comments on commit eb31c05

Please sign in to comment.