class ZshAutosuggestions < Formula desc "Fish-like fast/unobtrusive autosuggestions for zsh" homepage "https://github.com/zsh-users/zsh-autosuggestions" url "https://github.com/zsh-users/zsh-autosuggestions/archive/v0.4.1.tar.gz" sha256 "971965ce5a29288643114833276dfd631fa66d8f9abf511c05adf682d04d4def" bottle :unneeded def install pkgshare.install "zsh-autosuggestions.zsh" end def caveats <<~EOS To activate the autosuggestions, add the following at the end of your .zshrc: source #{HOMEBREW_PREFIX}/share/zsh-autosuggestions/zsh-autosuggestions.zsh You will also need to force reload of your .zshrc: source ~/.zshrc EOS end test do assert_match "default", shell_output("zsh -c '. #{pkgshare}/zsh-autosuggestions.zsh && echo $ZSH_AUTOSUGGEST_STRATEGY'") end end