emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-cdlatex is driving me nuts
@ 2017-06-22  6:56 Guy Mayraz
  2017-06-22  7:09 ` Nicolas Goaziou
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Guy Mayraz @ 2017-06-22  6:56 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 610 bytes --]

Org-cdlatex is automatically enabled on all org files, and it overrides the
back quote symbol, which I like using for back quote. I know how to disable
org-cdlatex in the current buffer, but that's not a good solution given the
number of org buffers I use. Can I (i) shift the default to org-cdlatex
being disabled (best option probably), or (ii) change the org-cdlatex math
symbol to something totally obscure that wouldn't interfere with my normal
work?

Thanks!!

Guy Mayraz | Lecturer (assistant professor) | Department of Economics |
University of Melbourne
Tel: +61 3 9035 8141 | Mobile: +61 422 893 184

[-- Attachment #2: Type: text/html, Size: 1011 bytes --]

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

* Re: org-cdlatex is driving me nuts
  2017-06-22  6:56 org-cdlatex is driving me nuts Guy Mayraz
@ 2017-06-22  7:09 ` Nicolas Goaziou
       [not found] ` <6ebbab1b6ff24e3c9141d92c31817f42@SYXPR01MB1022.ausprd01.prod.outlook.com>
  2017-06-22 12:07 ` Rasmus
  2 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2017-06-22  7:09 UTC (permalink / raw)
  To: Guy Mayraz; +Cc: emacs-orgmode

Hello,

Guy Mayraz <guy.mayraz@unimelb.edu.au> writes:

> Org-cdlatex is automatically enabled on all org files

This is not true. You may want to check your configuration files.

Regards,

-- 
Nicolas Goaziou

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

* Re: org-cdlatex is driving me nuts
       [not found] ` <6ebbab1b6ff24e3c9141d92c31817f42@SYXPR01MB1022.ausprd01.prod.outlook.com>
@ 2017-06-22  8:30   ` Guy Mayraz
  0 siblings, 0 replies; 5+ messages in thread
From: Guy Mayraz @ 2017-06-22  8:30 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: Guy Mayraz, emacs-orgmode@gnu.org

[-- Attachment #1: Type: text/plain, Size: 578 bytes --]

O.k. Thanks! It turns out the fault was in my desktop file, which had
cdlatex mode listed in all my org files.

Cheers,

Guy


Guy Mayraz | Lecturer (assistant professor) | Department of Economics |
University of Melbourne
Tel: +61 3 9035 8141 | Mobile: +61 422 893 184

On 22 June 2017 at 17:09, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:

> Hello,
>
> Guy Mayraz <guy.mayraz@unimelb.edu.au> writes:
>
> > Org-cdlatex is automatically enabled on all org files
>
> This is not true. You may want to check your configuration files.
>
> Regards,
>
> --
> Nicolas Goaziou
>
>

[-- Attachment #2: Type: text/html, Size: 1438 bytes --]

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

* Re: org-cdlatex is driving me nuts
  2017-06-22  6:56 org-cdlatex is driving me nuts Guy Mayraz
  2017-06-22  7:09 ` Nicolas Goaziou
       [not found] ` <6ebbab1b6ff24e3c9141d92c31817f42@SYXPR01MB1022.ausprd01.prod.outlook.com>
@ 2017-06-22 12:07 ` Rasmus
  2017-06-22 12:35   ` Carsten Dominik
  2 siblings, 1 reply; 5+ messages in thread
From: Rasmus @ 2017-06-22 12:07 UTC (permalink / raw)
  To: emacs-orgmode

Guy Mayraz <guy.mayraz@unimelb.edu.au> writes:

> (ii) change the org-cdlatex math
> symbol to something totally obscure that wouldn't interfere with my normal
> work?

For what it is worth, option (ii) can be archived with something like this,

(with-eval-after-load 'org
  (define-key org-cdlatex-mode-map "`" nil)
  (org-defkey org-cdlatex-mode-map "¨" 'cdlatex-math-symbol)
  (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify))

Rasmus

-- 
And I faced endless streams of vendor-approved Ikea furniture. . .

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

* Re: org-cdlatex is driving me nuts
  2017-06-22 12:07 ` Rasmus
@ 2017-06-22 12:35   ` Carsten Dominik
  0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2017-06-22 12:35 UTC (permalink / raw)
  To: Rasmus; +Cc: org-mode list

[-- Attachment #1: Type: text/plain, Size: 710 bytes --]

On Thu, Jun 22, 2017 at 8:07 AM, Rasmus <rasmus@gmx.us> wrote:

> Guy Mayraz <guy.mayraz@unimelb.edu.au> writes:
>
> > (ii) change the org-cdlatex math
> > symbol to something totally obscure that wouldn't interfere with my
> normal
> > work?
>
> For what it is worth, option (ii) can be archived with something like this,
>
> (with-eval-after-load 'org
>   (define-key org-cdlatex-mode-map "`" nil)
>   (org-defkey org-cdlatex-mode-map "¨" 'cdlatex-math-symbol)
>   (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify))
>
>
Yes.  Or we could make Org use cdlatex-math-symbol-prefix
and cdlatex-math-modify-prefix, if more people would like to use a
different prefix.

Carsten

[-- Attachment #2: Type: text/html, Size: 1288 bytes --]

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

end of thread, other threads:[~2017-06-22 12:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-22  6:56 org-cdlatex is driving me nuts Guy Mayraz
2017-06-22  7:09 ` Nicolas Goaziou
     [not found] ` <6ebbab1b6ff24e3c9141d92c31817f42@SYXPR01MB1022.ausprd01.prod.outlook.com>
2017-06-22  8:30   ` Guy Mayraz
2017-06-22 12:07 ` Rasmus
2017-06-22 12:35   ` Carsten Dominik

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).