├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── request.yaml ├── advanced-issue-labeler.yml ├── codeql │ └── codeql-config.yml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── doc.yml │ ├── go.yml │ ├── golangci-lint.yml │ ├── issue-labeler.yml │ ├── vhs-template.yml │ └── vhs.env ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── LICENSE.appendix ├── LICENSE.txt ├── README.md ├── action.go ├── action_test.go ├── batch.go ├── batch_test.go ├── carapace.go ├── carapace_test.go ├── command.go ├── compat.go ├── compat_test.go ├── complete.go ├── compose.yaml ├── context.go ├── context_test.go ├── defaultActions.go ├── defaultActions_test.go ├── diff.go ├── diff_test.go ├── docs ├── asciinema │ ├── asciinema-player.css │ ├── asciinema-player.min.js │ └── load.js ├── book.toml ├── src │ ├── SUMMARY.md │ ├── carapace.md │ ├── carapace │ │ ├── action.md │ │ ├── action │ │ │ ├── cache-key.cast │ │ │ ├── cache.cast │ │ │ ├── cache.md │ │ │ ├── chdir.cast │ │ │ ├── chdir.md │ │ │ ├── chdirF.cast │ │ │ ├── chdirF.md │ │ │ ├── filter.cast │ │ │ ├── filter.md │ │ │ ├── filterArgs.cast │ │ │ ├── filterArgs.md │ │ │ ├── filterParts.cast │ │ │ ├── filterParts.md │ │ │ ├── invoke.cast │ │ │ ├── invoke.md │ │ │ ├── list.cast │ │ │ ├── list.md │ │ │ ├── multiParts.md │ │ │ ├── multiPartsP.cast │ │ │ ├── multiPartsP.md │ │ │ ├── multiparts.cast │ │ │ ├── noSpace.md │ │ │ ├── nospace.cast │ │ │ ├── prefix.cast │ │ │ ├── prefix.md │ │ │ ├── retain.cast │ │ │ ├── retain.md │ │ │ ├── shift.cast │ │ │ ├── shift.md │ │ │ ├── split.cast │ │ │ ├── split.md │ │ │ ├── splitP.cast │ │ │ ├── splitP.md │ │ │ ├── style.cast │ │ │ ├── style.md │ │ │ ├── styleF.cast │ │ │ ├── styleF.md │ │ │ ├── styleR.cast │ │ │ ├── styleR.md │ │ │ ├── suffix.cast │ │ │ ├── suffix.md │ │ │ ├── suppress.cast │ │ │ ├── suppress.md │ │ │ ├── tag.cast │ │ │ ├── tag.md │ │ │ ├── tagF.cast │ │ │ ├── tagF.md │ │ │ ├── timeout.cast │ │ │ ├── timeout.md │ │ │ ├── unique.cast │ │ │ ├── unique.md │ │ │ ├── uniqueList.md │ │ │ ├── uniqueListF.md │ │ │ ├── uniquelist.cast │ │ │ ├── uniquelistF.cast │ │ │ ├── unless.cast │ │ │ ├── unless.md │ │ │ ├── unlessF.cast │ │ │ ├── unlessF.md │ │ │ ├── usage.cast │ │ │ ├── usage.md │ │ │ └── usageF.md │ │ ├── batch.md │ │ ├── batch │ │ │ ├── ToA.md │ │ │ └── invoke.md │ │ ├── clearCache.md │ │ ├── command.md │ │ ├── command │ │ │ ├── group.cast │ │ │ └── group.md │ │ ├── commands.md │ │ ├── context.md │ │ ├── context │ │ │ ├── abs.md │ │ │ ├── command.md │ │ │ ├── envsubst.md │ │ │ ├── getEnv.md │ │ │ ├── lookupEnv.md │ │ │ └── setEnv.md │ │ ├── customActions.md │ │ ├── defaultActions.md │ │ ├── defaultActions │ │ │ ├── actionCallback.cast │ │ │ ├── actionCallback.md │ │ │ ├── actionCobra.cast │ │ │ ├── actionCobra.md │ │ │ ├── actionCommands.cast │ │ │ ├── actionCommands.md │ │ │ ├── actionDirectories.cast │ │ │ ├── actionDirectories.md │ │ │ ├── actionExecCommand.cast │ │ │ ├── actionExecCommand.md │ │ │ ├── actionExecCommandE.cast │ │ │ ├── actionExecCommandE.md │ │ │ ├── actionExecutables.cast │ │ │ ├── actionExecutables.md │ │ │ ├── actionExecute.cast │ │ │ ├── actionExecute.md │ │ │ ├── actionFiles.cast │ │ │ ├── actionFiles.md │ │ │ ├── actionImport.cast │ │ │ ├── actionImport.md │ │ │ ├── actionMessage.cast │ │ │ ├── actionMessage.md │ │ │ ├── actionMultiParts-nested.cast │ │ │ ├── actionMultiParts.cast │ │ │ ├── actionMultiParts.md │ │ │ ├── actionMultiPartsN.cast │ │ │ ├── actionMultiPartsN.md │ │ │ ├── actionPositional.cast │ │ │ ├── actionPositional.md │ │ │ ├── actionStyleConfig.md │ │ │ ├── actionStyledValues.cast │ │ │ ├── actionStyledValues.md │ │ │ ├── actionStyledValuesDescribed.cast │ │ │ ├── actionStyledValuesDescribed.md │ │ │ ├── actionStyles.cast │ │ │ ├── actionStyles.md │ │ │ ├── actionValues.cast │ │ │ ├── actionValues.md │ │ │ ├── actionValuesDescribed.cast │ │ │ └── actionValuesDescribed.md │ │ ├── env.md │ │ ├── expect.md │ │ ├── expectNot.md │ │ ├── export.cast │ │ ├── export.md │ │ ├── files.md │ │ ├── gen.md │ │ ├── gen │ │ │ ├── dashAnyCompletion.md │ │ │ ├── dashCompletion.md │ │ │ ├── flagCompletion.md │ │ │ ├── positionalAnyCompletion.md │ │ │ ├── positionalCompletion.md │ │ │ ├── preInvoke.cast │ │ │ ├── preInvoke.md │ │ │ ├── preRun.cast │ │ │ ├── preRun.md │ │ │ ├── snippet.md │ │ │ └── standalone.md │ │ ├── invokedAction.md │ │ ├── invokedAction │ │ │ ├── filter.md │ │ │ ├── merge.md │ │ │ ├── prefix.md │ │ │ ├── retain.md │ │ │ ├── suffix.md │ │ │ ├── toA.md │ │ │ └── toMultiPartsA.md │ │ ├── invokedBatch.md │ │ ├── invokedBatch │ │ │ └── merge.md │ │ ├── keep.md │ │ ├── newContext.md │ │ ├── output.md │ │ ├── reply.md │ │ ├── reply │ │ │ └── with.md │ │ ├── run.md │ │ ├── sandbox.md │ │ ├── standalone.md │ │ └── standalone │ │ │ ├── carapace-parse.md │ │ │ └── pflag.md │ ├── development.md │ └── development │ │ ├── additionalInformation.md │ │ ├── asciinema.md │ │ ├── shells.md │ │ ├── shells │ │ ├── bash.md │ │ ├── elvish.md │ │ ├── fish.md │ │ ├── ion.md │ │ ├── nushell.md │ │ ├── oil.md │ │ ├── powershell.md │ │ ├── tcsh.md │ │ ├── xonsh.md │ │ └── zsh.md │ │ ├── testing.md │ │ ├── vhs.md │ │ └── vhs │ │ ├── bash.tape │ │ ├── doubleQuote.md │ │ ├── doubleQuote │ │ ├── doubleQuote.bash.tape │ │ ├── doubleQuote.elvish.tape │ │ ├── doubleQuote.fish.tape │ │ ├── doubleQuote.nushell.tape │ │ ├── doubleQuote.oil.tape │ │ ├── doubleQuote.powershell.tape │ │ ├── doubleQuote.xonsh.tape │ │ ├── doubleQuote.zsh.tape │ │ └── out │ │ │ ├── doubleQuote.bash.ascii │ │ │ ├── doubleQuote.elvish.ascii │ │ │ ├── doubleQuote.fish.ascii │ │ │ ├── doubleQuote.nushell.ascii │ │ │ ├── doubleQuote.oil.ascii │ │ │ ├── doubleQuote.powershell.ascii │ │ │ ├── doubleQuote.xonsh.ascii │ │ │ └── doubleQuote.zsh.ascii │ │ ├── doubleQuoteOpen.md │ │ ├── doubleQuoteOpen │ │ ├── doubleQuoteOpen.bash.tape │ │ ├── doubleQuoteOpen.elvish.tape │ │ ├── doubleQuoteOpen.fish.tape │ │ ├── doubleQuoteOpen.nushell.tape │ │ ├── doubleQuoteOpen.oil.tape │ │ ├── doubleQuoteOpen.powershell.tape │ │ ├── doubleQuoteOpen.xonsh.tape │ │ ├── doubleQuoteOpen.zsh.tape │ │ └── out │ │ │ ├── doubleQuoteOpen.bash.ascii │ │ │ ├── doubleQuoteOpen.elvish.ascii │ │ │ ├── doubleQuoteOpen.fish.ascii │ │ │ ├── doubleQuoteOpen.nushell.ascii │ │ │ ├── doubleQuoteOpen.oil.ascii │ │ │ ├── doubleQuoteOpen.powershell.ascii │ │ │ ├── doubleQuoteOpen.xonsh.ascii │ │ │ └── doubleQuoteOpen.zsh.ascii │ │ ├── doubleQuotePartial.md │ │ ├── doubleQuotePartial │ │ ├── doubleQuotePartial.bash.tape │ │ ├── doubleQuotePartial.elvish.tape │ │ ├── doubleQuotePartial.fish.tape │ │ ├── doubleQuotePartial.nushell.tape │ │ ├── doubleQuotePartial.oil.tape │ │ ├── doubleQuotePartial.powershell.tape │ │ ├── doubleQuotePartial.xonsh.tape │ │ ├── doubleQuotePartial.zsh.tape │ │ └── out │ │ │ ├── doubleQuoteOpen.bash.ascii │ │ │ ├── doubleQuoteOpen.elvish.ascii │ │ │ ├── doubleQuoteOpen.fish.ascii │ │ │ ├── doubleQuoteOpen.nushell.ascii │ │ │ ├── doubleQuoteOpen.oil.ascii │ │ │ ├── doubleQuoteOpen.powershell.ascii │ │ │ ├── doubleQuoteOpen.xonsh.ascii │ │ │ ├── doubleQuoteOpen.zsh.ascii │ │ │ ├── doubleQuotePartial.bash.ascii │ │ │ ├── doubleQuotePartial.elvish.ascii │ │ │ ├── doubleQuotePartial.fish.ascii │ │ │ ├── doubleQuotePartial.nushell.ascii │ │ │ ├── doubleQuotePartial.oil.ascii │ │ │ ├── doubleQuotePartial.powershell.ascii │ │ │ ├── doubleQuotePartial.xonsh.ascii │ │ │ └── doubleQuotePartial.zsh.ascii │ │ ├── elvish.tape │ │ ├── escape.md │ │ ├── escape │ │ ├── escape.bash.tape │ │ ├── escape.elvish.tape │ │ ├── escape.fish.tape │ │ ├── escape.nushell.tape │ │ ├── escape.oil.tape │ │ ├── escape.powershell.tape │ │ ├── escape.xonsh.tape │ │ ├── escape.zsh.tape │ │ └── out │ │ │ ├── escape.bash.ascii │ │ │ ├── escape.elvish.ascii │ │ │ ├── escape.fish.ascii │ │ │ ├── escape.nushell.ascii │ │ │ ├── escape.oil.ascii │ │ │ ├── escape.powershell.ascii │ │ │ ├── escape.xonsh.ascii │ │ │ └── escape.zsh.ascii │ │ ├── fish.tape │ │ ├── nospace.md │ │ ├── nospace │ │ ├── nospace.bash.tape │ │ ├── nospace.elvish.tape │ │ ├── nospace.fish.tape │ │ ├── nospace.nushell.tape │ │ ├── nospace.oil.tape │ │ ├── nospace.powershell.tape │ │ ├── nospace.xonsh.tape │ │ ├── nospace.zsh.tape │ │ └── out │ │ │ ├── nospace.bash.ascii │ │ │ ├── nospace.elvish.ascii │ │ │ ├── nospace.fish.ascii │ │ │ ├── nospace.nushell.ascii │ │ │ ├── nospace.oil.ascii │ │ │ ├── nospace.powershell.ascii │ │ │ ├── nospace.xonsh.ascii │ │ │ └── nospace.zsh.ascii │ │ ├── nushell.tape │ │ ├── oil.tape │ │ ├── powershell.tape │ │ ├── redirect.md │ │ ├── redirect │ │ ├── out │ │ │ ├── redirect.bash.ascii │ │ │ ├── redirect.elvish.ascii │ │ │ ├── redirect.fish.ascii │ │ │ ├── redirect.nushell.ascii │ │ │ ├── redirect.oil.ascii │ │ │ ├── redirect.powershell.ascii │ │ │ ├── redirect.xonsh.ascii │ │ │ └── redirect.zsh.ascii │ │ ├── redirect.bash.tape │ │ ├── redirect.elvish.tape │ │ ├── redirect.fish.tape │ │ ├── redirect.nushell.tape │ │ ├── redirect.oil.tape │ │ ├── redirect.powershell.tape │ │ ├── redirect.xonsh.tape │ │ └── redirect.zsh.tape │ │ ├── singleQuote.md │ │ ├── singleQuote │ │ ├── out │ │ │ ├── singleQuote.bash.ascii │ │ │ ├── singleQuote.elvish.ascii │ │ │ ├── singleQuote.fish.ascii │ │ │ ├── singleQuote.nushell.ascii │ │ │ ├── singleQuote.oil.ascii │ │ │ ├── singleQuote.powershell.ascii │ │ │ ├── singleQuote.xonsh.ascii │ │ │ └── singleQuote.zsh.ascii │ │ ├── singleQuote.bash.tape │ │ ├── singleQuote.elvish.tape │ │ ├── singleQuote.fish.tape │ │ ├── singleQuote.nushell.tape │ │ ├── singleQuote.oil.tape │ │ ├── singleQuote.powershell.tape │ │ ├── singleQuote.xonsh.tape │ │ └── singleQuote.zsh.tape │ │ ├── singleQuoteOpen.md │ │ ├── singleQuoteOpen │ │ ├── out │ │ │ ├── singleQuoteOpen.bash.ascii │ │ │ ├── singleQuoteOpen.elvish.ascii │ │ │ ├── singleQuoteOpen.fish.ascii │ │ │ ├── singleQuoteOpen.nushell.ascii │ │ │ ├── singleQuoteOpen.oil.ascii │ │ │ ├── singleQuoteOpen.powershell.ascii │ │ │ ├── singleQuoteOpen.xonsh.ascii │ │ │ └── singleQuoteOpen.zsh.ascii │ │ ├── singleQuoteOpen.bash.tape │ │ ├── singleQuoteOpen.elvish.tape │ │ ├── singleQuoteOpen.fish.tape │ │ ├── singleQuoteOpen.nushell.tape │ │ ├── singleQuoteOpen.oil.tape │ │ ├── singleQuoteOpen.powershell.tape │ │ ├── singleQuoteOpen.xonsh.tape │ │ └── singleQuoteOpen.zsh.tape │ │ ├── singleQuotePartial.md │ │ ├── singleQuotePartial │ │ ├── out │ │ │ ├── singleQuotePartial.bash.ascii │ │ │ ├── singleQuotePartial.elvish.ascii │ │ │ ├── singleQuotePartial.fish.ascii │ │ │ ├── singleQuotePartial.nushell.ascii │ │ │ ├── singleQuotePartial.oil.ascii │ │ │ ├── singleQuotePartial.powershell.ascii │ │ │ ├── singleQuotePartial.xonsh.ascii │ │ │ └── singleQuotePartial.zsh.ascii │ │ ├── singleQuotePartial.bash.tape │ │ ├── singleQuotePartial.elvish.tape │ │ ├── singleQuotePartial.fish.tape │ │ ├── singleQuotePartial.nushell.tape │ │ ├── singleQuotePartial.oil.tape │ │ ├── singleQuotePartial.powershell.tape │ │ ├── singleQuotePartial.xonsh.tape │ │ └── singleQuotePartial.zsh.tape │ │ ├── special.md │ │ ├── special │ │ ├── out │ │ │ ├── special.bash.ascii │ │ │ ├── special.elvish.ascii │ │ │ ├── special.fish.ascii │ │ │ ├── special.nushell.ascii │ │ │ ├── special.oil.ascii │ │ │ ├── special.powershell.ascii │ │ │ ├── special.xonsh.ascii │ │ │ └── special.zsh.ascii │ │ ├── special.bash.tape │ │ ├── special.elvish.tape │ │ ├── special.fish.tape │ │ ├── special.nushell.tape │ │ ├── special.oil.tape │ │ ├── special.powershell.tape │ │ ├── special.xonsh.tape │ │ └── special.zsh.tape │ │ ├── specialDoubleQuote.md │ │ ├── specialDoubleQuote │ │ ├── out │ │ │ ├── specialDoubleQuote.bash.ascii │ │ │ ├── specialDoubleQuote.elvish.ascii │ │ │ ├── specialDoubleQuote.fish.ascii │ │ │ ├── specialDoubleQuote.nushell.ascii │ │ │ ├── specialDoubleQuote.oil.ascii │ │ │ ├── specialDoubleQuote.powershell.ascii │ │ │ ├── specialDoubleQuote.xonsh.ascii │ │ │ └── specialDoubleQuote.zsh.ascii │ │ ├── specialDoubleQuote.bash.tape │ │ ├── specialDoubleQuote.elvish.tape │ │ ├── specialDoubleQuote.fish.tape │ │ ├── specialDoubleQuote.nushell.tape │ │ ├── specialDoubleQuote.oil.tape │ │ ├── specialDoubleQuote.powershell.tape │ │ ├── specialDoubleQuote.xonsh.tape │ │ └── specialDoubleQuote.zsh.tape │ │ ├── specialSingleQuote.md │ │ ├── specialSingleQuote │ │ ├── out │ │ │ ├── specialSingleQuote.bash.ascii │ │ │ ├── specialSingleQuote.elvish.ascii │ │ │ ├── specialSingleQuote.fish.ascii │ │ │ ├── specialSingleQuote.nushell.ascii │ │ │ ├── specialSingleQuote.oil.ascii │ │ │ ├── specialSingleQuote.powershell.ascii │ │ │ ├── specialSingleQuote.xonsh.ascii │ │ │ └── specialSingleQuote.zsh.ascii │ │ ├── specialSingleQuote.bash.tape │ │ ├── specialSingleQuote.elvish.tape │ │ ├── specialSingleQuote.fish.tape │ │ ├── specialSingleQuote.nushell.tape │ │ ├── specialSingleQuote.oil.tape │ │ ├── specialSingleQuote.powershell.tape │ │ ├── specialSingleQuote.xonsh.tape │ │ └── specialSingleQuote.zsh.tape │ │ ├── word.md │ │ ├── word │ │ ├── out │ │ │ ├── word.bash.ascii │ │ │ ├── word.elvish.ascii │ │ │ ├── word.fish.ascii │ │ │ ├── word.nushell.ascii │ │ │ ├── word.oil.ascii │ │ │ ├── word.powershell.ascii │ │ │ ├── word.xonsh.ascii │ │ │ └── word.zsh.ascii │ │ ├── word.bash.tape │ │ ├── word.elvish.tape │ │ ├── word.fish.tape │ │ ├── word.nushell.tape │ │ ├── word.oil.tape │ │ ├── word.powershell.tape │ │ ├── word.xonsh.tape │ │ └── word.zsh.tape │ │ ├── xonsh.tape │ │ └── zsh.tape └── theme │ ├── catppuccin.css │ └── index.hbs ├── example-nonposix ├── cmd │ ├── root.go │ └── root_test.go ├── go.mod ├── go.sum └── main.go ├── example ├── README.md ├── cmd │ ├── _test │ │ ├── bash-ble.sh │ │ ├── bash.sh │ │ ├── cmd-clink.lua │ │ ├── elvish.elv │ │ ├── fish.fish │ │ ├── nushell.nu │ │ ├── oil.sh │ │ ├── powershell.ps1 │ │ ├── xonsh.py │ │ └── zsh.sh │ ├── _test_files │ │ ├── files_linux.go │ │ └── go.mod │ ├── action.go │ ├── action_test.go │ ├── chain.go │ ├── chain_test.go │ ├── compat.go │ ├── compat_sub.go │ ├── compat_sub_test.go │ ├── compat_test.go │ ├── flag.go │ ├── flag_disabled.go │ ├── flag_disabled_test.go │ ├── flag_test.go │ ├── group.go │ ├── help_test.go │ ├── interspersed.go │ ├── interspersed_test.go │ ├── modifier.go │ ├── modifier_test.go │ ├── multiparts.go │ ├── multiparts_test.go │ ├── root.go │ ├── root_test.go │ ├── special.go │ ├── special_test.go │ ├── subcommand.go │ ├── subcommand_alias.go │ ├── subcommand_group.go │ ├── subcommand_hidden.go │ ├── subcommand_hidden_visible.go │ └── subcommand_test.go ├── main.go └── main_test.go ├── experimental.go ├── go.mod ├── go.sum ├── go.work ├── go.work.sum ├── internal ├── cache │ └── cache.go ├── common │ ├── dash.go │ ├── dash_test.go │ ├── group.go │ ├── message.go │ ├── meta.go │ ├── mock.go │ ├── query.go │ ├── suffix.go │ ├── suffix_test.go │ ├── value.go │ └── value_test.go ├── config │ └── config.go ├── env │ └── env.go ├── export │ └── export.go ├── log │ └── log.go ├── man │ └── man.go ├── pflagfork │ ├── flag.go │ ├── flagset.go │ └── flagset_test.go ├── shell │ ├── bash │ │ ├── action.go │ │ ├── patch.go │ │ └── snippet.go │ ├── bash_ble │ │ ├── action.go │ │ └── snippet.go │ ├── cmd_clink │ │ ├── action.go │ │ ├── patch.go │ │ └── snippet.go │ ├── elvish │ │ ├── action.go │ │ └── snippet.go │ ├── export │ │ ├── action.go │ │ └── snippet.go │ ├── fish │ │ ├── action.go │ │ └── snippet.go │ ├── ion │ │ ├── action.go │ │ └── snippet.go │ ├── nushell │ │ ├── action.go │ │ ├── patch.go │ │ ├── snippet.go │ │ └── style.go │ ├── oil │ │ ├── action.go │ │ └── snippet.go │ ├── powershell │ │ ├── action.go │ │ └── snippet.go │ ├── shell.go │ ├── tcsh │ │ ├── action.go │ │ └── snippet.go │ ├── xonsh │ │ ├── action.go │ │ ├── snippet.go │ │ └── style.go │ └── zsh │ │ ├── action.go │ │ ├── message.go │ │ ├── namedDirectory.go │ │ ├── snippet.go │ │ ├── special.sh │ │ └── zstyle.go └── spec │ ├── command.go │ └── spec.go ├── internalActions.go ├── invokedAction.go ├── invokedAction_test.go ├── log.go ├── pkg ├── assert │ └── assert.go ├── cache │ ├── cache.go │ └── key │ │ └── cache.go ├── condition │ └── condition.go ├── execlog │ └── execlog.go ├── match │ └── match.go ├── ps │ └── ps.go ├── sandbox │ ├── sandbox.go │ └── sandbox_test.go ├── style │ ├── config.go │ ├── keyword.go │ ├── loglevel.go │ ├── path.go │ └── style.go ├── traverse │ ├── git.go │ ├── golang.go │ ├── nix.go │ ├── os.go │ ├── traverse.go │ └── xdg.go ├── uid │ ├── path.go │ ├── uid.go │ └── uid_test.go ├── util │ └── util.go ├── x │ └── x.go └── xdg │ └── xdg.go ├── storage.go ├── storage_test.go ├── third_party ├── github.com │ ├── Valodim │ │ └── zsh-capture-completion │ │ │ ├── LICENSE │ │ │ └── capture.zsh │ ├── acarl005 │ │ └── stripansi │ │ │ ├── LICENSE │ │ │ └── stripansi.go │ ├── drone │ │ └── envsubst │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eval.go │ │ │ ├── eval_test.go │ │ │ ├── funcs.go │ │ │ ├── funcs_test.go │ │ │ ├── parse │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── scan.go │ │ │ └── scan_test.go │ │ │ ├── path │ │ │ └── match.go │ │ │ └── template.go │ ├── elves │ │ └── elvish │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ ├── cli │ │ │ └── lscolors │ │ │ │ ├── feature.go │ │ │ │ ├── lscolors.go │ │ │ │ ├── stat_notsolaris.go │ │ │ │ ├── stat_solaris.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── stat_windows.go │ │ │ │ └── util.go │ │ │ └── ui │ │ │ ├── color.go │ │ │ ├── parse_sgr.go │ │ │ ├── style.go │ │ │ └── styling.go │ ├── hexops │ │ └── gotextdiff │ │ │ ├── LICENSE │ │ │ ├── diff.go │ │ │ ├── myers │ │ │ └── diff.go │ │ │ ├── span │ │ │ ├── parse.go │ │ │ ├── span.go │ │ │ ├── token.go │ │ │ ├── token111.go │ │ │ ├── token112.go │ │ │ ├── uri.go │ │ │ └── utf16.go │ │ │ └── unified.go │ └── mitchellh │ │ └── go-ps │ │ ├── LICENSE.md │ │ ├── process.go │ │ ├── process_darwin.go │ │ ├── process_darwin_test.go │ │ ├── process_freebsd.go │ │ ├── process_linux.go │ │ ├── process_solaris.go │ │ ├── process_test.go │ │ ├── process_unix.go │ │ ├── process_unix_test.go │ │ └── process_windows.go └── golang.org │ └── x │ └── sys │ ├── LICENSE │ ├── PATENTS │ └── execabs │ └── execabs.go └── traverse.go /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !.dockerfile 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/ISSUE_TEMPLATE/request.yaml -------------------------------------------------------------------------------- /.github/advanced-issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/advanced-issue-labeler.yml -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- 1 | paths-ignore: 2 | - third_party 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/workflows/issue-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/vhs-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/workflows/vhs-template.yml -------------------------------------------------------------------------------- /.github/workflows/vhs.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.github/workflows/vhs.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE.appendix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/LICENSE.appendix -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/README.md -------------------------------------------------------------------------------- /action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/action.go -------------------------------------------------------------------------------- /action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/action_test.go -------------------------------------------------------------------------------- /batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/batch.go -------------------------------------------------------------------------------- /batch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/batch_test.go -------------------------------------------------------------------------------- /carapace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/carapace.go -------------------------------------------------------------------------------- /carapace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/carapace_test.go -------------------------------------------------------------------------------- /command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/command.go -------------------------------------------------------------------------------- /compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/compat.go -------------------------------------------------------------------------------- /compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/compat_test.go -------------------------------------------------------------------------------- /complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/complete.go -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/compose.yaml -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/context.go -------------------------------------------------------------------------------- /context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/context_test.go -------------------------------------------------------------------------------- /defaultActions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/defaultActions.go -------------------------------------------------------------------------------- /defaultActions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/defaultActions_test.go -------------------------------------------------------------------------------- /diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/diff.go -------------------------------------------------------------------------------- /diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/diff_test.go -------------------------------------------------------------------------------- /docs/asciinema/asciinema-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/asciinema/asciinema-player.css -------------------------------------------------------------------------------- /docs/asciinema/asciinema-player.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/asciinema/asciinema-player.min.js -------------------------------------------------------------------------------- /docs/asciinema/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/asciinema/load.js -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/book.toml -------------------------------------------------------------------------------- /docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /docs/src/carapace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace.md -------------------------------------------------------------------------------- /docs/src/carapace/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action.md -------------------------------------------------------------------------------- /docs/src/carapace/action/cache-key.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/cache-key.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/cache.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/cache.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/cache.md -------------------------------------------------------------------------------- /docs/src/carapace/action/chdir.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/chdir.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/chdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/chdir.md -------------------------------------------------------------------------------- /docs/src/carapace/action/chdirF.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/chdirF.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/chdirF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/chdirF.md -------------------------------------------------------------------------------- /docs/src/carapace/action/filter.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/filter.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/filter.md -------------------------------------------------------------------------------- /docs/src/carapace/action/filterArgs.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/filterArgs.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/filterArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/filterArgs.md -------------------------------------------------------------------------------- /docs/src/carapace/action/filterParts.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/filterParts.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/filterParts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/filterParts.md -------------------------------------------------------------------------------- /docs/src/carapace/action/invoke.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/invoke.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/invoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/invoke.md -------------------------------------------------------------------------------- /docs/src/carapace/action/list.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/list.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/list.md -------------------------------------------------------------------------------- /docs/src/carapace/action/multiParts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/multiParts.md -------------------------------------------------------------------------------- /docs/src/carapace/action/multiPartsP.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/multiPartsP.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/multiPartsP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/multiPartsP.md -------------------------------------------------------------------------------- /docs/src/carapace/action/multiparts.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/multiparts.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/noSpace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/noSpace.md -------------------------------------------------------------------------------- /docs/src/carapace/action/nospace.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/nospace.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/prefix.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/prefix.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/prefix.md -------------------------------------------------------------------------------- /docs/src/carapace/action/retain.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/retain.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/retain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/retain.md -------------------------------------------------------------------------------- /docs/src/carapace/action/shift.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/shift.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/shift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/shift.md -------------------------------------------------------------------------------- /docs/src/carapace/action/split.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/split.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/split.md -------------------------------------------------------------------------------- /docs/src/carapace/action/splitP.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/splitP.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/splitP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/splitP.md -------------------------------------------------------------------------------- /docs/src/carapace/action/style.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/style.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/style.md -------------------------------------------------------------------------------- /docs/src/carapace/action/styleF.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/styleF.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/styleF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/styleF.md -------------------------------------------------------------------------------- /docs/src/carapace/action/styleR.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/styleR.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/styleR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/styleR.md -------------------------------------------------------------------------------- /docs/src/carapace/action/suffix.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/suffix.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/suffix.md -------------------------------------------------------------------------------- /docs/src/carapace/action/suppress.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/suppress.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/suppress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/suppress.md -------------------------------------------------------------------------------- /docs/src/carapace/action/tag.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/tag.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/tag.md -------------------------------------------------------------------------------- /docs/src/carapace/action/tagF.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/tagF.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/tagF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/tagF.md -------------------------------------------------------------------------------- /docs/src/carapace/action/timeout.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/timeout.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/timeout.md -------------------------------------------------------------------------------- /docs/src/carapace/action/unique.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/unique.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/unique.md -------------------------------------------------------------------------------- /docs/src/carapace/action/uniqueList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/uniqueList.md -------------------------------------------------------------------------------- /docs/src/carapace/action/uniqueListF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/uniqueListF.md -------------------------------------------------------------------------------- /docs/src/carapace/action/uniquelist.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/uniquelist.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/uniquelistF.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/uniquelistF.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/unless.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/unless.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/unless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/unless.md -------------------------------------------------------------------------------- /docs/src/carapace/action/unlessF.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/unlessF.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/unlessF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/unlessF.md -------------------------------------------------------------------------------- /docs/src/carapace/action/usage.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/usage.cast -------------------------------------------------------------------------------- /docs/src/carapace/action/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/action/usage.md -------------------------------------------------------------------------------- /docs/src/carapace/action/usageF.md: -------------------------------------------------------------------------------- 1 | # UsageF 2 | -------------------------------------------------------------------------------- /docs/src/carapace/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/batch.md -------------------------------------------------------------------------------- /docs/src/carapace/batch/ToA.md: -------------------------------------------------------------------------------- 1 | # ToA 2 | -------------------------------------------------------------------------------- /docs/src/carapace/batch/invoke.md: -------------------------------------------------------------------------------- 1 | # Invoke 2 | -------------------------------------------------------------------------------- /docs/src/carapace/clearCache.md: -------------------------------------------------------------------------------- 1 | # ClearCache 2 | -------------------------------------------------------------------------------- /docs/src/carapace/command.md: -------------------------------------------------------------------------------- 1 | # Command 2 | -------------------------------------------------------------------------------- /docs/src/carapace/command/group.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/command/group.cast -------------------------------------------------------------------------------- /docs/src/carapace/command/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/command/group.md -------------------------------------------------------------------------------- /docs/src/carapace/commands.md: -------------------------------------------------------------------------------- 1 | # Commands 2 | -------------------------------------------------------------------------------- /docs/src/carapace/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/context.md -------------------------------------------------------------------------------- /docs/src/carapace/context/abs.md: -------------------------------------------------------------------------------- 1 | # Abs 2 | -------------------------------------------------------------------------------- /docs/src/carapace/context/command.md: -------------------------------------------------------------------------------- 1 | # Command 2 | -------------------------------------------------------------------------------- /docs/src/carapace/context/envsubst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/context/envsubst.md -------------------------------------------------------------------------------- /docs/src/carapace/context/getEnv.md: -------------------------------------------------------------------------------- 1 | # GetEnv 2 | -------------------------------------------------------------------------------- /docs/src/carapace/context/lookupEnv.md: -------------------------------------------------------------------------------- 1 | # LookupEnv 2 | -------------------------------------------------------------------------------- /docs/src/carapace/context/setEnv.md: -------------------------------------------------------------------------------- 1 | # SetEnv 2 | -------------------------------------------------------------------------------- /docs/src/carapace/customActions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/customActions.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions.md: -------------------------------------------------------------------------------- 1 | # DefaultActions 2 | -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionCallback.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionCallback.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionCallback.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionCobra.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionCobra.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionCobra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionCobra.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionCommands.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionCommands.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionCommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionCommands.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionDirectories.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionDirectories.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionDirectories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionDirectories.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecCommand.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecCommand.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecCommand.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecCommandE.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecCommandE.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecCommandE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecCommandE.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecutables.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecutables.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecutables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecutables.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecute.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecute.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionExecute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionExecute.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionFiles.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionFiles.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionFiles.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionImport.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionImport.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionImport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionImport.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionMessage.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionMessage.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionMessage.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionMultiParts-nested.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionMultiParts-nested.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionMultiParts.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionMultiParts.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionMultiParts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionMultiParts.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionMultiPartsN.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionMultiPartsN.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionMultiPartsN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionMultiPartsN.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionPositional.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionPositional.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionPositional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionPositional.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionStyleConfig.md: -------------------------------------------------------------------------------- 1 | # ActionStyleConfig 2 | -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionStyledValues.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionStyledValues.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionStyledValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionStyledValues.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionStyledValuesDescribed.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionStyledValuesDescribed.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionStyledValuesDescribed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionStyledValuesDescribed.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionStyles.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionStyles.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionStyles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionStyles.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionValues.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionValues.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionValues.md -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionValuesDescribed.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionValuesDescribed.cast -------------------------------------------------------------------------------- /docs/src/carapace/defaultActions/actionValuesDescribed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/defaultActions/actionValuesDescribed.md -------------------------------------------------------------------------------- /docs/src/carapace/env.md: -------------------------------------------------------------------------------- 1 | # Env 2 | -------------------------------------------------------------------------------- /docs/src/carapace/expect.md: -------------------------------------------------------------------------------- 1 | # Expect 2 | -------------------------------------------------------------------------------- /docs/src/carapace/expectNot.md: -------------------------------------------------------------------------------- 1 | # ExpectNot 2 | -------------------------------------------------------------------------------- /docs/src/carapace/export.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/export.cast -------------------------------------------------------------------------------- /docs/src/carapace/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/export.md -------------------------------------------------------------------------------- /docs/src/carapace/files.md: -------------------------------------------------------------------------------- 1 | # Files 2 | -------------------------------------------------------------------------------- /docs/src/carapace/gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/dashAnyCompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/dashAnyCompletion.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/dashCompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/dashCompletion.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/flagCompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/flagCompletion.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/positionalAnyCompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/positionalAnyCompletion.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/positionalCompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/positionalCompletion.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/preInvoke.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/preInvoke.cast -------------------------------------------------------------------------------- /docs/src/carapace/gen/preInvoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/preInvoke.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/preRun.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/preRun.cast -------------------------------------------------------------------------------- /docs/src/carapace/gen/preRun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/gen/preRun.md -------------------------------------------------------------------------------- /docs/src/carapace/gen/snippet.md: -------------------------------------------------------------------------------- 1 | # Snippet 2 | -------------------------------------------------------------------------------- /docs/src/carapace/gen/standalone.md: -------------------------------------------------------------------------------- 1 | # Standalone 2 | -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/invokedAction.md -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/invokedAction/filter.md -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction/merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/invokedAction/merge.md -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction/prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/invokedAction/prefix.md -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction/retain.md: -------------------------------------------------------------------------------- 1 | # Retain 2 | -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction/suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/invokedAction/suffix.md -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction/toA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/invokedAction/toA.md -------------------------------------------------------------------------------- /docs/src/carapace/invokedAction/toMultiPartsA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/invokedAction/toMultiPartsA.md -------------------------------------------------------------------------------- /docs/src/carapace/invokedBatch.md: -------------------------------------------------------------------------------- 1 | # InvokedBatch 2 | -------------------------------------------------------------------------------- /docs/src/carapace/invokedBatch/merge.md: -------------------------------------------------------------------------------- 1 | # Merge 2 | -------------------------------------------------------------------------------- /docs/src/carapace/keep.md: -------------------------------------------------------------------------------- 1 | # Env 2 | -------------------------------------------------------------------------------- /docs/src/carapace/newContext.md: -------------------------------------------------------------------------------- 1 | # NewContext 2 | -------------------------------------------------------------------------------- /docs/src/carapace/output.md: -------------------------------------------------------------------------------- 1 | # Output 2 | -------------------------------------------------------------------------------- /docs/src/carapace/reply.md: -------------------------------------------------------------------------------- 1 | # Reply 2 | -------------------------------------------------------------------------------- /docs/src/carapace/reply/with.md: -------------------------------------------------------------------------------- 1 | # With 2 | -------------------------------------------------------------------------------- /docs/src/carapace/run.md: -------------------------------------------------------------------------------- 1 | # Run 2 | -------------------------------------------------------------------------------- /docs/src/carapace/sandbox.md: -------------------------------------------------------------------------------- 1 | # Sandbox 2 | -------------------------------------------------------------------------------- /docs/src/carapace/standalone.md: -------------------------------------------------------------------------------- 1 | # Standalone 2 | -------------------------------------------------------------------------------- /docs/src/carapace/standalone/carapace-parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/carapace/standalone/carapace-parse.md -------------------------------------------------------------------------------- /docs/src/carapace/standalone/pflag.md: -------------------------------------------------------------------------------- 1 | # pflag 2 | -------------------------------------------------------------------------------- /docs/src/development.md: -------------------------------------------------------------------------------- 1 | # development 2 | 3 | > WIP 4 | -------------------------------------------------------------------------------- /docs/src/development/additionalInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/additionalInformation.md -------------------------------------------------------------------------------- /docs/src/development/asciinema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/asciinema.md -------------------------------------------------------------------------------- /docs/src/development/shells.md: -------------------------------------------------------------------------------- 1 | # Shells 2 | -------------------------------------------------------------------------------- /docs/src/development/shells/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/shells/bash.md -------------------------------------------------------------------------------- /docs/src/development/shells/elvish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/shells/elvish.md -------------------------------------------------------------------------------- /docs/src/development/shells/fish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/shells/fish.md -------------------------------------------------------------------------------- /docs/src/development/shells/ion.md: -------------------------------------------------------------------------------- 1 | # Ion 2 | -------------------------------------------------------------------------------- /docs/src/development/shells/nushell.md: -------------------------------------------------------------------------------- 1 | # Nushell 2 | -------------------------------------------------------------------------------- /docs/src/development/shells/oil.md: -------------------------------------------------------------------------------- 1 | # Oil 2 | -------------------------------------------------------------------------------- /docs/src/development/shells/powershell.md: -------------------------------------------------------------------------------- 1 | # Powershell 2 | -------------------------------------------------------------------------------- /docs/src/development/shells/tcsh.md: -------------------------------------------------------------------------------- 1 | # Tcsh 2 | -------------------------------------------------------------------------------- /docs/src/development/shells/xonsh.md: -------------------------------------------------------------------------------- 1 | # Xonsh 2 | -------------------------------------------------------------------------------- /docs/src/development/shells/zsh.md: -------------------------------------------------------------------------------- 1 | # Zsh 2 | -------------------------------------------------------------------------------- /docs/src/development/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/testing.md -------------------------------------------------------------------------------- /docs/src/development/vhs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs.md -------------------------------------------------------------------------------- /docs/src/development/vhs/bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote.md -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/doubleQuote.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/doubleQuote.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuote/out/doubleQuote.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuote/out/doubleQuote.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen.md -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/doubleQuoteOpen.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuoteOpen/out/doubleQuoteOpen.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial.md -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/doubleQuotePartial.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuoteOpen.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/doubleQuotePartial/out/doubleQuotePartial.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape.md -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/escape.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/escape.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/escape/out/escape.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/escape/out/escape.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace.md -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/nospace.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/nospace.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nospace/out/nospace.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nospace/out/nospace.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect.md -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/out/redirect.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/out/redirect.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/redirect/redirect.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/redirect/redirect.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote.md -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/out/singleQuote.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/out/singleQuote.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuote/singleQuote.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuote/singleQuote.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen.md -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/out/singleQuoteOpen.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuoteOpen/singleQuoteOpen.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial.md -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/out/singleQuotePartial.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/singleQuotePartial/singleQuotePartial.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/singleQuotePartial/singleQuotePartial.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special.md -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/out/special.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/out/special.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/special/special.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/special/special.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote.md -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/out/specialDoubleQuote.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialDoubleQuote/specialDoubleQuote.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote.md -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/out/specialSingleQuote.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/specialSingleQuote/specialSingleQuote.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/specialSingleQuote/specialSingleQuote.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word.md -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.bash.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.bash.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.elvish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.elvish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.fish.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.fish.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.nushell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.nushell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.oil.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.oil.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.powershell.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.powershell.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.xonsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.xonsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/out/word.zsh.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/out/word.zsh.ascii -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.bash.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.bash.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.elvish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.elvish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.fish.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.fish.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.nushell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.nushell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.oil.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.oil.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.powershell.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.powershell.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/word/word.zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/word/word.zsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/xonsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/xonsh.tape -------------------------------------------------------------------------------- /docs/src/development/vhs/zsh.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/src/development/vhs/zsh.tape -------------------------------------------------------------------------------- /docs/theme/catppuccin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/theme/catppuccin.css -------------------------------------------------------------------------------- /docs/theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/docs/theme/index.hbs -------------------------------------------------------------------------------- /example-nonposix/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example-nonposix/cmd/root.go -------------------------------------------------------------------------------- /example-nonposix/cmd/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example-nonposix/cmd/root_test.go -------------------------------------------------------------------------------- /example-nonposix/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example-nonposix/go.mod -------------------------------------------------------------------------------- /example-nonposix/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example-nonposix/go.sum -------------------------------------------------------------------------------- /example-nonposix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example-nonposix/main.go -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/README.md -------------------------------------------------------------------------------- /example/cmd/_test/bash-ble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/bash-ble.sh -------------------------------------------------------------------------------- /example/cmd/_test/bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/bash.sh -------------------------------------------------------------------------------- /example/cmd/_test/cmd-clink.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/cmd-clink.lua -------------------------------------------------------------------------------- /example/cmd/_test/elvish.elv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/elvish.elv -------------------------------------------------------------------------------- /example/cmd/_test/fish.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/fish.fish -------------------------------------------------------------------------------- /example/cmd/_test/nushell.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/nushell.nu -------------------------------------------------------------------------------- /example/cmd/_test/oil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/oil.sh -------------------------------------------------------------------------------- /example/cmd/_test/powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/powershell.ps1 -------------------------------------------------------------------------------- /example/cmd/_test/xonsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/xonsh.py -------------------------------------------------------------------------------- /example/cmd/_test/zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test/zsh.sh -------------------------------------------------------------------------------- /example/cmd/_test_files/files_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test_files/files_linux.go -------------------------------------------------------------------------------- /example/cmd/_test_files/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/_test_files/go.mod -------------------------------------------------------------------------------- /example/cmd/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/action.go -------------------------------------------------------------------------------- /example/cmd/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/action_test.go -------------------------------------------------------------------------------- /example/cmd/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/chain.go -------------------------------------------------------------------------------- /example/cmd/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/chain_test.go -------------------------------------------------------------------------------- /example/cmd/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/compat.go -------------------------------------------------------------------------------- /example/cmd/compat_sub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/compat_sub.go -------------------------------------------------------------------------------- /example/cmd/compat_sub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/compat_sub_test.go -------------------------------------------------------------------------------- /example/cmd/compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/compat_test.go -------------------------------------------------------------------------------- /example/cmd/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/flag.go -------------------------------------------------------------------------------- /example/cmd/flag_disabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/flag_disabled.go -------------------------------------------------------------------------------- /example/cmd/flag_disabled_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/flag_disabled_test.go -------------------------------------------------------------------------------- /example/cmd/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/flag_test.go -------------------------------------------------------------------------------- /example/cmd/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/group.go -------------------------------------------------------------------------------- /example/cmd/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/help_test.go -------------------------------------------------------------------------------- /example/cmd/interspersed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/interspersed.go -------------------------------------------------------------------------------- /example/cmd/interspersed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/interspersed_test.go -------------------------------------------------------------------------------- /example/cmd/modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/modifier.go -------------------------------------------------------------------------------- /example/cmd/modifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/modifier_test.go -------------------------------------------------------------------------------- /example/cmd/multiparts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/multiparts.go -------------------------------------------------------------------------------- /example/cmd/multiparts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/multiparts_test.go -------------------------------------------------------------------------------- /example/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/root.go -------------------------------------------------------------------------------- /example/cmd/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/root_test.go -------------------------------------------------------------------------------- /example/cmd/special.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/special.go -------------------------------------------------------------------------------- /example/cmd/special_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/special_test.go -------------------------------------------------------------------------------- /example/cmd/subcommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/subcommand.go -------------------------------------------------------------------------------- /example/cmd/subcommand_alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/subcommand_alias.go -------------------------------------------------------------------------------- /example/cmd/subcommand_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/subcommand_group.go -------------------------------------------------------------------------------- /example/cmd/subcommand_hidden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/subcommand_hidden.go -------------------------------------------------------------------------------- /example/cmd/subcommand_hidden_visible.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/subcommand_hidden_visible.go -------------------------------------------------------------------------------- /example/cmd/subcommand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/cmd/subcommand_test.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/main.go -------------------------------------------------------------------------------- /example/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/example/main_test.go -------------------------------------------------------------------------------- /experimental.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/experimental.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- 1 | go 1.19 2 | 3 | use ( 4 | . 5 | ./example-nonposix 6 | ) 7 | -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/go.work.sum -------------------------------------------------------------------------------- /internal/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/cache/cache.go -------------------------------------------------------------------------------- /internal/common/dash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/dash.go -------------------------------------------------------------------------------- /internal/common/dash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/dash_test.go -------------------------------------------------------------------------------- /internal/common/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/group.go -------------------------------------------------------------------------------- /internal/common/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/message.go -------------------------------------------------------------------------------- /internal/common/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/meta.go -------------------------------------------------------------------------------- /internal/common/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/mock.go -------------------------------------------------------------------------------- /internal/common/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/query.go -------------------------------------------------------------------------------- /internal/common/suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/suffix.go -------------------------------------------------------------------------------- /internal/common/suffix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/suffix_test.go -------------------------------------------------------------------------------- /internal/common/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/value.go -------------------------------------------------------------------------------- /internal/common/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/common/value_test.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/env/env.go -------------------------------------------------------------------------------- /internal/export/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/export/export.go -------------------------------------------------------------------------------- /internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/log/log.go -------------------------------------------------------------------------------- /internal/man/man.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/man/man.go -------------------------------------------------------------------------------- /internal/pflagfork/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/pflagfork/flag.go -------------------------------------------------------------------------------- /internal/pflagfork/flagset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/pflagfork/flagset.go -------------------------------------------------------------------------------- /internal/pflagfork/flagset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/pflagfork/flagset_test.go -------------------------------------------------------------------------------- /internal/shell/bash/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/bash/action.go -------------------------------------------------------------------------------- /internal/shell/bash/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/bash/patch.go -------------------------------------------------------------------------------- /internal/shell/bash/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/bash/snippet.go -------------------------------------------------------------------------------- /internal/shell/bash_ble/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/bash_ble/action.go -------------------------------------------------------------------------------- /internal/shell/bash_ble/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/bash_ble/snippet.go -------------------------------------------------------------------------------- /internal/shell/cmd_clink/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/cmd_clink/action.go -------------------------------------------------------------------------------- /internal/shell/cmd_clink/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/cmd_clink/patch.go -------------------------------------------------------------------------------- /internal/shell/cmd_clink/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/cmd_clink/snippet.go -------------------------------------------------------------------------------- /internal/shell/elvish/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/elvish/action.go -------------------------------------------------------------------------------- /internal/shell/elvish/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/elvish/snippet.go -------------------------------------------------------------------------------- /internal/shell/export/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/export/action.go -------------------------------------------------------------------------------- /internal/shell/export/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/export/snippet.go -------------------------------------------------------------------------------- /internal/shell/fish/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/fish/action.go -------------------------------------------------------------------------------- /internal/shell/fish/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/fish/snippet.go -------------------------------------------------------------------------------- /internal/shell/ion/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/ion/action.go -------------------------------------------------------------------------------- /internal/shell/ion/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/ion/snippet.go -------------------------------------------------------------------------------- /internal/shell/nushell/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/nushell/action.go -------------------------------------------------------------------------------- /internal/shell/nushell/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/nushell/patch.go -------------------------------------------------------------------------------- /internal/shell/nushell/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/nushell/snippet.go -------------------------------------------------------------------------------- /internal/shell/nushell/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/nushell/style.go -------------------------------------------------------------------------------- /internal/shell/oil/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/oil/action.go -------------------------------------------------------------------------------- /internal/shell/oil/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/oil/snippet.go -------------------------------------------------------------------------------- /internal/shell/powershell/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/powershell/action.go -------------------------------------------------------------------------------- /internal/shell/powershell/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/powershell/snippet.go -------------------------------------------------------------------------------- /internal/shell/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/shell.go -------------------------------------------------------------------------------- /internal/shell/tcsh/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/tcsh/action.go -------------------------------------------------------------------------------- /internal/shell/tcsh/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/tcsh/snippet.go -------------------------------------------------------------------------------- /internal/shell/xonsh/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/xonsh/action.go -------------------------------------------------------------------------------- /internal/shell/xonsh/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/xonsh/snippet.go -------------------------------------------------------------------------------- /internal/shell/xonsh/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/xonsh/style.go -------------------------------------------------------------------------------- /internal/shell/zsh/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/zsh/action.go -------------------------------------------------------------------------------- /internal/shell/zsh/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/zsh/message.go -------------------------------------------------------------------------------- /internal/shell/zsh/namedDirectory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/zsh/namedDirectory.go -------------------------------------------------------------------------------- /internal/shell/zsh/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/zsh/snippet.go -------------------------------------------------------------------------------- /internal/shell/zsh/special.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/zsh/special.sh -------------------------------------------------------------------------------- /internal/shell/zsh/zstyle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/shell/zsh/zstyle.go -------------------------------------------------------------------------------- /internal/spec/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/spec/command.go -------------------------------------------------------------------------------- /internal/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internal/spec/spec.go -------------------------------------------------------------------------------- /internalActions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/internalActions.go -------------------------------------------------------------------------------- /invokedAction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/invokedAction.go -------------------------------------------------------------------------------- /invokedAction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/invokedAction_test.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/log.go -------------------------------------------------------------------------------- /pkg/assert/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/assert/assert.go -------------------------------------------------------------------------------- /pkg/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/cache/cache.go -------------------------------------------------------------------------------- /pkg/cache/key/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/cache/key/cache.go -------------------------------------------------------------------------------- /pkg/condition/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/condition/condition.go -------------------------------------------------------------------------------- /pkg/execlog/execlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/execlog/execlog.go -------------------------------------------------------------------------------- /pkg/match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/match/match.go -------------------------------------------------------------------------------- /pkg/ps/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/ps/ps.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/sandbox/sandbox.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/sandbox/sandbox_test.go -------------------------------------------------------------------------------- /pkg/style/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/style/config.go -------------------------------------------------------------------------------- /pkg/style/keyword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/style/keyword.go -------------------------------------------------------------------------------- /pkg/style/loglevel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/style/loglevel.go -------------------------------------------------------------------------------- /pkg/style/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/style/path.go -------------------------------------------------------------------------------- /pkg/style/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/style/style.go -------------------------------------------------------------------------------- /pkg/traverse/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/traverse/git.go -------------------------------------------------------------------------------- /pkg/traverse/golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/traverse/golang.go -------------------------------------------------------------------------------- /pkg/traverse/nix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/traverse/nix.go -------------------------------------------------------------------------------- /pkg/traverse/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/traverse/os.go -------------------------------------------------------------------------------- /pkg/traverse/traverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/traverse/traverse.go -------------------------------------------------------------------------------- /pkg/traverse/xdg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/traverse/xdg.go -------------------------------------------------------------------------------- /pkg/uid/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/uid/path.go -------------------------------------------------------------------------------- /pkg/uid/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/uid/uid.go -------------------------------------------------------------------------------- /pkg/uid/uid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/uid/uid_test.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /pkg/x/x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/x/x.go -------------------------------------------------------------------------------- /pkg/xdg/xdg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/pkg/xdg/xdg.go -------------------------------------------------------------------------------- /storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/storage.go -------------------------------------------------------------------------------- /storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/storage_test.go -------------------------------------------------------------------------------- /third_party/github.com/Valodim/zsh-capture-completion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/Valodim/zsh-capture-completion/LICENSE -------------------------------------------------------------------------------- /third_party/github.com/Valodim/zsh-capture-completion/capture.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/Valodim/zsh-capture-completion/capture.zsh -------------------------------------------------------------------------------- /third_party/github.com/acarl005/stripansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/acarl005/stripansi/LICENSE -------------------------------------------------------------------------------- /third_party/github.com/acarl005/stripansi/stripansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/acarl005/stripansi/stripansi.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/LICENSE -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/README.md -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/eval.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/eval_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/eval_test.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/funcs.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/funcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/funcs_test.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/parse/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/parse/node.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/parse/parse.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/parse/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/parse/scan.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/parse/scan_test.go: -------------------------------------------------------------------------------- 1 | package parse 2 | -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/path/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/path/match.go -------------------------------------------------------------------------------- /third_party/github.com/drone/envsubst/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/drone/envsubst/template.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/LICENSE -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/cli/lscolors/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/cli/lscolors/feature.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/cli/lscolors/lscolors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/cli/lscolors/lscolors.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_notsolaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_notsolaris.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_solaris.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_unix.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/cli/lscolors/stat_windows.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/cli/lscolors/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/cli/lscolors/util.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/ui/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/ui/color.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/ui/parse_sgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/ui/parse_sgr.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/ui/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/ui/style.go -------------------------------------------------------------------------------- /third_party/github.com/elves/elvish/pkg/ui/styling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/elves/elvish/pkg/ui/styling.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/LICENSE -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/diff.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/myers/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/myers/diff.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/span/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/span/parse.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/span/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/span/span.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/span/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/span/token.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/span/token111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/span/token111.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/span/token112.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/span/token112.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/span/uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/span/uri.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/span/utf16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/span/utf16.go -------------------------------------------------------------------------------- /third_party/github.com/hexops/gotextdiff/unified.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/hexops/gotextdiff/unified.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/LICENSE.md -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_darwin.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_darwin_test.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_freebsd.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_linux.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_solaris.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_test.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_unix.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_unix_test.go -------------------------------------------------------------------------------- /third_party/github.com/mitchellh/go-ps/process_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/github.com/mitchellh/go-ps/process_windows.go -------------------------------------------------------------------------------- /third_party/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /third_party/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /third_party/golang.org/x/sys/execabs/execabs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/third_party/golang.org/x/sys/execabs/execabs.go -------------------------------------------------------------------------------- /traverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carapace-sh/carapace/HEAD/traverse.go --------------------------------------------------------------------------------