don't pollute .bash_history

This commit is contained in:
Jorge Morante 2016-12-03 17:27:58 +01:00
parent 7c8356dc07
commit f9e59c1ce1
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $CURRENT_DIR/utils.sh
function init_fingers_pane() {
local pane_id=$(tmux new-window -F "#{pane_id}" -P -d -n "[fingers]" 'bash --norc --noprofile')
local pane_id=$(tmux new-window -F "#{pane_id}" -P -d -n "[fingers]" 'HISTFILE=/dev/null bash --norc --noprofile')
echo $pane_id
}