Re: (✿╹◡╹) there are always ways to go - Re: Sad tweet

2021-05-24 Thread Ypo
I think he is the creator of the magit package. May 24, 2021 23:02:56 Jean Louis : > * Ypo [2021-05-24 00:30]: >> I've read this: >> >> "Contributing to Emacs is so frustrating. It's not worth it for minor things >> and if I cannot get some experience and confidence with minor things, then I

Re: misaligned tab and spaces in src block

2021-05-24 Thread Tim Cross
Michael Dauer writes: > Hi, > > #+begin_src elisp :results output > (aaa > bbb ( > #x09#x09#x09ccc)) > ccc > #+end_src > looks like this in the editor > (aaa > bbb ( > ccc)) > ccc > > Line 1-3 were indented automatically by pressing Tab. In line 4 I inserted 6 >

Re: Empty headline titles unsupported: Bug?

2021-05-24 Thread David Masterson
Sebastian Miele writes: > Sebastian Miele writes: >> #+BEGIN_EXAMPLE >> ,* A >> ,* :B: >> ,* C >> #+END_EXAMPLE >> >> org-element-parse-buffer and org-match-sparse-tree make the second >> headline have title ":B:" and no tags. > > Currently org-syntax.org says that "TITLE can be made of any

Re: Quick help when pressing '?' in an agenda view?

2021-05-24 Thread Jean Louis
* Nathaniel W Griswold [2021-05-24 15:08]: > I noticed that org-agenda-mode stands out in that '?' is not bound > to open some kind of help by default. Org agenda is unique in this, > it is the first out of many views i have used that did not have '?' > bound to open some kind of help. Seems to

(✿╹◡╹) there are always ways to go - Re: Sad tweet

2021-05-24 Thread Jean Louis
* Ypo [2021-05-24 00:30]: > I've read this: > > "Contributing to Emacs is so frustrating. It's not worth it for minor things > and if I cannot get some experience and confidence with minor things, then I > likely won't ever make major contributions." >

Re: Bug: Double trailing slash for default candidate in org-refile-get-target [9.4 (9.4-7-g3eccc5-elpaplus @ /home/gustavo/.emacs.d/elpa/org-plus-contrib-20200921/)]

2021-05-24 Thread Gustavo Barros
On Mon, 24 May 2021 at 13:34, Bhavin Gandhi wrote: Yes, I have attached an updated patch. Looks good to me. Thank you! We are indeed aligned. The only additional thing I discovered was the reason `org-refile--get-location' works despite having double slashes. That was new for me.

BUG: eval macros not working anymore

2021-05-24 Thread Michael Dauer
at least not compatible with before. Probably caused by commit 8abdbbee395f284f2262a89187d662eaf40080b1. originally correct macro ("macroA" . "(eval do-something-dynamically-at-macro-expansion)") How should this be achieved now? (functionp "any-string") is nil

Re: Bug: Double trailing slash for default candidate in org-refile-get-target [9.4 (9.4-7-g3eccc5-elpaplus @ /home/gustavo/.emacs.d/elpa/org-plus-contrib-20200921/)]

2021-05-24 Thread Bhavin Gandhi
On Sun, 23 May 2021 at 23:53, Timothy wrote: > > Hi Bhavin! Great to see you on the mailing list :) > > Thank you so much for looking at the bugs, investigating one, /and/ > working out a fix. That's absolutely fantastic of you! Thank you for a welcoming message! :) On Mon, 24 May 2021 at

misaligned tab and spaces in src block

2021-05-24 Thread Michael Dauer
Hi, #+begin_src elisp :results output (aaa bbb ( #x09#x09#x09ccc)) ccc #+end_src looks like this in the editor (aaa bbb ( ccc)) ccc Line 1-3 were indented automatically by pressing Tab. In line 4 I inserted 6 spaces manually. This is what I would expect to find in line

Problem inserting meeting in agenda using "pm" time indicators

2021-05-24 Thread Eric S Fraga
Hello all, In the past, I have been able to insert new entries in the diary file using am/pm times, e.g. "2pm-3pm An entry", using "i d" in the agenda view. When I try this now, with org up to date from git, I get this backtrace: , | Debugger entered--Lisp error: (error "Invalid duration

Re: sort “on-the-fly” in org-agenda-view

2021-05-24 Thread Daniel Clemente
Sorry for the late reply. You can press M-up / M-down to manually sort agenda items once the agenda view is open. It's just a convenient way to do minor adjustments. No files are actually changed. On Mon, Apr 19, 2021 at 12:55 PM Ben Sima wrote: > Heh, I just found myself wanting to do this. I

Re: reevaluating org-x11idle-exists-p with new org-clock-x11idle-program-name

2021-05-24 Thread Tim Cross
Julien Cubizolles writes: > I'm using a custom python program to display x11 idle time. I've set > org-clock-x11idle-program-name accordingly but org-x11idle-exists-p is > still nil. I'm guessing it's defvar'ed in org-clock.el before > org-clock-x11idle-program-name is set. Evaluating the

Org-capture %K "Link to the currently clocked task" link with id?

2021-05-24 Thread Nathaniel W Griswold
> > On May 19, 2021, at 8:26 AM, Nathaniel W Griswold > wrote: > > Looking at the source (org-capture.el), it appears org-capture doesn't allow > you to make a permalink for "Link to the currently clocked task", or %K in > your template. > > I use (org-id-link-to-org-use-id t) because i

[PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-24 Thread Juan Manuel Macías
Hi all, The `quote' block is exported to LaTeX as a `quote' environment. However, standard LaTeX classes have two environments for quotes: `quote' and `quotation', with certain format differences: it is often said that `quotation' is intended for longer quotes with several paragraphs and applies

