From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Le Wang Newsgroups: gmane.emacs.help Subject: issues with ido-mode Date: Wed, 31 Aug 2011 01:19:12 +0800 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1314724764 17593 80.91.229.12 (30 Aug 2011 17:19:24 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 30 Aug 2011 17:19:24 +0000 (UTC) To: GNU Emacs List Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Aug 30 19:19:20 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QyRy3-0005wr-42 for geh-help-gnu-emacs@m.gmane.org; Tue, 30 Aug 2011 19:19:19 +0200 Original-Received: from localhost ([::1]:43208 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QyRy2-0008M8-HO for geh-help-gnu-emacs@m.gmane.org; Tue, 30 Aug 2011 13:19:18 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:57472) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QyRxy-0008M3-Ia for help-gnu-emacs@gnu.org; Tue, 30 Aug 2011 13:19:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QyRxx-0005l2-9P for help-gnu-emacs@gnu.org; Tue, 30 Aug 2011 13:19:14 -0400 Original-Received: from mail-qy0-f176.google.com ([209.85.216.176]:63094) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QyRxx-0005ky-7E for help-gnu-emacs@gnu.org; Tue, 30 Aug 2011 13:19:13 -0400 Original-Received: by qyl16 with SMTP id 16so302193qyl.0 for ; Tue, 30 Aug 2011 10:19:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=faTAW1sr5FYSRVL2ebFSnC/H7BOMXPH7Ef0Fm6CjTLA=; b=cpD1PsPMR/6HyKlpd90VcjbqQkJjoJT7lOULmmXpfoWMeGVgFnnpo1zqaMqV48uGCw Nhxd2c9wI5Nr4yISocXFFnkkN/K31MZVEFkF4Icl4dN5uqs/+p6dJldgI1oLbLYVmZUN rF7qClRZ6YnUvDcfMDXKIHbkinxeTO9zaIRjk= Original-Received: by 10.224.189.130 with SMTP id de2mr2880231qab.43.1314724752608; Tue, 30 Aug 2011 10:19:12 -0700 (PDT) Original-Received: by 10.224.173.68 with HTTP; Tue, 30 Aug 2011 10:19:12 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.216.176 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:82094 Archived-At: I start emacs 23.3.1 with -Q eval-region: (ido-mode 1) (defun foo() (interactive) (message (ido-completing-read ": " '("a" "b" "make-clean-force" "make-clean" "make")))) So I'm just using ido's default behaviors. I type M-x"foo""mak". Issue #1 The first match is "make-clean-force". "make" should be considered the strongest match, since a greater proportion of the string has been matched, right? Is there any way to fix this? Issue #2 I press twice to navigate to "make" and to select it. >From muscle memory, I do M-x"foo" to repeat the last command. "mak" was saved in the history list instead of my actual selection which was "make". And I've just executed "make-clean-force". I'm wondering if the user's actual selection should be saved in the history rather than his partial input. Are these bugs to be filed? -- Le