Created
June 27, 2023 06:29
-
-
Save srathi-monarch/53f6aa9792ca6b3065d42c47ff819b36 to your computer and use it in GitHub Desktop.
Disable fzf for roscompletion
This file contains 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
alias ros='touch ~/.roscomp && zsh ; exit' | |
export FZF_DEFAULT_OPTS="--reverse" | |
source /usr/share/doc/fzf/examples/key-bindings.zsh | |
source /usr/share/doc/fzf/examples/completion.zsh | |
if [ ! -f ~/.roscomp ] ; then | |
source /home/srathi/.local/share/fzf-zsh-completion.sh # Breaks ROS Completion | |
else | |
rm ~/.roscomp | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment