From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Johan Claesson Newsgroups: gmane.emacs.devel Subject: Re: Generalizing find-definition Date: Sun, 23 Nov 2014 14:44:04 +0100 Message-ID: <877fymghgb.fsf@bredband.net> References: <20141102151524.0d9c665c@forcix> <20141117211039.37f03409@forcix> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1416750285 14125 80.91.229.3 (23 Nov 2014 13:44:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 23 Nov 2014 13:44:45 +0000 (UTC) Cc: emacs-devel@gnu.org To: Helmut Eller Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 23 14:44:34 2014 Return-path: Envelope-to: ged-emacs-devel@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 1XsXSr-0002E3-8c for ged-emacs-devel@m.gmane.org; Sun, 23 Nov 2014 14:44:33 +0100 Original-Received: from localhost ([::1]:48716 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsXSq-0004KZ-NK for ged-emacs-devel@m.gmane.org; Sun, 23 Nov 2014 08:44:32 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37989) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsXSh-0004JO-IP for emacs-devel@gnu.org; Sun, 23 Nov 2014 08:44:30 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XsXSa-0002tq-Rz for emacs-devel@gnu.org; Sun, 23 Nov 2014 08:44:23 -0500 Original-Received: from smtprelay-h31.telenor.se ([213.150.131.4]:41517) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsXSa-0002td-LF for emacs-devel@gnu.org; Sun, 23 Nov 2014 08:44:16 -0500 Original-Received: from ipb1.telenor.se (ipb1.telenor.se [195.54.127.164]) by smtprelay-h31.telenor.se (Postfix) with ESMTP id 06B52D4EB for ; Sun, 23 Nov 2014 14:43:53 +0100 (CET) X-SENDER-IP: [213.114.158.173] X-LISTENER: [smtp.bredband.net] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlwHAH/jcVTVcp6tPGdsb2JhbABcgw5VWYI2yUmGagKBABcBAQEBAQEFAQEBATg7hAIBAQEBAgFWIwULCAMYCSUPAQQNDAwKGhOILAMJDQEIxjkNhkIBAQEBAQUBAQEBGgQYjjaCPQeETgWXTYUfkjGKfEcwgksBAQE X-IPAS-Result: AlwHAH/jcVTVcp6tPGdsb2JhbABcgw5VWYI2yUmGagKBABcBAQEBAQEFAQEBATg7hAIBAQEBAgFWIwULCAMYCSUPAQQNDAwKGhOILAMJDQEIxjkNhkIBAQEBAQUBAQEBGgQYjjaCPQeETgWXTYUfkjGKfEcwgksBAQE X-IronPort-AV: E=Sophos;i="5.07,443,1413237600"; d="scan'208";a="116651721" Original-Received: from c-ad9e72d5.04-99-73746f3.cust.bredbandsbolaget.se (HELO goblin) ([213.114.158.173]) by ipb1.telenor.se with ESMTP; 23 Nov 2014 14:43:53 +0100 In-Reply-To: (Helmut Eller's message of "Thu, 20 Nov 2014 14:44:54 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 213.150.131.4 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:178070 Archived-At: Awesome library. For people just as lazy as me i recommend the following keybindings to further reduce finger movement: (define-key xref--xref-buffer-mode-map [?,] 'xref-prev-line) (define-key xref--xref-buffer-mode-map [?.] 'xref-next-line) Regards, /Johan Helmut Eller writes: > On Mon, Nov 17 2014, Jorgen Schaefer wrote: > >> Some initial patch attached. > > I'm proposing an alternative implementation. This version uses EIOIO > which, I think, makes it more flexible. Proof-of-concept-quality > backends for elisp and etags are included. The UI is lifted from SLIME > (with some simplifications). To try it out, load xref.el and then M-x > xref-minor-mode to turn it on. It's not fully polished but good enough > to show the main ideas. > > Also available at: https://github.com/ellerh/xref/blob/master/xref.el > > > > > Helmut