NuCivic / ansible-dev-vm

8 stars 5 forks source link

bash.bashrc produces errors with ssh -t #53

Closed acouch closed 8 years ago

acouch commented 8 years ago

bind is not available for non-interactive shell. this fixes that:

if [ -n "$PS1" ]; then
  bind '"\e[A":history-search-backward'
  bind '"\e[B":history-search-forward'
fi
acouch commented 8 years ago

This is fixed with #54