mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-01 05:16:05 +01:00
Phil Pennock: 25275: use restrictive permissions on cache files
put zstat in example zshrc
This commit is contained in:
parent
ffabab4e74
commit
f7f66ea11f
3 changed files with 14 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
|||
2008-07-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* Phil Pennock: 25275: Completion/Base/Utility/_store_cache,
|
||||
StartupFiles/zshrc: restrict permissions on cache directories
|
||||
and use zstat in example zshrc.
|
||||
|
||||
* Phil Pennock: 25276:
|
||||
Completion/Darwin/Type/_retrieve_mac_apps,
|
||||
Completion/Unix/Command/_baz, Completion/Unix/Command/_darcs,
|
||||
|
|
|
@ -13,7 +13,11 @@ if zstyle -t ":completion:${curcontext}:" use-cache; then
|
|||
if [[ -e "$_cache_dir" ]]; then
|
||||
_message "cache-dir style points to a non-directory\!"
|
||||
else
|
||||
(zmodload zsh/files 2>/dev/null; mkdir -p "$_cache_dir" )
|
||||
# if module load fails, we *should* be okay using normal mkdir so
|
||||
# we load feature b:mkdir instead of b:zf_mkdir; note that modules
|
||||
# loaded in a sub-shell don't affect the parent.
|
||||
( zmodload -F zsh/files b:mkdir; mkdir -m 0700 -p "$_cache_dir"
|
||||
) 2>/dev/null
|
||||
if [[ ! -d "$_cache_dir" ]]; then
|
||||
_message "couldn't create cache-dir $_cache_dir"
|
||||
return 1
|
||||
|
@ -27,7 +31,9 @@ if zstyle -t ":completion:${curcontext}:" use-cache; then
|
|||
if [[ -e "$_cache_ident_dir" ]]; then
|
||||
_message "cache ident dir points to a non-directory:$_cache_ident_dir"
|
||||
else
|
||||
(zmodload zsh/files 2>/dev/null; mkdir -p "$_cache_ident_dir")
|
||||
# See also rationale in zmodload above
|
||||
( zmodload -F zsh/files b:mkdir; mkdir -m 0700 -p "$_cache_ident_dir"
|
||||
) 2>/dev/null
|
||||
if [[ ! -d "$_cache_ident_dir" ]]; then
|
||||
_message "couldn't create cache-ident_dir $_cache_ident_dir"
|
||||
return 1
|
||||
|
|
|
@ -95,10 +95,11 @@ setopt autopushd pushdminus extendedglob rcquotes mailwarning
|
|||
unsetopt bgnice autoparamslash
|
||||
|
||||
# Autoload zsh modules when they are referenced
|
||||
zmodload -a zsh/stat stat
|
||||
zmodload -a zsh/zpty zpty
|
||||
zmodload -a zsh/zprof zprof
|
||||
zmodload -ap zsh/mapfile mapfile
|
||||
# stat(1) is now commonly an external command, so just load zstat
|
||||
zmodload -aF zsh/stat b:zstat
|
||||
|
||||
# Some nice key bindings
|
||||
#bindkey '^X^Z' universal-argument ' ' magic-space
|
||||
|
|
Loading…
Reference in a new issue