Merge pull request #826 from leventyalcin/fix/history-improvement

Fix/history improvement
This commit is contained in:
Nils Winkler
2016-11-06 16:34:47 +01:00
committed by GitHub

View File

@@ -3,7 +3,7 @@
# Bash History Handling # Bash History Handling
shopt -s histappend # append to bash_history if Terminal.app quits shopt -s histappend # append to bash_history if Terminal.app quits
export HISTCONTROL=${HISTCONTROL:-erasedups} # erase duplicates; alternative option: export HISTCONTROL=ignoredups export HISTCONTROL=${HISTCONTROL:-ignorespace:erasedups} # erase duplicates; alternative option: export HISTCONTROL=ignoredups
export HISTSIZE=${HISTSIZE:-5000} # resize history size export HISTSIZE=${HISTSIZE:-5000} # resize history size
export AUTOFEATURE=${AUTOFEATURE:-true autotest} # Cucumber / Autotest integration export AUTOFEATURE=${AUTOFEATURE:-true autotest} # Cucumber / Autotest integration