Make the plugin standalone (*.plugin.zsh can be simply sourced)

This commit is contained in:
Sebastian Gniazdowski 2016-05-26 09:14:39 +02:00
parent f632a186d7
commit 7949d70121

View file

@ -1,3 +1,14 @@
#
# No plugin manager is needed to use this file. All that is needed is adding:
# source {where-unpacked}/history-search-multi-word.plugin.zsh
# to ~/.zshrc.
#
REPO_DIR="${0%/*}"
if [[ -z "$ZPLG_CUR_PLUGIN" && "${fpath[(r)$REPO_DIR]}" != $REPO_DIR ]]; then
fpath+=( "$REPO_DIR" )
fi
autoload history-search-multi-word
zle -N history-search-multi-word
zle -N history-search-multi-word-backwards history-search-multi-word