Closed 1ambda closed 8 years ago
I am using zsh 5.0.8 (x86_64-apple-darwin15.0) and load zsh-auto-pair with zplug.
zsh 5.0.8 (x86_64-apple-darwin15.0)
zsh-auto-pair
zplug
The error message is,
/Users/1ambda/.zplug/repos/hlissner/zsh-autopair/autopair.zsh:150: unknown file attribute: )
The code in autopair.zsh line #150 should be
// before local l=(')', '}', ']', '>') // should be: http://stackoverflow.com/questions/14917501/local-arrays-in-zsh local -a l l=(')', '}', ']', '>')
Also, autopair.zsh line #40 should be modified, otherwise it will throw the ap-next-to-boundary-p:1: number expected error
ap-next-to-boundary-p:1: number expected
// before local groups=(all) // should be: local -a groups groups=(all)
Thanks for making the great terminal tool :)
I've wondered how to fix that error before. Thanks for the help!
I am using
zsh 5.0.8 (x86_64-apple-darwin15.0)
and loadzsh-auto-pair
withzplug
.The error message is,
The code in autopair.zsh line #150 should be
Also, autopair.zsh line #40 should be modified, otherwise it will throw the
ap-next-to-boundary-p:1: number expected
errorThanks for making the great terminal tool :)