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.0.tar.gz" sha256 "39cc5e3976e7928ff12f1cf5fa3108c790f8f6ad8eacf71cfc0b302931bc8308" 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