From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Parker, Matthew" Subject: Turn on "Hyperlinks > Literal Links " Date: Fri, 22 Aug 2008 11:32:53 -0400 Message-ID: <9E067A1AECCB154485D4CF7E4BEF4D8E0962762C@post07.corp.seic.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1637228210==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KWYdQ-0002Yk-5z for emacs-orgmode@gnu.org; Fri, 22 Aug 2008 11:33:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KWYdO-0002YF-C8 for Emacs-orgmode@gnu.org; Fri, 22 Aug 2008 11:33:07 -0400 Received: from [199.232.76.173] (port=46796 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KWYdO-0002YC-77 for Emacs-orgmode@gnu.org; Fri, 22 Aug 2008 11:33:06 -0400 Received: from exprod5og113.obsmtp.com ([64.18.0.26]:59113) by monty-python.gnu.org with smtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KWYdN-00044I-Ng for Emacs-orgmode@gnu.org; Fri, 22 Aug 2008 11:33:06 -0400 Content-class: urn:content-classes:message 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 This is a multi-part message in MIME format. --===============1637228210== Content-class: urn:content-classes:message Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C9046C.581F13B5" This is a multi-part message in MIME format. ------_=_NextPart_001_01C9046C.581F13B5 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Is there a way to set "Hyperlinks > literal links" on by default? =20 I found the elisp that works w/in an org buffer, but this fails if I put it in .emacs. =20 ; turn on literal links (progn (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock) ) =20 =20 Thanks, Matt =20 ------_=_NextPart_001_01C9046C.581F13B5 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Is there a way to set “Hyperlinks > literal = links” on by default?

 

I found the elisp that works w/in an org buffer, but = this fails if I put it in .emacs.

 

; turn on literal links

