Open GoogleCodeExporter opened 8 years ago
Ok, I have figured the problem. The layout in 111_environment.options.zsh:186
is not ideal. You can't just uncomment lines you want to apply, you have to
preprend them with setopt, e.g.,
# some option
# hist_ignore_dups
# another option
would become
# some option
setopt hist_ignore_dups
# another option
Actually, a smarter design of the file would be without \ (to ignore line
breaks) and prepend all options with setopt and then comment the options one is
not interested in.
Original comment by dbo...@gmail.com
on 24 Jan 2011 at 1:53
Original issue reported on code.google.com by
dbo...@gmail.com
on 19 Dec 2010 at 11:03