Accepting request 172801 from shells

- Don't set globdots it might lead to unexpected problems (bnc#815556)

OBS-URL: https://build.opensuse.org/request/show/172801
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/zsh?expand=0&rev=51
This commit is contained in:
Stephan Kulow 2013-04-22 12:33:18 +00:00 committed by Git OBS Bridge
commit 390153be2f
2 changed files with 28 additions and 9 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Apr 22 09:22:02 UTC 2013 - idonmez@suse.com
- Don't set globdots it might lead to unexpected problems (bnc#815556)
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 21 10:17:56 UTC 2013 - idonmez@suse.com Thu Mar 21 10:17:56 UTC 2013 - idonmez@suse.com

24
zshrc
View File

@ -26,11 +26,25 @@ SAVEHIST=500
#RPROMPT="[%T]" #RPROMPT="[%T]"
# Set/unset shell options # Set/unset shell options
setopt globdots nocorrect pushdtohome autolist nopromptcr setopt nocorrect
setopt nocorrectall autocd recexact longlistjobs setopt pushdtohome
setopt histignoredups pushdsilent appendhistory histexpiredupsfirst setopt autolist
setopt autopushd pushdminus extendedglob rcquotes setopt nopromptcr
unsetopt bgnice autoparamslash hup setopt nocorrectall
setopt autocd
setopt recexact
setopt longlistjobs
setopt histignoredups
setopt pushdsilent
setopt appendhistory
setopt histexpiredupsfirst
setopt autopushd
setopt pushdminus
setopt extendedglob
setopt rcquotes
unsetopt bgnice
unsetopt autoparamslash
unsetopt hup
# Setup some basic programmable completions. To see more examples # Setup some basic programmable completions. To see more examples
# of these, check out /usr/doc/packages/zsh/compctl-examples. # of these, check out /usr/doc/packages/zsh/compctl-examples.