From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Emacs should provide more modern item completion out of the box Date: Sat, 04 Jan 2020 15:52:48 -0500 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="42322"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cc: ndame , "emacs-devel@gnu.org" , Dmitry Gutov To: Andrea Corallo Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 04 21:53:26 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1inqQG-000Arg-W7 for ged-emacs-devel@m.gmane.org; Sat, 04 Jan 2020 21:53:25 +0100 Original-Received: from localhost ([::1]:36776 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1inqQF-0007Kq-S2 for ged-emacs-devel@m.gmane.org; Sat, 04 Jan 2020 15:53:23 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37935) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1inqPn-0006wK-3T for emacs-devel@gnu.org; Sat, 04 Jan 2020 15:52:55 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1inqPl-0000W4-W6 for emacs-devel@gnu.org; Sat, 04 Jan 2020 15:52:54 -0500 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:31775) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1inqPl-0000Ui-R2 for emacs-devel@gnu.org; Sat, 04 Jan 2020 15:52:53 -0500 Original-Received: from pmg2.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id 0B1AA81E28; Sat, 4 Jan 2020 15:52:53 -0500 (EST) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id AA8A681266; Sat, 4 Jan 2020 15:52:51 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1578171171; bh=xb8DXKOuhb8xWlEc/CLXI2MvGZ22zmy71TrvvnJ9Yzw=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=QPh/HTTf+yPopBMSCrkpZfPmtfx7dtE2QA5EJi8nS5QskgxA6dDdZ1O38QUn/EoOO ZErGw1Q1rYUBnPAR5DTv0rC2KZ3iGH2pN8yoAeR73oOe+pIsFEsaO4E2xUA+LcfSXj vF99Pm+6Lsoil8coXx4IJ/OF2OPBS71IYYyFDCpCS7iVgaVWPbsGHF24vmCyzJt0yn lABmuEFimnLpRsPfX2tXJjHkHOaEsvRPYmlkE5lDMzjtnUgIR0tqOiUTopI0SebGks WjqntkvP2BH0f01DTbJ29HBB8sVsj8l/OCNwkvy2jGKBscuPyWUTzF05CV2mg0ets4 BHr4NM2HCMn1w== Original-Received: from alfajor (65-110-220-116.cpe.pppoe.ca [65.110.220.116]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 5F4C9120C71; Sat, 4 Jan 2020 15:52:51 -0500 (EST) In-Reply-To: (Andrea Corallo's message of "Fri, 03 Jan 2020 09:18:02 +0000") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:243942 Archived-At: [ About the general idea: I do think we should include company-mode in the tarball, yes. Hopefully even enable it by default. There's no copyright hurdle on this one, only technical&political ones. ] > Hi, in my opinion despite completion the other feature that is really > killer in helm-M-x is that it suggests the key bindings associated with > the listed commands. This is specific to `M-x`. I re-implemented `execute-extended-command` in Elisp, specifically so it would be easier to extend&modify. It should be very easy to change `execute-extended-command` such that the *Completion* buffer lists things like execute-extended-command (M-x) save-buffer (C-x C-s) ... -- Stefan