7f49546393
Closes #2666. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
29 lines
844 B
Ruby
29 lines
844 B
Ruby
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.3.2.tar.gz"
|
|
sha256 "2c74e3e27f0ee56d05f9addbeaf3ff69ce972c23b3750a2d1ed0be5005a91613"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
pkgshare.install "zsh-autosuggestions.zsh"
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
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
|