Quick help when pressing '?' in an agenda view?

2021-05-24 Thread Nathaniel W Griswold
I noticed that org-agenda-mode stands out in that '?' is not bound to open some kind of help by default. Org agenda is unique in this, it is the first out of many views i have used that did not have '?' bound to open some kind of help. Seems to be convention in pretty much anything builtin to

Re: Empty headline titles unsupported: Bug?

2021-05-24 Thread Sebastian Miele
Ihor Radchenko writes: > Either way is fine while it is consistent. I just tried to test some > edge cases with existing org-element code: > > * TODO COMMENT :tag: > > org-element-at-point returns :raw-value "". > > * TODO :tag: > > :raw-value ":tag:" Concerning tags, it is the expected behavior

Re: Empty headline titles unsupported: Bug?

2021-05-24 Thread Sebastian Miele
Sebastian Miele writes: > #+BEGIN_EXAMPLE > ,* A > ,* :B: > ,* C > #+END_EXAMPLE > > org-element-parse-buffer and org-match-sparse-tree make the second > headline have title ":B:" and no tags. Currently org-syntax.org says that "TITLE can be made of any character but a new line. Though, it

Re: Empty headline titles unsupported: Bug?

2021-05-24 Thread Sebastian Miele
Nicolas Goaziou writes: > You cannot distinguish the following two cases: > > * :mytag: > * :myheadline: In my opinion, the cleanest solution would be to allow not only tags specifications of one or more tags, but also the tags specification ":" of zero tags in the headline. Then in *

Re: declaring :var in a property drawer

2021-05-24 Thread Greg Minshall
Eric, > I would suggest it is intentional: setting a header property means it > applies to *all* src blocks. thanks. but, in this case, all source blocks are being tangled to the same file. which, for many (most?) languages (but not elisp), means the variable is going to be defined (and

Re: declaring :var in a property drawer

2021-05-24 Thread Eric S Fraga
On Sunday, 23 May 2021 at 17:25, Greg Minshall wrote: > hi. i noticed the following behavior, and am curious if it is > intentional. I would suggest it is intentional: setting a header property means it applies to *all* src blocks. -- : Eric S Fraga via Emacs 28.0.50, Org

reevaluating org-x11idle-exists-p with new org-clock-x11idle-program-name

2021-05-24 Thread Julien Cubizolles
I'm using a custom python program to display x11 idle time. I've set org-clock-x11idle-program-name accordingly but org-x11idle-exists-p is still nil. I'm guessing it's defvar'ed in org-clock.el before org-clock-x11idle-program-name is set. Evaluating the defvar of org-x11idle-exists-p afterwards

Re: Sad tweet

2021-05-24 Thread Kévin Le Gouguec
(Took the liberty of CC'ing Jonas to make sure he can correct any mischaracterization, and to show our support, such as it is) band...@gnu.org writes: > Ypo writes: > >> I've read this: >> >> "Contributing to Emacs is so frustrating. It's not worth it for minor >> things and if I cannot get some