File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
internal/namespaces/autocomplete Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ var autocompleteScripts = map[string]autocompleteScript{
6464 CompleteScript : `eval "$(scw autocomplete script shell=bash)"` ,
6565 ShellConfigurationFile : map [string ]string {
6666 "darwin" : path .Join (os .Getenv ("HOME" ), ".bash_profile" ),
67+ "linux" : path .Join (os .Getenv ("HOME" ), ".bashrc" ),
6768 },
6869 },
6970 "fish" : {
@@ -87,6 +88,7 @@ var autocompleteScripts = map[string]autocompleteScript{
8788 CompleteScript : `eval (scw autocomplete script shell=fish)` ,
8889 ShellConfigurationFile : map [string ]string {
8990 "darwin" : path .Join (os .Getenv ("HOME" ), ".config/fish/config.fish" ),
91+ "linux" : path .Join (os .Getenv ("HOME" ), ".config/fish/config.fish" ),
9092 },
9193 },
9294 "zsh" : {
@@ -123,6 +125,7 @@ var autocompleteScripts = map[string]autocompleteScript{
123125 CompleteScript : `eval "$(scw autocomplete script shell=zsh)"` ,
124126 ShellConfigurationFile : map [string ]string {
125127 "darwin" : path .Join (os .Getenv ("HOME" ), ".zshrc" ),
128+ "linux" : path .Join (os .Getenv ("HOME" ), ".zshrc" ),
126129 },
127130 },
128131}
You can’t perform that action at this time.
0 commit comments