Skip to content

Instantly share code, notes, and snippets.

@srathi-monarch
Created June 27, 2023 06:29
Show Gist options
  • Save srathi-monarch/53f6aa9792ca6b3065d42c47ff819b36 to your computer and use it in GitHub Desktop.
Save srathi-monarch/53f6aa9792ca6b3065d42c47ff819b36 to your computer and use it in GitHub Desktop.
Disable fzf for roscompletion
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