From mboxrd@z Thu Jan 1 00:00:00 1970 From: James TD Smith Subject: Re: Displaying images inline Date: Sun, 24 Aug 2008 18:30:52 +0100 Message-ID: <20080824173052.GB59512@yog-sothoth.mohorovi.cc> References: <20080822230031.GA59512@yog-sothoth.mohorovi.cc> <20080824155437.GA20406@taruti.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KXJQf-0000DS-4g for emacs-orgmode@gnu.org; Sun, 24 Aug 2008 13:31:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KXJQc-0000Ci-Ve for emacs-orgmode@gnu.org; Sun, 24 Aug 2008 13:31:04 -0400 Received: from [199.232.76.173] (port=37445 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KXJQc-0000Ce-TF for emacs-orgmode@gnu.org; Sun, 24 Aug 2008 13:31:02 -0400 Received: from 81-86-40-42.dsl.pipex.com ([81.86.40.42]:52882 helo=yog-sothoth.mohorovi.cc) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KXJQV-0004SJ-NW for emacs-orgmode@gnu.org; Sun, 24 Aug 2008 13:31:02 -0400 Received: from yog-sothoth.mohorovi.cc (localhost [127.0.0.1]) by yog-sothoth.mohorovi.cc (8.14.2/8.14.2) with ESMTP id m7OHUqMT012072 for ; Sun, 24 Aug 2008 18:30:52 +0100 (BST) (envelope-from ahktenzero@mohorovi.cc) Received: (from ahktenzero@localhost) by yog-sothoth.mohorovi.cc (8.14.2/8.14.2/Submit) id m7OHUq5l012071 for emacs-orgmode@gnu.org; Sun, 24 Aug 2008 18:30:52 +0100 (BST) (envelope-from ahktenzero@mohorovi.cc) Content-Disposition: inline In-Reply-To: <20080824155437.GA20406@taruti.net> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org On 2008-08-24 18:54:37(+0300), Taru Karttunen wrote: > On 24.08 09:21, Lindsay Todd wrote: > > Thank you! I get the "underline" running right through the image, but > > that is tolerable. This helps me. > > That comes from the org link. It can be removed by customizing the > link face used by org-mode. This will get rid of the underline whilst using iimage:. (defun ahkt-toggle-iimage-in-org () (interactive) (if (face-underline-p 'org-link) (set-face-underline-p 'org-link nil) (set-face-underline-p 'org-link t)) (iimage-mode)) (define-key org-mode-map [(control c) ?i] 'ahkt-toggle-iimage-in-org) -- |---|