File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ import (
1616var 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`)
2021func ActionBash (command ... string ) carapace.Action {
2122 return actionCommand (command ... )(func (command ... string ) carapace.Action {
2223 return carapace .ActionCallback (func (c carapace.Context ) carapace.Action {
Original file line number Diff line number Diff 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`)
1617func ActionFish (command ... string ) carapace.Action {
1718 return actionCommand (command ... )(func (command ... string ) carapace.Action {
1819 return carapace .ActionCallback (func (c carapace.Context ) carapace.Action {
Original file line number Diff line number Diff 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`)
2930func ActionPowershell (command ... string ) carapace.Action {
3031 return actionCommand (command ... )(func (command ... string ) carapace.Action {
3132 return carapace .ActionCallback (func (c carapace.Context ) carapace.Action {
Original file line number Diff line number Diff 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`)
1617func ActionZsh (command ... string ) carapace.Action {
1718 return actionCommand (command ... )(func (command ... string ) carapace.Action {
1819 return carapace .ActionCallback (func (c carapace.Context ) carapace.Action {
You can’t perform that action at this time.
0 commit comments