From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.devel Subject: RE: Enabling Transient Mark Mode by default Date: Fri, 22 Feb 2008 17:02:40 -0800 Message-ID: <003001c875b7$ca4d2ee0$0600a8c0@us.oracle.com> References: <87myq4saw1.fsf@catnip.gol.com> <20080219190127.GA1106@muc.de><877ih0o9dx.fsf@catnip.gol.com><85ablvftqe.fsf@lola.goethe.zz><8e24944a0802201130y1601cd6dvf22a8089e2de97f7@mail.gmail.com><858x1fe6fc.fsf@lola.goethe.zz><8e24944a0802201241o4a2a70d0xb823b3fa27692bfd@mail.gmail.com><87zltujk8n.fsf@jurta.org> <874pc0leip.fsf@catnip.gol.com> <20080222163121.0b2b8341@reforged> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1203728741 4755 80.91.229.12 (23 Feb 2008 01:05:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 23 Feb 2008 01:05:41 +0000 (UTC) Cc: emacs-devel@gnu.org, 'Miles Bader' To: "'Mike Mattie'" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 23 02:06:06 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JSipI-0008SD-HZ for ged-emacs-devel@m.gmane.org; Sat, 23 Feb 2008 02:05:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JSion-0002tN-7t for ged-emacs-devel@m.gmane.org; Fri, 22 Feb 2008 20:04:45 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JSioj-0002tI-Qb for emacs-devel@gnu.org; Fri, 22 Feb 2008 20:04:41 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JSioi-0002t1-C7 for emacs-devel@gnu.org; Fri, 22 Feb 2008 20:04:41 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JSioi-0002sy-9m for emacs-devel@gnu.org; Fri, 22 Feb 2008 20:04:40 -0500 Original-Received: from rgminet01.oracle.com ([148.87.113.118]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JSioe-0007jh-9x; Fri, 22 Feb 2008 20:04:36 -0500 Original-Received: from agmgw2.us.oracle.com (agmgw2.us.oracle.com [152.68.180.213]) by rgminet01.oracle.com (Switch-3.2.4/Switch-3.1.6) with ESMTP id m1N14WqD007369; Fri, 22 Feb 2008 18:04:33 -0700 Original-Received: from acsmt351.oracle.com (acsmt351.oracle.com [141.146.40.151]) by agmgw2.us.oracle.com (Switch-3.2.0/Switch-3.2.0) with ESMTP id m1MIlYY8004805; Fri, 22 Feb 2008 18:04:32 -0700 Original-Received: from inet-141-146-46-1.oracle.com by acsmt350.oracle.com with ESMTP id 3586690211203728597; Fri, 22 Feb 2008 17:03:17 -0800 Original-Received: from dradamslap1 (/141.144.90.230) by bhmail.oracle.com (Oracle Beehive Gateway v4.0) with ESMTP ; Fri, 22 Feb 2008 17:03:17 -0800 X-Mailer: Microsoft Office Outlook 11 In-Reply-To: <20080222163121.0b2b8341@reforged> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 Thread-Index: Ach1tDCZH733UiXPR0+RMn0BAoauoAAAgelA X-Brightmail-Tracker: AAAAAQAAAAI= X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE X-Whitelist: TRUE X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:90080 Archived-At: > I am going to cook up a function that assumes the > marks of the ring are inside defuns. > > That way I can quickly extract several functions by dropping > a mark on each one as I scan through the buffer, and then > collect them off the mark ring. Just one idea, but it's food > for thought. It's great to be able to leave > a trail. or apply commands beyond a linear region. You might be interested in Icicles command `icicle-goto-marker' (also `icicle-goto-global-marker'). It's like a dynamic, completing `occur' for the `mark-ring' (or the `global-mark-ring'). It's a multi-command, so you can use it as a browser. If you want to visit only function definitions, use `icicle-imenu' or `icicle-search-tag' - similar functionality.