fix: remove zsh until futher testing can occur

Signed-off-by: Chapman Pendery <cpendery@vt.edu>
This commit is contained in:
Chapman Pendery
2023-09-28 11:01:51 -07:00
parent 30cc54498a
commit 6db5eca3f1
2 changed files with 4 additions and 13 deletions
+3 -12
View File
@@ -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
+1 -1
View File
@@ -15,7 +15,7 @@ import (
)
var (
SupportedShells = []string{"bash", "zsh", "windows-powershell", "powershell"}
SupportedShells = []string{"bash", "windows-powershell", "powershell"}
SupportedShellsText = "[" + strings.Join(SupportedShells, ", ") + "]"
)