From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10675 invoked from network); 1 Apr 2000 17:13:33 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 1 Apr 2000 17:13:33 -0000 Received: (qmail 5735 invoked by alias); 1 Apr 2000 17:13:10 -0000 Mailing-List: contact zsh-users-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 3003 Received: (qmail 5726 invoked from network); 1 Apr 2000 17:13:10 -0000 Subject: Re: New user questions In-Reply-To: <38E44864.A7072DAE@asiapacificm01.nt.com> from Andrew Morton at "Mar 31, 2000 06:40:36 am" To: Andrew Morton Date: Sat, 1 Apr 2000 18:13:04 +0100 (BST) CC: zsh-users X-Mailer: ELM [version 2.4ME+ PL66 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: From: Zefram Andrew Morton wrote: >pwold011:/home/morton> bindkey -D main >No such keymap `main' "bindkey -D main" *does* succeed. The error message is from ZLE, starting up to edit the next command line, noticing that it can't select the keymap. Its behaviour is to fall back on the .safe keymap (see the "KEYMAPS" section of zshzle(1)). You almost certainly don't want to delete keymap main. To create a completely new keymap, create one with "bindkey -N", giving it a new name, then you can add to it as much as you want while it's not selected. *Then* use "bindkey -A" to make "main" a link to your new keymap. (And presuming that you want to save the keymap permanently, use "bindkey -L" to dump the keymap in the form of the commands needed to poulate it.) -zefram