Merge pull request #1393 from ahmed-masud/develop

Fixed test of whether or not current session is interactive
This commit is contained in:
Nils Winkler
2019-07-08 08:39:56 +02:00
committed by GitHub

View File

@@ -2,7 +2,7 @@ cite about-plugin
about-plugin 'history manipulation'
# enter a few characters and press UpArrow/DownArrow
# to search backwards/forwards through the history
if [ -t 1 ]
if [[ ${SHELLOPTS} =~ (vi|emacs) ]]
then
bind '"":history-search-backward'
bind '"":history-search-forward'