Browse Source

Fix HISTIGNORE error

Alois Mahdal 10 years ago
parent
commit
85bcb62574
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      dotfiles/bash/main.bashrc

+ 1
- 1
dotfiles/bash/main.bashrc View File

28
 export HISTCONTROL=$HISTCONTROL${HISTCONTROL:+:}ignoredups
28
 export HISTCONTROL=$HISTCONTROL${HISTCONTROL:+:}ignoredups
29
 export HISTIGNORE=$HISTIGNORE:ls:ll:la:cd
29
 export HISTIGNORE=$HISTIGNORE:ls:ll:la:cd
30
 export HISTIGNORE="$HISTIGNORE:git ap:git cm:git cma:git dc:git st"
30
 export HISTIGNORE="$HISTIGNORE:git ap:git cm:git cma:git dc:git st"
31
-export HISTIGNORE="$HISTIGNORE:se"
31
+export HISTIGNORE="$HISTIGNORE:se *"
32
 export HISTFILESIZE=10000
32
 export HISTFILESIZE=10000
33
 export GLOBIGNORE=.:..
33
 export GLOBIGNORE=.:..
34
 
34