From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: charles@aurox.ch (Charles A. Roelli) Newsgroups: gmane.emacs.devel Subject: Re: poplife-mode Date: Sun, 12 Nov 2017 21:24:51 +0100 Message-ID: References: Reply-To: charles@aurox.ch NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1510518298 27786 195.159.176.226 (12 Nov 2017 20:24:58 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 12 Nov 2017 20:24:58 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 12 21:24:55 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eDyoI-0006v7-OZ for ged-emacs-devel@m.gmane.org; Sun, 12 Nov 2017 21:24:54 +0100 Original-Received: from localhost ([::1]:51186 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eDyoP-0000j9-Mw for ged-emacs-devel@m.gmane.org; Sun, 12 Nov 2017 15:25:01 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45256) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eDyoJ-0000j4-BZ for emacs-devel@gnu.org; Sun, 12 Nov 2017 15:24:56 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eDyoE-00082S-Ef for emacs-devel@gnu.org; Sun, 12 Nov 2017 15:24:55 -0500 Original-Received: from sinyavsky.aurox.ch ([37.35.109.145]:49388) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eDyoE-000821-7N for emacs-devel@gnu.org; Sun, 12 Nov 2017 15:24:50 -0500 Original-Received: from sinyavsky.aurox.ch (sinyavsky.aurox.ch [127.0.0.1]) by sinyavsky.aurox.ch (Postfix) with ESMTP id B0DDC225B8 for ; Sun, 12 Nov 2017 20:17:41 +0000 (UTC) Authentication-Results: sinyavsky.aurox.ch (amavisd-new); dkim=pass (1024-bit key) reason="pass (just generated, assumed good)" header.d=aurox.ch DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aurox.ch; h= reply-to:references:subject:subject:in-reply-to:to:from:from :message-id:date:date; s=dkim; t=1510517859; x=1511381860; bh=1C RQ1l4vNUp4m+ao5iC8Ixgm38K2zy3Axc9zXpXKzJ8=; b=bKvW53+5MPRR7MmvFE YPkHuPWN0DDdoTLHzPLYf74ogOtwcDkE43iodvS+N9mT0uAcwCslKNzNOgvflpEb NsnJyecXDOCsmtGjsvhjXnOb4cBQ5GoXO08jHeYB1jbKwMnUadIiQ4V7lySMsogO +lknxeXLX10sYY2lcABdwbeAU= X-Virus-Scanned: Debian amavisd-new at test.virtualizor.com Original-Received: from sinyavsky.aurox.ch ([127.0.0.1]) by sinyavsky.aurox.ch (sinyavsky.aurox.ch [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id RQjQ9Ge6J94i for ; Sun, 12 Nov 2017 20:17:39 +0000 (UTC) Original-Received: from gray (125.85.192.178.dynamic.wline.res.cust.swisscom.ch [178.192.85.125]) by sinyavsky.aurox.ch (Postfix) with ESMTPSA id 1CB1122570; Sun, 12 Nov 2017 20:17:37 +0000 (UTC) In-reply-to: (message from Stefan Monnier on Sun, 12 Nov 2017 13:06:56 -0500) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 37.35.109.145 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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:220111 Archived-At: > From: Stefan Monnier > Date: Sun, 12 Nov 2017 13:06:56 -0500 > > > I think this should actually be provided in core: down-mouse-3 should be > > bound to a command implementing this, with some standardized way to find > > a contextual menu (looking at local char-properties, and if not > > found, buffer-local variable). > > Maybe with something like the patch below. I like it. We have a lot of existing code that sort of begs for better mouse integration (find-file-at-point, thing-at-point, completions buffers, isearch highlights, s-expression/balanced expression manipulation, dired listings, ...). I wonder what others think.