From 1be7d4744d25d29b46f4a0b87a02cd9600ee6b74 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 22 May 2003 09:48:25 +0000 Subject: 18559, 18562: make modules use proper option arguments --- README | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'README') diff --git a/README b/README index 53e50c4f3..9b8877a63 100644 --- a/README +++ b/README @@ -47,6 +47,19 @@ or not the expression occurs in double quotes. For example: % foo=word/bird % print ${foo/\//-} "${foo/\//+}" word-bird word+bird +Note also the following workaround which is valid in all versions of the +shell that support this syntax: + % slash=/ + % foo=word/bird + % print ${foo/$slash/-} "${foo/$slash/+}" + +In 4.0, the -M option to bindkey used the first non-option argument to +specify the keymap, whereas it now uses an argument to the option. Hence: + bindkey -M -R keymap a-z self-insert +needs to be rewritten as + bindkey -M keymap -R a-z self-insert +The following form works in both versions: + bindkey -R -M keymap a-z self-insert Documentation ------------- -- cgit 1.4.1