dotfiles/.bash_it/plugins/available/jump.plugin.bash

10 lines
269 B
Bash
Raw Normal View History

2022-02-27 20:00:49 +01:00
cite about-plugin
about-plugin 'initialize jump (see https://github.com/gsamokovarov/jump). Add `export JUMP_OPTS=("--bind=z")` to change keybinding'
__init_jump() {
command -v jump &> /dev/null || return
eval "$(jump shell bash "${JUMP_OPTS[@]}")"
}
__init_jump