From 6db5eca3f1cc812cbff6f7be83e8b471326644c9 Mon Sep 17 00:00:00 2001 From: Chapman Pendery Date: Thu, 28 Sep 2023 11:01:51 -0700 Subject: [PATCH] fix: remove zsh until futher testing can occur Signed-off-by: Chapman Pendery --- README.md | 15 +++------------ shell/shell.go | 2 +- 2 files changed, 4 insertions(+), 13 deletions(-) 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, ", ") + "]" )