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.2.tar.gz" sha256 "d2316f998338ee7a83ed1741a82e59f3c83757541291ca4eb0025625c1dae9dd" 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