(progn

  (org-remove-from-invisibility-spec = '(org-link))

  = (org-restart-font-lock)

)

 

 

Thanks,
Matt

 

------_=_NextPart_001_01C9046C.581F13B5-- --===============1637228210== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============1637228210==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eddward DeVilla" Subject: Re: Turn on "Hyperlinks > Literal Links " Date: Sat, 23 Aug 2008 13:12:13 -0500 Message-ID: References: <9E067A1AECCB154485D4CF7E4BEF4D8E0962762C@post07.corp.seic.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KWxay-0007Ws-A5 for emacs-orgmode@gnu.org; Sat, 23 Aug 2008 14:12:16 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KWxax-0007WZ-G0 for Emacs-orgmode@gnu.org; Sat, 23 Aug 2008 14:12:15 -0400 Received: from [199.232.76.173] (port=59516 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KWxax-0007WW-D1 for Emacs-orgmode@gnu.org; Sat, 23 Aug 2008 14:12:15 -0400 Received: from py-out-1112.google.com ([64.233.166.178]:47194) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KWxax-00058u-5o for Emacs-orgmode@gnu.org; Sat, 23 Aug 2008 14:12:15 -0400 Received: by py-out-1112.google.com with SMTP id p76so671362pyb.1 for ; Sat, 23 Aug 2008 11:12:14 -0700 (PDT) In-Reply-To: <9E067A1AECCB154485D4CF7E4BEF4D8E0962762C@post07.corp.seic.com> Content-Disposition: inline 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: "Parker, Matthew" Cc: Emacs-orgmode@gnu.org You might be able to define a function that does that and call it from org-mode-hook. I call some org specific code from the hook on my work systems. I don't have access to them right now. I can try to post an example Monday. Edd On Fri, Aug 22, 2008 at 10:32 AM, Parker, Matthew wrote: > Is there a way to set "Hyperlinks > literal links" on by default? > > > > I found the elisp that works w/in an org buffer, but this fails if I put it > in .emacs. > > > > ; turn on literal links > > (progn > > (org-remove-from-invisibility-spec '(org-link)) > > (org-restart-font-lock) > > ) > > > > > > Thanks, > Matt > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > > From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Parker, Matthew" Subject: RE: Turn on "Hyperlinks > Literal Links " Date: Mon, 25 Aug 2008 12:08:10 -0400 Message-ID: <9E067A1AECCB154485D4CF7E4BEF4D8E096279BC@post07.corp.seic.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KXecA-0007aB-1W for emacs-orgmode@gnu.org; Mon, 25 Aug 2008 12:08:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KXec9-0007ZA-3j for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 12:08:21 -0400 Received: from [199.232.76.173] (port=32999 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KXec8-0007Yy-Ua for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 12:08:20 -0400 Received: from exprod5og101.obsmtp.com ([64.18.0.141]:53621) by monty-python.gnu.org with smtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KXec8-0004e3-Rg for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 12:08:21 -0400 Content-class: urn:content-classes:message In-Reply-To: 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: Eddward DeVilla Cc: Emacs-orgmode@gnu.org Thanks I'll give that a try! -----Original Message----- From: Eddward DeVilla [mailto:eddward@gmail.com]=20 Sent: Saturday, August 23, 2008 2:12 PM To: Parker, Matthew Cc: Emacs-orgmode@gnu.org Subject: Re: [Orgmode] Turn on "Hyperlinks > Literal Links " You might be able to define a function that does that and call it from org-mode-hook. I call some org specific code from the hook on my work systems. I don't have access to them right now. I can try to post an example Monday. Edd On Fri, Aug 22, 2008 at 10:32 AM, Parker, Matthew wrote: > Is there a way to set "Hyperlinks > literal links" on by default? > > > > I found the elisp that works w/in an org buffer, but this fails if I put it > in .emacs. > > > > ; turn on literal links > > (progn > > (org-remove-from-invisibility-spec '(org-link)) > > (org-restart-font-lock) > > ) > > > > > > Thanks, > Matt > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > > From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eddward DeVilla" Subject: Re: Turn on "Hyperlinks > Literal Links " Date: Mon, 25 Aug 2008 12:01:40 -0500 Message-ID: References: <9E067A1AECCB154485D4CF7E4BEF4D8E096279BC@post07.corp.seic.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KXfRn-0006HM-Pq for emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:01:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KXfRm-0006GB-QG for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:01:43 -0400 Received: from [199.232.76.173] (port=34086 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KXfRm-0006Fx-K2 for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:01:42 -0400 Received: from mail-gx0-f12.google.com ([209.85.217.12]:62932) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KXfRm-0001vZ-Ht for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:01:42 -0400 Received: by gxk5 with SMTP id 5so2213704gxk.18 for ; Mon, 25 Aug 2008 10:01:40 -0700 (PDT) In-Reply-To: <9E067A1AECCB154485D4CF7E4BEF4D8E096279BC@post07.corp.seic.com> Content-Disposition: inline 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: "Parker, Matthew" Cc: Emacs-orgmode@gnu.org Here is a snip from my .emacs. Maybe you could does something similar to run your code. (add-hook 'org-mode-hook 'turn-on-font-lock) ; org-mode buffers only (defun my-org-mode-setup () "Run some setup for an org buffer" (interactive) (setq show-trailing-whitespace t)) (add-hook 'org-mode-hook 'my-org-mode-setup) (require 'org-install) Edd On Mon, Aug 25, 2008 at 11:08 AM, Parker, Matthew wrote: > Thanks I'll give that a try! > > -----Original Message----- > From: Eddward DeVilla [mailto:eddward@gmail.com] > Sent: Saturday, August 23, 2008 2:12 PM > To: Parker, Matthew > Cc: Emacs-orgmode@gnu.org > Subject: Re: [Orgmode] Turn on "Hyperlinks > Literal Links " > > You might be able to define a function that does that and call it from > org-mode-hook. I call some org specific code from the hook on my work > systems. I don't have access to them right now. I can try to post an > example Monday. > > Edd > > On Fri, Aug 22, 2008 at 10:32 AM, Parker, Matthew > wrote: >> Is there a way to set "Hyperlinks > literal links" on by default? >> >> >> >> I found the elisp that works w/in an org buffer, but this fails if I > put it >> in .emacs. >> >> >> >> ; turn on literal links >> >> (progn >> >> (org-remove-from-invisibility-spec '(org-link)) >> >> (org-restart-font-lock) >> >> ) >> >> >> >> >> >> Thanks, >> Matt >> >> >> >> _______________________________________________ >> Emacs-orgmode mailing list >> Remember: use `Reply All' to send replies to the list. >> Emacs-orgmode@gnu.org >> http://lists.gnu.org/mailman/listinfo/emacs-orgmode >> >> > From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Parker, Matthew" Subject: RE: Turn on "Hyperlinks > Literal Links " Date: Mon, 25 Aug 2008 13:15:17 -0400 Message-ID: <9E067A1AECCB154485D4CF7E4BEF4D8E096279FE@post07.corp.seic.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KXff7-0005I5-PN for emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:15:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KXff3-0005Fu-VI for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:15:29 -0400 Received: from [199.232.76.173] (port=54532 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KXff3-0005Fe-PZ for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:15:25 -0400 Received: from exprod5og104.obsmtp.com ([64.18.0.178]:48110) by monty-python.gnu.org with smtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KXff2-0005Ng-Sy for Emacs-orgmode@gnu.org; Mon, 25 Aug 2008 13:15:25 -0400 Content-class: urn:content-classes:message In-Reply-To: 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: Eddward DeVilla Cc: Emacs-orgmode@gnu.org This works. :) Thanks. >From .emacs ; Enable literal links=20 (defun turn-on-literal-links () "enable literal links." (interactive) (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock)) (add-hook 'org-mode-hook 'turn-on-literal-links) -----Original Message----- From: Eddward DeVilla [mailto:eddward@gmail.com]=20 Sent: Monday, August 25, 2008 1:02 PM To: Parker, Matthew Cc: Emacs-orgmode@gnu.org Subject: Re: [Orgmode] Turn on "Hyperlinks > Literal Links " Here is a snip from my .emacs. Maybe you could does something similar to run your code. (add-hook 'org-mode-hook 'turn-on-font-lock) ; org-mode buffers only (defun my-org-mode-setup () "Run some setup for an org buffer" (interactive) (setq show-trailing-whitespace t)) (add-hook 'org-mode-hook 'my-org-mode-setup) (require 'org-install) Edd On Mon, Aug 25, 2008 at 11:08 AM, Parker, Matthew wrote: > Thanks I'll give that a try! > > -----Original Message----- > From: Eddward DeVilla [mailto:eddward@gmail.com] > Sent: Saturday, August 23, 2008 2:12 PM > To: Parker, Matthew > Cc: Emacs-orgmode@gnu.org > Subject: Re: [Orgmode] Turn on "Hyperlinks > Literal Links " > > You might be able to define a function that does that and call it from > org-mode-hook. I call some org specific code from the hook on my work > systems. I don't have access to them right now. I can try to post an > example Monday. > > Edd > > On Fri, Aug 22, 2008 at 10:32 AM, Parker, Matthew > wrote: >> Is there a way to set "Hyperlinks > literal links" on by default? >> >> >> >> I found the elisp that works w/in an org buffer, but this fails if I > put it >> in .emacs. >> >> >> >> ; turn on literal links >> >> (progn >> >> (org-remove-from-invisibility-spec '(org-link)) >> >> (org-restart-font-lock) >> >> ) >> >> >> >> >> >> Thanks, >> Matt >> >> >> >> _______________________________________________ >> Emacs-orgmode mailing list >> Remember: use `Reply All' to send replies to the list. >> Emacs-orgmode@gnu.org >> http://lists.gnu.org/mailman/listinfo/emacs-orgmode >> >> > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Turn on "Hyperlinks > Literal Links " Date: Wed, 3 Sep 2008 11:37:07 +0200 Message-ID: References: <9E067A1AECCB154485D4CF7E4BEF4D8E0962762C@post07.corp.seic.com> Mime-Version: 1.0 (Apple Message framework v926) Content-Type: multipart/mixed; boundary="===============0617506009==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kaonm-0005uZ-6O for emacs-orgmode@gnu.org; Wed, 03 Sep 2008 05:37:26 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kaonk-0005sy-U1 for Emacs-orgmode@gnu.org; Wed, 03 Sep 2008 05:37:25 -0400 Received: from [199.232.76.173] (port=56517 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kaonk-0005sm-Ka for Emacs-orgmode@gnu.org; Wed, 03 Sep 2008 05:37:24 -0400 Received: from ug-out-1314.google.com ([66.249.92.171]:49629) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Kaonk-0005gQ-K9 for Emacs-orgmode@gnu.org; Wed, 03 Sep 2008 05:37:24 -0400 Received: by ug-out-1314.google.com with SMTP id m2so2428766uge.17 for ; Wed, 03 Sep 2008 02:37:23 -0700 (PDT) In-Reply-To: <9E067A1AECCB154485D4CF7E4BEF4D8E0962762C@post07.corp.seic.com> 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: "Parker, Matthew" Cc: Emacs-orgmode@gnu.org --===============0617506009== Content-Type: multipart/alternative; boundary=Apple-Mail-25--538224120 --Apple-Mail-25--538224120 Content-Type: text/plain; charset=WINDOWS-1252; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable On Aug 22, 2008, at 5:32 PM, Parker, Matthew wrote: > Is there a way to set =93Hyperlinks > literal links=94 on by default? > > I found the elisp that works w/in an org buffer, but this fails if I =20= > put it in .emacs. > > ; turn on literal links > (progn > (org-remove-from-invisibility-spec '(org-link)) > (org-restart-font-lock) > ) You can also use (setq org-descriptive-links nil) - Carsten --Apple-Mail-25--538224120 Content-Type: text/html; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable
On Aug 22, 2008, = at 5:32 PM, Parker, Matthew wrote:

Is = there a way to set =93Hyperlinks > literal links=94 on by = default?
I = found the elisp that works w/in an org buffer, but this fails if I put = it in .emacs.
; = turn on literal links
(progn
  (org-remove-from-invisibility-spec = '(org-link))