From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Reitter Newsgroups: gmane.emacs.help Subject: Ellipsis "..." from outline-mode: how to react to mouse-1 events? Date: Wed, 28 Nov 2007 13:59:07 +0000 Message-ID: <594AF241-C6E5-4209-B6CC-FADB4E020A22@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v915) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1196258385 26152 80.91.229.12 (28 Nov 2007 13:59:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 28 Nov 2007 13:59:45 +0000 (UTC) To: gnu emacs-help gnu Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Nov 28 14:59:53 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IxNS7-0002my-6c for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Nov 2007 14:59:47 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IxNRr-0006Ci-NT for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Nov 2007 08:59:31 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IxNRb-00068m-Et for help-gnu-emacs@gnu.org; Wed, 28 Nov 2007 08:59:15 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IxNRZ-00065Y-NV for help-gnu-emacs@gnu.org; Wed, 28 Nov 2007 08:59:15 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IxNRZ-00065E-I1 for help-gnu-emacs@gnu.org; Wed, 28 Nov 2007 08:59:13 -0500 Original-Received: from ug-out-1314.google.com ([66.249.92.174]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IxNRZ-0002Jd-5j for help-gnu-emacs@gnu.org; Wed, 28 Nov 2007 08:59:13 -0500 Original-Received: by ug-out-1314.google.com with SMTP id a2so1693111ugf for ; Wed, 28 Nov 2007 05:59:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to:content-type:content-transfer-encoding:mime-version:subject:date:x-mailer; bh=kvUCRiR5sIg0zti+u9pvCE9M/lCI9CABvFlby7GYe8E=; b=LAFk6CXibzmXIWIH9lCZsym7CvVCNeKdN8p+pG+0lrGZvzk/iWT/joXeLbZV5tZkL6HGZ6pKcrdfOBIygGNEffIosB6xl9oFr5iWqGxaWzCh9WO6qpB/SOKc9rio6zYKbonPGkRYQH1Sn67ciLYC85ZcejjUc1D49wg6BAhkLm0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=received:message-id:from:to:content-type:content-transfer-encoding:mime-version:subject:date:x-mailer; b=YsUtw9xVlpFIuIH3Ir0IjjZlKEY9uAS5RwcRG4ZNNShBKmNHWntJqJAGVqhcF5oM4XZxHjexxE3b6lOPMnxrTjcjhZrMJwu+C3Uia0KI3Mnp/opjX2h/0SE2HD8+jeZ6HjFCHVzPyRNZcC7JPp7Hqg9Tq/4Qc7M2kfXpzCECJLI= Original-Received: by 10.66.243.4 with SMTP id q4mr575105ugh.1196258350956; Wed, 28 Nov 2007 05:59:10 -0800 (PST) Original-Received: from scarlett.inf.ed.ac.uk ( [129.215.174.113]) by mx.google.com with ESMTPS id 32sm9272098ugf.2007.11.28.05.59.09 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Nov 2007 05:59:09 -0800 (PST) X-Mailer: Apple Mail (2.915) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49629 Archived-At: How would one go about creating an overlay for every "..." ellipsis displayed in lieu of invisible portions of text? I'd like to get outline-minor-mode to allow me to click on the ellipses to show/hide the entry (the key bindings used in outline- minor-mode are way too awkward). One can change the ellipsis itself: (set-display-table-slot standard-display-table 'selective-display (string-to-vector "more...")) but this way one cannot add properties or overlays, since the display table contains character vectors. So what would be the best method? Thanks - David