Files
bash-it/plugins/available/jump.plugin.bash
Adam Wallis ac42a6233c Allow jump plugin to fail silently when jump not installed
Per recommendations from @nwinkler, allow the jump test to fail
silently. This helps in cases where users are SSH'ing in, or for some
other reason are using bash-it environment on a foreign machine.
2018-07-18 09:52:52 -04:00

10 lines
197 B
Bash
Executable File

cite about-plugin
about-plugin 'initialize jump (see https://github.com/gsamokovarov/jump)'
__init_jump() {
command -v jump &> /dev/null || return
eval "$(jump shell --bind=z)"
}
__init_jump