emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* any way to disable underlining of file paths?
@ 2008-10-24 11:45 Martin Stitt
  2008-10-24 12:45 ` R: " Giovanni Ridolfi
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Stitt @ 2008-10-24 11:45 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 464 bytes --]

really love orgmode!  gave up on emacs outline mode long ago.  nice to
discover that it's been revived so nicely.

i edit documents that describe processes involved in doing system
administration, so there are
lots of file paths involved:

  now change into subdir blah and start the engine:

      cd /blah/
      /usr/bin/start_the_engine

is there any way to keep orgmode from underlining file paths it finds within
the flow of text?

thanks much

Martin Stitt

[-- Attachment #1.2: Type: text/html, Size: 589 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* R: any way to disable underlining of file paths?
  2008-10-24 11:45 any way to disable underlining of file paths? Martin Stitt
@ 2008-10-24 12:45 ` Giovanni Ridolfi
  2008-10-24 13:13   ` Sebastian Rose
  0 siblings, 1 reply; 4+ messages in thread
From: Giovanni Ridolfi @ 2008-10-24 12:45 UTC (permalink / raw)
  To: emacs-orgmode, Martin Stitt

-- Ven 24/10/08, Martin Stitt <marty.stitt@gmail.com> ha scritto:
> i edit documents that describe processes involved in doing
> system
> administration, so there are
> lots of file paths involved:
> 

hi Martin, 
if I use this text:
------------------------------
* test 4 Martin

now change into subdir blah and start the engine:

      cd /blah/
      /usr/bin/start_the_engine

C:\Documents and Settings\Myuser\Documenti\tmp
------------------
the only thing I notice is the /blah/ word that is in italics[1]

Would you please report 
your emacs version
your org-version ?

TIA
cheers
Giovanni


%------------------------------------------
[1] You want you can avoid it customizing the variable:

org-fontify-emphasized-text nil

<source code:>
(defcustom org-fontify-emphasized-text t
  "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
Changing this variable requires a restart of Emacs to take effect."
</code>
%-------------------------------


      Scopri il blog di Yahoo! Mail:
Trucchi, novità e scrivi la tua opinione.
http://www.ymailblogit.com/blog

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: R: any way to disable underlining of file paths?
  2008-10-24 12:45 ` R: " Giovanni Ridolfi
@ 2008-10-24 13:13   ` Sebastian Rose
  2008-10-24 13:35     ` Martin Stitt
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Rose @ 2008-10-24 13:13 UTC (permalink / raw)
  To: emacs-orgmode

This here makes the text displayed in fixed width:

       =cd /blah/=
       =/usr/bin/start_the_engine=

This here makes a block of code from it:

    :cd /blah/
    :/usr/bin/start_the_engine


In both cases no underlining or italic problems occur.



Giovanni Ridolfi wrote:
> -- Ven 24/10/08, Martin Stitt <marty.stitt@gmail.com> ha scritto:
>> i edit documents that describe processes involved in doing
>> system
>> administration, so there are
>> lots of file paths involved:
>>
> 
> hi Martin, 
> if I use this text:
> ------------------------------
> * test 4 Martin
> 
> now change into subdir blah and start the engine:
> 
>       cd /blah/
>       /usr/bin/start_the_engine
> 
> C:\Documents and Settings\Myuser\Documenti\tmp
> ------------------
> the only thing I notice is the /blah/ word that is in italics[1]
> 
> Would you please report 
> your emacs version
> your org-version ?
> 
> TIA
> cheers
> Giovanni
> 
> 
> %------------------------------------------
> [1] You want you can avoid it customizing the variable:
> 
> org-fontify-emphasized-text nil
> 
> <source code:>
> (defcustom org-fontify-emphasized-text t
>   "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
> Changing this variable requires a restart of Emacs to take effect."
> </code>
> %-------------------------------
> 
> 
>       Scopri il blog di Yahoo! Mail:
> Trucchi, novità e scrivi la tua opinione.
> http://www.ymailblogit.com/blog
> 
> 
> 
> _______________________________________________
> 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
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: R: any way to disable underlining of file paths?
  2008-10-24 13:13   ` Sebastian Rose
@ 2008-10-24 13:35     ` Martin Stitt
  0 siblings, 0 replies; 4+ messages in thread
From: Martin Stitt @ 2008-10-24 13:35 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2611 bytes --]

Giovanni, Sebastion,

thanks much for the quick response!


after putting this in my .emacs:

  (setq org-fontify-emphasized-text nil)

the underlines are wonderfully gone now.


under ubuntu 8.04.1, i have:

  GNU Emacs 22.1.1

  near the the top of that org.elc file, i find:

    ;;; Compiled by buildd@terranova.buildd on Sat May  3 08:57:10 2008
    ;;; from file /build/buildd/emacs22-22.1/lisp/textmodes/org.el
    ;;; in Emacs version 22.1
    ;;; with all optimizations.




On Fri, Oct 24, 2008 at 8:13 AM, Sebastian Rose <sebastian_rose@gmx.de>wrote:

> This here makes the text displayed in fixed width:
>
>      =cd /blah/=
>      =/usr/bin/start_the_engine=
>
> This here makes a block of code from it:
>
>   :cd /blah/
>   :/usr/bin/start_the_engine
>
>
> In both cases no underlining or italic problems occur.
>
>
>
> Giovanni Ridolfi wrote:
>
>> -- Ven 24/10/08, Martin Stitt <marty.stitt@gmail.com> ha scritto:
>>
>>> i edit documents that describe processes involved in doing
>>> system
>>> administration, so there are
>>> lots of file paths involved:
>>>
>>>
>> hi Martin, if I use this text:
>> ------------------------------
>> * test 4 Martin
>>
>> now change into subdir blah and start the engine:
>>
>>      cd /blah/
>>      /usr/bin/start_the_engine
>>
>> C:\Documents and Settings\Myuser\Documenti\tmp
>> ------------------
>> the only thing I notice is the /blah/ word that is in italics[1]
>>
>> Would you please report your emacs version
>> your org-version ?
>>
>> TIA
>> cheers
>> Giovanni
>>
>>
>> %------------------------------------------
>> [1] You want you can avoid it customizing the variable:
>>
>> org-fontify-emphasized-text nil
>>
>> <source code:>
>> (defcustom org-fontify-emphasized-text t
>>  "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
>> Changing this variable requires a restart of Emacs to take effect."
>> </code>
>> %-------------------------------
>>
>>
>>      Scopri il blog di Yahoo! Mail:
>> Trucchi, novità e scrivi la tua opinione.
>> http://www.ymailblogit.com/blog
>>
>>
>>
>> _______________________________________________
>> 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
>>
>>
>
>
> _______________________________________________
> 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
>

[-- Attachment #1.2: Type: text/html, Size: 4060 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-10-24 13:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-24 11:45 any way to disable underlining of file paths? Martin Stitt
2008-10-24 12:45 ` R: " Giovanni Ridolfi
2008-10-24 13:13   ` Sebastian Rose
2008-10-24 13:35     ` Martin Stitt

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).