Re: [PATCH] Add margin option to float for figure in ox-latex.el

2020-05-15 Thread Eric S Fraga
Just a minor point: in the patch for the documentation, change "imagen" to "image". -- : Eric S Fraga via Emacs 28.0.50, Org release_9.3.6-631-g48b223

Re: [bug] error on RET in read-only buffer with org-return-follows-link set to t

2020-05-15 Thread Gregor Zattler
Hi Nicolas, Kévin, thanks to both of you: It works again for me. Ciao; Gregor -- -... --- .-. . -.. ..--.. ...-.- * Nicolas Goaziou [2020-05-15; 00:49]: > Kévin Le Gouguec writes: > >> Shouldn't the call to org-return be wrapped in (call-interactively …) >> though? > > Indeed. Done. Thank you

Re: Bug: org-encrypt-entry fails [9.4 (nil @ /home/silipwn/.emacs.d/.local/straight/build/org-mode/)]

2020-05-15 Thread Nicolas Goaziou
Hello, silipwn writes: > The org-encrypt-entry fails to encrypt an entry, with a wrong-type-argument. > I am currently using doom-emacs, and created a corresponding issue > (https://github.com/hlissner/doom-emacs/issues/3123), > where I was told to report the issue upstream. > As hlissner ment

Re: Bug: org-encrypt-entry fails [9.4 (nil @ /home/silipwn/.emacs.d/.local/straight/build/org-mode/)]

2020-05-15 Thread silipwn
On 15.05.2020 17:00, Nicolas Goaziou wrote: Anyway, I pushed a fix in master. Could you try it? The current commit, still results in a error. I had a set the org-crypt-key to nil. It still prompts to use a key. The current backtrace is similar to this: Debugger entered--Lisp error: (error "

Re: [PATCH] Add margin option to float for figure in ox-latex.el

2020-05-15 Thread Pablo Palazon
Thanks Eric, I've done the changes and I attach path files again. From a4ff98eb82397721a152b3c3e51f6a993947140d Mon Sep 17 00:00:00 2001 From: Pablo Palazon Date: Thu, 14 May 2020 16:33:53 +0200 Subject: [PATCH 1/3] ox-latex.el: Add margin to float option for attr_latex in images * lisp/ox-latex

Re: [PATCH] Add margin option to float for figure in ox-latex.el

2020-05-15 Thread Pablo Palazon
Thanks eric, I've done the changes and I attach all the patches. On Fri, May 15, 2020 at 2:21 PM Eric S Fraga wrote: > Just a minor point: in the patch for the documentation, change "imagen" > to "image". > -- > : Eric S Fraga via Emacs 28.0.50, Org release_9.3.6-631-g48b223 > From 46a7fcecf5d27

Re: Bug: org-encrypt-entry fails [9.4 (nil @ /home/silipwn/.emacs.d/.local/straight/build/org-mode/)]

2020-05-15 Thread Nicolas Goaziou
silipwn writes: > The current commit, still results in a error. I had a set the > org-crypt-key to nil. This is not a valid value: `org-crypt-key' must be a string. > It still prompts to use a key. I think setting `org-crypt-key' to nil means: use all keys in your key ring. Some of them are n

Suggestion: would like a customize setting to suppress multi-newline insertion on Alt+ENTER

2020-05-15 Thread tiburb...@gmail.com
When hitting Alt+ENTER at the end of a bullet list item, a new item is inserted below the current line. However, there is an evaluation of the line spacing below the list which can result in a “double spacing” of list items, which I personally never want. In org-list.el, the function org-list-separ

Re: Suggestion: would like a customize setting to suppress multi-newline insertion on Alt+ENTER

2020-05-15 Thread Nicolas Goaziou
Hello, "tiburb...@gmail.com" writes: > When hitting Alt+ENTER at the end of a bullet list item, a new item is > inserted below the current line. However, there is an evaluation of the line > spacing below the list which can result in a “double spacing” > of list items, which I personally never

Re: Bug - all org files open as if visibilty is set to "showeverything"

2020-05-15 Thread Nicolas Goaziou
Hello, Charles Millar writes: > I recall seeing these messages, but did not realize that this change > was going to effect all org files and by default, use lots and lots of > space when an org file is opened. That's true. On large files, this is not the best set-up. But I assume anyone opening

RE: Re: Suggestion: would like a customize setting to suppress multi-newline insertion on Alt+ENTER

2020-05-15 Thread tiburbage
Thx – that is what I was missing. I was looking at org-list-* variables, but can see this is more generalized in usage. From: Nicolas GoaziouSent: Friday, May 15, 2020 12:59 PMTo: tiburb...@gmail.comCc: Org-modeSubject: Re: Suggestion: would like a customize setting to suppress multi-newline insert

Re: [Solved]: Bug: org-encrypt-entry fails [9.4 (nil @ /home/silipwn/.emacs.d/.local/straight/build/org-mode/)]

2020-05-15 Thread silipwn
Hello, On 15.05.2020 21:17, Nicolas Goaziou wrote: This is not a valid value: `org-crypt-key' must be a string. On removing the variable, it works fine. The GPG configuration directly takes my mail address to get the key. The other issue was I also had a revoked key with the same email, that

Re: [PATCH] Add margin option to float for figure in ox-latex.el

2020-05-15 Thread Kyle Meyer
Pablo Palazon writes: > I've created a path to add a new option to float properties for figures on > latex. This is my first change for org-mode, and I don't really sure if > this is the correct way to do it. Thank you! > * lisp/ox-latex.el (org-latex--inline-image): Include margin option > to c