From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Roland Winkler" Newsgroups: gmane.emacs.bugs Subject: bug#16528: 24.3; too many keybindings in minibuffer-local-completion-map Date: Thu, 23 Jan 2014 13:02:35 -0600 Message-ID: <21217.26443.949491.134206@lukas.physics.niu.edu> References: <87k3dqg85g.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1390503782 15819 80.91.229.3 (23 Jan 2014 19:03:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 23 Jan 2014 19:03:02 +0000 (UTC) Cc: 16528@debbugs.gnu.org To: Stefan Monnier Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Jan 23 20:03:08 2014 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W6PYS-00081N-JF for geb-bug-gnu-emacs@m.gmane.org; Thu, 23 Jan 2014 20:03:08 +0100 Original-Received: from localhost ([::1]:42806 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6PYR-00010T-Qn for geb-bug-gnu-emacs@m.gmane.org; Thu, 23 Jan 2014 14:03:07 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39507) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6PYN-00010M-NB for bug-gnu-emacs@gnu.org; Thu, 23 Jan 2014 14:03:04 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W6PYM-00035L-Ni for bug-gnu-emacs@gnu.org; Thu, 23 Jan 2014 14:03:03 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:47931) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6PYM-00035H-Jg for bug-gnu-emacs@gnu.org; Thu, 23 Jan 2014 14:03:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1W6PYM-00008Z-BY for bug-gnu-emacs@gnu.org; Thu, 23 Jan 2014 14:03:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: "Roland Winkler" Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Jan 2014 19:03:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 16528 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 16528-submit@debbugs.gnu.org id=B16528.1390503760491 (code B ref 16528); Thu, 23 Jan 2014 19:03:02 +0000 Original-Received: (at 16528) by debbugs.gnu.org; 23 Jan 2014 19:02:40 +0000 Original-Received: from localhost ([127.0.0.1]:33717 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1W6PY0-00007r-E0 for submit@debbugs.gnu.org; Thu, 23 Jan 2014 14:02:40 -0500 Original-Received: from fencepost.gnu.org ([208.118.235.10]:52054) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1W6PXx-00007h-JL for 16528@debbugs.gnu.org; Thu, 23 Jan 2014 14:02:38 -0500 Original-Received: from lukas.physics.niu.edu ([131.156.85.221]:60947) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1W6PXx-0005gI-1z; Thu, 23 Jan 2014 14:02:37 -0500 In-Reply-To: X-Mailer: VM 8.2 trial under 24.3.1 (x86_64-unknown-linux-gnu) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:83922 Archived-At: On Thu Jan 23 2014 Stefan Monnier wrote: > Indeed, this binding can be annoying. Some people use it heavily (and > rarely use TAB, IIUC), tho, so removing it is a bit tricky, but it was > annoying enough for files that file-name completion now uses a special > map where SPC is not bound to minibuffer-complete-word any more. So it seems to me there are two views on this: - there might be situations where the user wants to customize the keybindings provided by minibuffer-local-completion-map (this customization would then probably affect all calls of completing-read) - in other cases, the code calling completing-read might want to provide some non-default keybindings (which would then affect only certain calls of completing-read, but it would apply to all users) I do not know how common each of these cases might be. (I never use SPC for completion, but that's just me.) Roland