Last active
August 29, 2015 14:04
-
-
Save iorionda/fb88f3ee68b5ef09928b to your computer and use it in GitHub Desktop.
convenience
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| peco-bundle-gem-open() { | |
| bundle help > /dev/null 2>&1 | |
| if [[ "${?}" == "0" ]]; then | |
| local selected_dir=$(bundle show --paths | peco) | |
| if [ -n "$selected_dir" ]; then | |
| BUFFER="$EDITOR ${selected_dir}" | |
| zle accept-line | |
| fi | |
| fi | |
| zle clear-screen | |
| } | |
| zle -N peco-bundle-gem-open | |
| bindkey '^bo' peco-bundle-gem-open |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment