From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10878 invoked by alias); 7 Dec 2015 20:47:14 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 21065 Received: (qmail 7019 invoked from network); 7 Dec 2015 20:47:13 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=to:from:subject:message-id:date:user-agent:mime-version :content-type:content-transfer-encoding; bh=3jb37ZosyZDz5PZV9VrVWizV8VDtNOh0wmmUmorzze0=; b=POHHM1QkdyyVRh4L0ncc9ZF4kPiNLtiRStmM/94POzwbCRRVfOnDur4tIEZ9Wvyodg /j0Jdx1s20S5AlxRLH0wVaBzCTAxJ8HsFwrQzY5LaHy4TMS7mR7bQR6CoRuU681bczK2 CTibf3s1e24WcWcyt+VtYTaZm95sWPu27CILEMSIm0DXu0pn8d6BKkAye4+umVOVN9GD CR7xBI8vE5HxP6KP6urQs9U5bzL76sYa8E1T7Sy9YchU2E3twQ3LFT0z8TUbd7s2zgIA zpVGdV70kx55SuS4kLAGDWbaeCVrY4P2s9UJcUe6PKgk1aFZi+JklqtYWNoVTl+ruByy q0Cg== X-Received: by 10.140.157.145 with SMTP id d139mr42438632qhd.19.1449521232212; Mon, 07 Dec 2015 12:47:12 -0800 (PST) To: zsh-users@zsh.org From: "Raymond W. Ko" Subject: Possible bug with bindkey and Unicode characters in 5.2? Message-ID: <5665F054.9070705@gmail.com> Date: Mon, 7 Dec 2015 15:47:16 -0500 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Hello, I am using Arch Linux, and zsh 5.2 recently landed in stable. I then discovered that some of my bindkeys with Unicode characters broke. I am basically using http://oremacs.com/2015/02/14/semi-xmodmap/ to generate unicode characters, but that should not be relevant. Here is the relevant part of my .zshrc: bindkey -s θ '"\C-b"' bindkey -s ω "'\C-b'" bindkey -s υ ">\C-b<" bindkey -s σ "}\C-b{" bindkey -s φ ")\C-b(" bindkey -s φ "asdf" bindkey -s ρ "]\C-b[" On zsh 5.1 and 5.0.1, this works as expected. However, in 5.2 there seems to be a pause for half a second before a question mark appears. I have tested this on mintty, xterm and urxvt, and Linux and Cygwin, so I don't think this is terminal specific. Any ideas? Downgrading back to 5.1 works for now.