Skip to content

Commit 65844bc

Browse files
authored
Merge pull request #289 from carapace-sh/fix-doc
fix doc
2 parents ca27f17 + a23d80d commit 65844bc

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

pkg/actions/bridge/bash.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ import (
1616
var bashSnippet string
1717

1818
// ActionBash bridges completions registered in bash
19-
// (uses custom `.bashrc` in “~/.config/carapace/bridge/bash`)
19+
//
20+
// (uses custom `.bashrc` in `~/.config/carapace/bridge/bash`)
2021
func ActionBash(command ...string) carapace.Action {
2122
return actionCommand(command...)(func(command ...string) carapace.Action {
2223
return carapace.ActionCallback(func(c carapace.Context) carapace.Action {

pkg/actions/bridge/fish.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import (
1212
)
1313

1414
// ActionFish bridges completions registered in fish
15-
// (uses custom `config.fish` in “~/.config/carapace/bridge/fish`)
15+
//
16+
// (uses custom `config.fish` in `~/.config/carapace/bridge/fish`)
1617
func ActionFish(command ...string) carapace.Action {
1718
return actionCommand(command...)(func(command ...string) carapace.Action {
1819
return carapace.ActionCallback(func(c carapace.Context) carapace.Action {

pkg/actions/bridge/powershell.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ func ensureExists(path string) (err error) {
2525
}
2626

2727
// ActionPowershell bridges completions registered in powershell
28-
// (uses custom `Microsoft.PowerShell_profile.ps1` in “~/.config/carapace/bridge/powershell`)
28+
//
29+
// (uses custom `Microsoft.PowerShell_profile.ps1` in `~/.config/carapace/bridge/powershell`)
2930
func ActionPowershell(command ...string) carapace.Action {
3031
return actionCommand(command...)(func(command ...string) carapace.Action {
3132
return carapace.ActionCallback(func(c carapace.Context) carapace.Action {

pkg/actions/bridge/zsh.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import (
1212
)
1313

1414
// ActionZsh bridges completions registered in zsh
15-
// (uses custom `.zshrc` in “~/.config/carapace/bridge/zsh`)
15+
//
16+
// (uses custom `.zshrc` in `~/.config/carapace/bridge/zsh`)
1617
func ActionZsh(command ...string) carapace.Action {
1718
return actionCommand(command...)(func(command ...string) carapace.Action {
1819
return carapace.ActionCallback(func(c carapace.Context) carapace.Action {

0 commit comments

Comments
 (0)