mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-23 04:30:24 +02:00
Fix sed expression to correctly extract option names from ~/.pinerc file.
This commit is contained in:
parent
78a4d0abe2
commit
f2da4d4ed8
2 changed files with 6 additions and 1 deletions
|
@ -10,7 +10,7 @@ if [[ -n $+_cache_pine_options ]]; then
|
|||
break
|
||||
fi
|
||||
done
|
||||
_cache_pine_options=( $($=getopts | sed -n 's/^\([^#]*=\).*/-\1/p') )
|
||||
_cache_pine_options=( $($=getopts | sed -n 's/^\([-a-z]*=\).*/-\1/p') )
|
||||
fi
|
||||
|
||||
sortorder=( {subject,arrival,date,from,size}{,/reverse} )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue