diff --git a/README.md b/README.md index bd547a9..9cfec05 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,9 @@ provide support for 600+ command line tools. | Shells | IDEs | OS | | ------------------ | ------------------ | ------- | -| zsh | Visual Studio Code | Mac | -| bash | JetBrains Suite | Windows | -| pwsh (Powershell) | Android Studio | Linux | -| Windows Powershell | | | +| bash | Visual Studio Code | Mac | +| Windows Powershell | | Windows | +| pwsh (Powershell) | | Linux | ## Getting Started @@ -32,14 +31,6 @@ After completing the installation, bind `clac` to the terminal you'd like to use it with via the `clac bind [shell]` command. This will create a custom keybinding for `CTRL+a` to trigger the autocomplete session & execution. -## Inspirations - -- [syft](https://github.com/anchore/syft) & [grype](https://github.com/anchore/grype) -- [fig](https://github.com/withfig/autocomplete) -- [warp](https://www.warp.dev/) -- [fzf](https://github.com/junegunn/fzf) -- [bubbletea](https://github.com/charmbracelet/bubbletea) - ## Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a diff --git a/shell/shell.go b/shell/shell.go index f294416..8a613f0 100644 --- a/shell/shell.go +++ b/shell/shell.go @@ -15,7 +15,7 @@ import ( ) var ( - SupportedShells = []string{"bash", "zsh", "windows-powershell", "powershell"} + SupportedShells = []string{"bash", "windows-powershell", "powershell"} SupportedShellsText = "[" + strings.Join(SupportedShells, ", ") + "]" )