Re: Q: Attachments and IDs?

2024-07-11 Thread Daniel Fleischer
You can override the ID generation and the ID-to-path function to create an attachment hierarchy of your liking, e.g. ATTACH-DIR/year/month-day/*files* Checkout `org-attach-id-to-path-function-list' and `org-id-new'. Daniel

Org site is down

2023-11-05 Thread Daniel Fleischer
Orgmode.org appears to be down.

Re: feature request: easy embedding of images

2023-02-21 Thread Daniel Fleischer
s for the attached image, see link https://github.com/abo-abo/org-download/blob/master/org-download.el#L178-L184 It's not a prompt, it's a template and you can fill the alt description. -- Daniel Fleischer

Re: feature request: easy embedding of images

2023-02-20 Thread Daniel Fleischer
. I want to suggest the package https://github.com/abo-abo/org-download which I use all time, for dragging and dropping images and for taking screeshots. -- Daniel Fleischer

Re: Question about deadline/schedule events date text property

2023-01-18 Thread Daniel Fleischer
Ihor Radchenko [2023-01-18 Wed 13:23] wrote: > Note that `org-fix-agenda-info' converts the 'date property back to some > other format... (yes, that's kind of crazy) Thanks, that could be useful. -- Daniel Fleischer

Re: org-todo-keywords and task sequence

2023-01-17 Thread Daniel Fleischer
Daniel Fleischer [2023-01-17 Tue 10:10] wrote: > Don't let the cyclical switching dictates the meaning, it's just an > implementation detail, done for simplicity. Hope it helped. Put another way, if you define A B | C D E and the UI switching is A->B->C->D->E->A it doe

Re: org-todo-keywords and task sequence

2023-01-17 Thread Daniel Fleischer
ord using shortcuts you define e.g. #+TODO: TODO(t) | DONE(d) Don't let the cyclical switching dictates the meaning, it's just an implementation detail, done for simplicity. Hope it helped. -- Daniel Fleischer

Question about deadline/schedule events date text property

2023-01-08 Thread Daniel Fleischer
t properties of the events. -- Daniel Fleischer

Re: [BUG] issue with texmathp [9.6 (release_9.6-22-g78d283 @ /home/jds6696/.emacs.d/straight/build/org-mode/)]

2023-01-07 Thread Daniel Fleischer
ide a math environment for easier parsing and you still managed to solve that without all the previous regexps. Thank you, -- Daniel Fleischer

Re: [BUG] issue with texmathp [9.6 (release_9.6-22-g78d283 @ /home/jds6696/.emacs.d/straight/build/org-mode/)]

2023-01-06 Thread Daniel Fleischer
and was also compiled perfectly to HTML/latex. -- Daniel Fleischer

Re: Intention of verbatim text?

2023-01-03 Thread Daniel Fleischer
ferent semantics but are rendered the same (by default); they could be rendered differently, depending on a website's CSS. Maybe use the semantics for your own org-html converter. -- Daniel Fleischer

Bug? Error in HTML export of links with search options

2022-12-20 Thread Daniel Fleischer
uffer." Also when having links of the form [[File.clj::defn]] where `defn' is a search string. Main 04d2cc59. -- Daniel Fleischer

Re: [BUG] beamer export

2022-09-29 Thread Daniel Fleischer
Hi, I'm on vacation for the next month. I can look at it when I'm back. On Thu, Sep 29, 2022, 03:44 Ihor Radchenko wrote: > Leo Butler writes: > > > The following Org document shows a bug in the beamer exporter. > > Confirmed on main. > > There are two bugs reported here: > 1. ox-latex export

Re: [Patch] Pre-/postpend arbitrary LaTeX code to a section

2022-09-21 Thread Daniel Fleischer
tion I also think it should be a general export feature, not specific to latex. In that case you need a general syntax, e.g. properties like "export_prefix", "export_postfix" and the code should be as simple as possible, i.e. copying the text one line before/after the headline. -- Daniel Fleischer

Re: Suggested Syntax for cancelled checkboxes: [-] as non-blocking dependency

2022-09-14 Thread Daniel Fleischer
resent what you wrote down and what's left does not include the "canceled" tasks. -- Daniel Fleischer

Re: Have all the tags of a heading, with a tag hierarchy

2022-08-28 Thread Daniel Fleischer
you can search for it instead of searching all the individual members. I think it makes sense, but you might want these to be related. -- Daniel Fleischer

Re: [PATCH]: ox-latex: omit empty date

2022-08-01 Thread Daniel Fleischer
emacs--- via "General discussions about Org-mode." writes: > My use case is very niche and be solved by changing my custom latex date > command by renaming it as for example \mydate. > > Adding extra options like with_date:nil seems overkill for this small issue. I agree; I think we shouldn't

Re: [PATCH]: ox-latex: omit empty date

2022-07-31 Thread Daniel Fleischer
Daniel Fleischer [2022-07-31 Sun 18:25] wrote: > I would reckon people don't want the date displayed when they set it to > nil. But removing the line \date{} just prints today's date. I don't > understand the purpose of the patch. In other words \date{} is what prevents from the d

Re: [PATCH]: ox-latex: omit empty date

2022-07-31 Thread Daniel Fleischer
emacs--- via "General discussions about Org-mode." [2022-07-29 Fri 14:49] wrote: > In the attachment you can find a patch which omits an empty \date{} line in > a latex document when the option to include the date is set to nil or when > no date is provided. This empty date line can cause

Re: [PATCH] ob-latex: Added support for including files with a relative path

2022-07-05 Thread Daniel Fleischer
ost expected behavior. If I understand you correctly, changing the latex processing directory enables you to use relative paths in macros such as \input{}. If so, it's as trivial as adding `-cd' flag to `org-latex-pdf-process` when using `latexmk`. -- Daniel Fleischer

Re: [PATCH] ob-latex: Added support for including files with a relative path

2022-07-05 Thread Daniel Fleischer
der argument. The problem with this approach is that, files needed to be > included with their absolute path. Hi, adding an "input" type of header is one option. What about adding a call to resolve relative file names instead, thus solving maybe other needs in addition? -- Daniel Fleischer

Re: [PATCH] Re: ox-latex table tabbing support.

2022-06-26 Thread Daniel Fleischer
ulate-terminal): Avoid errors if the whole > | decoded string is eight-bit characters. Don't attempt to save the > | string for next iteration in that case. > | * test/lisp/term-tests.el (term-decode-partial) > | (term-undecodable-input): New tests. > ` Thanks for the feedback! Applied to master 321bfb88b5. -- Daniel Fleischer

[PATCH] Re: ox-latex table tabbing support.

2022-06-26 Thread Daniel Fleischer
xtreme case, org-table--org-tabbing does > > (let ((output (format ...))) >output) > >rather than > > (format ...) Thanks for the code feedback; patch attached. >From b041dd62cbeea924ea6d2b6dee9b1142aef968ec Mon Sep 17 00:00:00 2001 From: Daniel Fleischer Date: Sun, 26 Jun 2022 17

Re: [PATCH] describe how to override Author

2022-06-26 Thread Daniel Fleischer
ys to do that, depending on 2 spaces here. Looks good and to the point. -- Daniel Fleischer

Re: ox-latex table tabbing support.

2022-06-24 Thread Daniel Fleischer
ng in git. Daniel Fleischer

Re: ox-latex table tabbing support.

2022-06-24 Thread Daniel Fleischer
n the commit logs). That patch was actually just a diff, so I created a commit so it was my name. I came up with the "created-by" field to attribute the work to Bob. Is there another way it should have been done? Daniel Fleischer

Re: [PATCH] Improve docstrings of agenda date navigation commands

2022-06-20 Thread Daniel Fleischer
good. Merged at e7e37c5b2. Best, -- Daniel Fleischer

Re: ox-latex table tabbing support.

2022-06-20 Thread Daniel Fleischer
Hi Bob, Thank you very much for the patch. It was merged to master in 4a0d951c. Also, you were added to the orgmode contributes at https://orgmode.org/worg/contributors.html. Thanks for the contribution. Best, -- Daniel Fleischer

Re: [BUG] Cursor is moved after changing list bullets

2022-06-14 Thread Daniel Fleischer
n call: emacs -Q -L ./Projects/org-mode/lisp/ -l org list.org Then put the cursor on one of the hyphens and change its style using S-right. The bullet will change and the cursor will move to the beginning of a word instead of stay in place. -- Daniel Fleischer

[BUG] Cursor is moved after changing list bullets

2022-06-14 Thread Daniel Fleischer
. It used to not move which is useful to when trying different bullet styles. This is due to the changes in `org-list-struct-apply-struct'. I tried to debug it but I'm not sure what was the issue the patch was meant to solve. Thanks, -- Daniel Fleischer

Re: [PATCH] Don't quote symbols in defcustom types

2022-06-14 Thread Daniel Fleischer
Thanks for the patch, merged. Daniel Fleischer

Re: [PATCH] Don't quote symbols in defcustom types

2022-06-14 Thread Daniel Fleischer
quot;Text properties" 'text-properties))) > + (const :tag "Overlays" overlays) > + (cnost :tag "Text properties" text-properties))) Typo here `cnost`. -- Daniel Fleischer

Re: Org default is Left-to-right

2022-06-14 Thread Daniel Fleischer
Emacs should align the text and it should carry naturally into Org. -- Daniel Fleischer

Re: [PATCH] New remote resource download policy

2022-06-12 Thread Daniel Fleischer
confirm-regexp'. I'll definitely give it a try. -- Daniel Fleischer

Re: [PATCH] org.el (org-latex-preview): With an active region, act on it

2022-06-10 Thread Daniel Fleischer
Sébastien Miquel writes: > Thanks for your comment and testing this. > > Note that I do not have merge access to the repository. OK, I merged it now. Thanks for the contribution! -- Daniel Fleischer

Re: [PATCH] org.el (org-latex-preview): With an active region, act on it

2022-06-08 Thread Daniel Fleischer
, but I find it often too slow > and unnecessary. Hi Miquel, thanks for the patch! It's useful and works nicely - both in creating and removing the previews. Let's give it a couple more days for feedback and then feel free to merge the patch. Thanks, -- Daniel Fleischer

Re: [PATCH] manual: fix variable name

2022-06-06 Thread Daniel Fleischer
Thanks, merged. -- Daniel Fleischer

Re: [PATCH] Avoid ignoring LaTeX export output errors when org-latex-pdf-process is a list

2022-05-22 Thread Daniel Fleischer
rg-compile-file'. Looks good. So the log buffer is going to be a concatenation of all the logs. Will ox-latex parse the longer log in a meaningful way? Is it just for the user to find issues by herself after a failed compilation? Daniel Fleischer

Re: [BUG] HTML export of buffer with fringe indicators

2022-05-21 Thread Daniel Fleischer
Ihor Radchenko [2022-05-20 Fri 16:36] wrote: > I am unable to reproduce your problem on my side using the following > steps. Ok, thanks anyway. BTW, even the steps you took are useful for me for future debugging. Best, Daniel Fleischer

Re: [BUG] HTML export of buffer with fringe indicators

2022-05-19 Thread Daniel Fleischer
Ihor Radchenko [2022-05-19 Thu 21:43] wrote: > What if you try to run M-: (htmlize-buffer) > on your file? It works, creating an HTML buffer that can be opened and looks good. -- Daniel Fleischer

Re: [BUG] HTML export of buffer with fringe indicators

2022-05-18 Thread Daniel Fleischer
-rule) (inline-src-block . org-html-inline-src-block) (inlinetask . org-html-inlinetask) (inner-template . org-html-inner-template) (italic . org-html-italic) (item . org-html-item) (keyword . org-html-keyword) (latex-environment . org-html-latex-environment) (latex-fragment . org-html-latex-fragment) (line-break . org-html-line-break) (link . org-html-link) (node-property . org-html-node-property) (paragraph . org-html-paragraph) ...) :exported-data # :input-buffer "כתיבה.txt" :input-file "/Users/danielfleischer/Doc..." :html-doctype "xhtml-strict" :html-container "div" :html-content-class "content" :description nil :keywords nil :html-html5-fancy t :html-link-use-abs-url nil ...)) org-export-as(html t nil nil (:output-file "כתיבה.html")) org-export-to-file(html "כתיבה.html" nil t nil nil nil) org-html-export-to-html(nil t nil nil) (org-open-file (org-html-export-to-html nil s v b)) (if a (org-html-export-to-html t s v b) (org-open-file (org-html-export-to-html nil s v b))) (lambda (a s v b) (if a (org-html-export-to-html t s v b) (org-open-file (org-html-export-to-html nil s v b(nil t nil nil) org-export-dispatch(nil) funcall-interactively(org-export-dispatch nil) command-execute(org-export-dispatch) Thanks, -- Daniel Fleischer

[BUG] HTML export of buffer with fringe indicators

2022-05-17 Thread Daniel Fleischer
to HTML. I get the error cons: Args out of range: " ", 0, -3 Org cdbb1c9633. Emacs eaa198cd75. Thanks, -- Daniel Fleischer

Re: [PATCH] (v3) New LaTeX code export option: engraved

2022-05-12 Thread Daniel Fleischer
Looks good. I had to update `engrave-faces' to 0.3 because of new variables/functions and it works now. It does what it says on the box so let's move forward introducing these changes and be open to feedback. Thank you very much for introducing this feature! -- Daniel Fleischer

Re: Org-ref not working when exporting to LaTeX

2022-05-11 Thread Daniel Fleischer
ly formatted > results without using bibtex/biblatex as the citation processor. Oops! Thanks for correcting my answer and mentioning the difference between the CSL and bibtex engines. -- Daniel Fleischer

Re: Regarding arbitrary Org blocks

2022-05-11 Thread Daniel Fleischer
atures. The special buffer is for major modes which are not orgmode such as programming languages or latex which use different completions/highlighting/minor-modes and editing them in orgmode is a hassle. -- Daniel Fleischer

Re: Org-ref not working when exporting to LaTeX

2022-05-11 Thread Daniel Fleischer
ey "acm:code" literally printed on the > PDF file, in a bold font. Hi, org-ref uses its own export engine which you call via (C-c C-e r p). Please try that and report back if there are still issues. -- Daniel Fleischer

Re: Recent changes in org-fold regarding emphasize visibility

2022-05-08 Thread Daniel Fleischer
Ihor Radchenko writes: > I have made changes in invisible edit handling. > Now, when using 'text-properties style, > org-fold-check-before-invisible-edits ignores folded links just like it > does with overlays style. > > The commit is 2e4ed52b1. Looks good; thank you I

Re: [PATCH] New LaTeX code export option: engraved

2022-05-07 Thread Daniel Fleischer
.? Best, -- Daniel Fleischer

Re: Recent changes in org-fold regarding emphasize visibility

2022-05-07 Thread Daniel Fleischer
ase, even formalize it into tests? Best, -- Daniel Fleischer

Re: Recent changes in org-fold regarding emphasize visibility

2022-05-05 Thread Daniel Fleischer
ror : it inserts the text without unfolding; most dangerous. - show : unfold, insert the text without displaying it; dangerous. - show-and-error: unfold but inserts the text anyways. Thanks, -- Daniel Fleischer

Re: [PATCH] New LaTeX code export option: engraved

2022-05-05 Thread Daniel Fleischer
bit about the different code highlighting options in order to understand what you offer. Best, -- Daniel Fleischer

Re: [PATCH] New LaTeX code export option: engraved

2022-05-05 Thread Daniel Fleischer
bit about the different code highlighting options in order to understand what you offer. Best, -- Daniel Fleischer

Recent changes in org-fold regarding emphasize visibility

2022-05-04 Thread Daniel Fleischer
ded regions. I don't understand why emphasize markers are treated as folded text. `org-hide-emphasis-markers` is set to non-nil. Best, -- Daniel Fleischer

Re: How to export to markdown programmatically without the table of contents?

2022-05-03 Thread Daniel Fleischer
Karl Voit writes: > Could it be that I don't have "md" as backend somehow? Is there a > hidden requirement? The variable `org-export-backends` default value is '(ascii html icalendar latex odt) so you need to add 'md. -- Daniel Fleischer

Re: [BUG] - Statistics cookie is part of the org heading title

2022-05-03 Thread Daniel Fleischer
regex. -- Daniel Fleischer

Re: How to export to markdown programmatically without the table of contents?

2022-05-02 Thread Daniel Fleischer
Jeremie Juste [2022-05-01 Sun 22:29] wrote: > I know where to look now: > > (info "(org) Publishing options") That's a good resource!

Re: [tip] Org speed commands improved

2022-04-27 Thread Daniel Fleischer
at Org speed commands are activated anywhere in the > header (not just at the beginning of the line) *or* when point is at the > very beginning of the buffer. This, in my opinion, improves the > navigation speed: Very nice idea; I'll give it a try, thanks! -- Daniel Fleischer

Re: Maintenance Request

2022-04-21 Thread Daniel Fleischer
Edouard Debry [2022-04-21 Thu 00:58] wrote: > Thanks for offering to maintain 'ox-latex.el'. > > One of the thing that could be improved is the generation of svg > images through tikz. Currently, unless I am mistaken, it does > not work well. I had to tweak 'ox-latex.el' to make it work again. >

Re: Feedback on Emacs-Jupyter

2022-01-08 Thread Daniel Fleischer
Hi, I submitted an issue regarding connection file format incompatibility. Other than that I'm looking forward trying your package! -- Daniel Fleischer

Re: How to add font-lock keywords

2021-12-23 Thread Daniel Fleischer
the new fontification. Thanks, it works with the quote. -- Daniel Fleischer

How to add font-lock keywords

2021-12-11 Thread Daniel Fleischer
Hi, I want to add custom keywords to be highlighted. I used (font-lock-add-keywords nil '(("books" . org-level-4)) t) but nothing happens after I restart orgmode or call 'font-lock-update'. -- Daniel Fleischer

Re: Org Mode "Contribute", "Maintenance" pages don't give repository.

2021-12-05 Thread Daniel Fleischer
repo link, i.e. the code earlier and more prominently for those who just want to jump and examine the code. -- Daniel Fleischer

Re: Org Mode "Contribute", "Maintenance" pages don't give repository.

2021-12-04 Thread Daniel Fleischer
commit as an Org maintainer" section. The git.sv.gnu.org is a shorthand for git.savannah.gnu.org. Thanks for reporting this, -- Daniel Fleischer

Maintenance Request

2021-11-22 Thread Daniel Fleischer
Hi all, I would like to maintain the 'ox-latex.el' file. It's one of the many files created by Nicolas but few of the files that are not maintained (by him). I have a long experience (14) with latex and relatively long experience with org->latex. Best, -- Daniel Fleischer

Re: [BUG] org-mode binds C-c C-TAB, which seems illegal [9.5 (9.5-g0a86ad @ /home/il/.config/emacs/elpa/org-9.5/)]

2021-11-19 Thread Daniel Fleischer
Ingo Lohmar [2021-11-17 Wed 21:19] wrote: > Can people actually enter "C-c C-TAB" into their emacs (how?), or has > everybody has just bound another key in their config? I've noticed it a couple of weeks ago; just rebound org-force-cycle-archived to (kbd "C-c C-") -- Daniel Fleischer

Re: Org default is Left-to-right

2021-10-30 Thread Daniel Fleischer
. I guess I'll use a hook in my config. You could also turn it back to nil and see if people complain, as part of 9.6. -- Daniel Fleischer

Org default is Left-to-right

2021-10-30 Thread Daniel Fleischer
to override it using a hook or toggling it with some elisp code (like I did). Thanks, -- Daniel Fleischer

[PATCH] Fast tag de-selection face

2021-10-26 Thread Daniel Fleischer
Bumping a patch; it solves a minor bug in which the tags in the fast tag selection buffer do not toggle their face back to default after being selected and deselected. Attached. >From 50fd7e953eed7c339886722c8247d9e492113eb8 Mon Sep 17 00:00:00 2001 From: Daniel Fleischer Date: Fri, 8

Re: MathJax extension does not work

2021-10-10 Thread Daniel Fleischer
Daniel Fleischer writes: > Not sure why the "#+HTML_MATHJAX: mathtools.js" doesn't do anything. > Need further investigation. After examining the function 'org-html--build-mathjax-config' in 'ox-html.el' and also looking at the default values of - 'org-html-mathjax-opti

Re: MathJax extension does not work

2021-10-10 Thread Daniel Fleischer
rc HTML window.MathJax = { loader: {load: ['[tex]/mathtools']}, tex: {packages: {'[+]': ['mathtools']}} }; #+end_src After that it worked. Not sure why the "#+HTML_MATHJAX: mathtools.js" doesn't do anything. Need further investigation. -- Daniel Fleischer

Re: [PATCH] Bug: Tag Selection Face Doesn't Toggle

2021-10-08 Thread Daniel Fleischer
> Daniel Fleischer writes: > >> Hi, when selecting tags using fast selection and then de-selecting, the >> face doesn't toggle back to regular face. >> It's better to have a default face instead of 'org-default face. >From f269d3ad99b8ad570c19961831f38653046f07fb Mo

[PATCH] Bug: Tag Selection Face Doesn't Toggle

2021-10-08 Thread Daniel Fleischer
Daniel Fleischer writes: > Hi, when selecting tags using fast selection and then de-selecting, the > face doesn't toggle back to regular face. > > Fast selection means `org-use-fast-tag-selection' is t. See attached. >From 0352757d7012dc543bae4039deaed7bbd401bb9f Mon Sep 17 00:

Re: Maintainer Duties

2021-10-07 Thread Daniel Fleischer
Daniel Fleischer [2021-10-06 Wed 18:05] wrote: > Only 30 out of the 122 Elisp files have a maintainer. I'm interested in > maintaining one or more files but I'm not sure what it means. Can we > make it clearer, as perhaps other people are interested and want to > know. Th

Maintainer Duties

2021-10-06 Thread Daniel Fleischer
(semantics). 5. Review all patches related to the file and then approve them or order a rework. Finally, merge them. Or maybe some other aspects? Thanks, -- Daniel Fleischer

Bug: Tag Selection Face Doesn't Toggle

2021-10-06 Thread Daniel Fleischer
. Emacs 29.0.50, hash 9f041cdfaca0f3def74eb7d3348bbf35c12bcc5b. -- Daniel Fleischer

Re: Some broken links in pages under https://orgmode.org/worg/org-contrib/babel

2021-10-05 Thread Daniel Fleischer
Analysis]] Pushed a fix for 2 HTML links fixes. Pushed a fix for "data-collection-analysis". - "org-check" needs refactor of the latex section in order to compile. - "org-contrib/babel/library-of-babel" not sure why it doesn't appear on the server because the file compiles locally to HTML. -- Daniel Fleischer

Re: Some broken links in pages under https://orgmode.org/worg/org-contrib/babel

2021-10-04 Thread Daniel Fleischer
t; *** > [[https://orgmode.org/worg/org-contrib/babel/examples/org-check.html][Checking > Your Org Mode Configuration]] > *** > [[https://orgmode.org/worg/org-contrib/babel/examples/data-collection-analysis.html][Data > Collection and Analysis]] -- Daniel Fleischer

Debbugs Usage

2021-10-03 Thread Daniel Fleischer
Hi, is debbugs org-mode being used? -- Daniel Fleischer

Re: Capture abort: Symbol’s function definition is void: turn-on-org-provide

2021-09-23 Thread Daniel Fleischer
Joseph Vidal-Rosset writes: > To capture an email and to link this message for gnus, I get now this > error message: > > Capture abort: Symbol’s function definition is void: turn-on-org-provide What is your capture template? -- Daniel Fleischer

bug#50555: [PATCH] Re: bug#50555: [BUG] Org Latex export doesn't handle src blocks correctly

2021-09-18 Thread Daniel Fleischer
Younes Ben El writes: > Daniel Fleischer writes: > > Here is the hint: since “minted” is using a python package (pygments) for > the highlighting, one need to add the > “-shell-escape” to the call. Other than that, everything works as > planned. Since it’s a spec

bug#50555: [BUG] Org Latex export doesn't handle src blocks correctly

2021-09-18 Thread Daniel Fleischer
uot;minted", I'll add a comment in the manual. If you feel that there is still an issue with the [], please provide an emacs -Q recipe that shows it, after adding the "-shell-escape" flag. -- Daniel Fleischer

bug#50555: [BUG] Org Latex export doesn't handle src blocks correctly

2021-09-18 Thread Daniel Fleischer
g latex file and/or specify why it's not compiling? -- Daniel Fleischer

Re: [PATCH] Re: [BUG] Creating sparse tree with regexp property matches

2021-09-17 Thread Daniel Fleischer
ect. Thanks Timothy for pushing this. I just received my FSF assignment so looking forward to contributing more. Best, -- Daniel Fleischer

Re: [PATCH] Re: [BUG] Creating sparse tree with regexp property matches

2021-09-16 Thread Daniel Fleischer
> Attached is a patch with improvement to documentation regarding regular > expressions. Hi, how do I get the patch approved/committed to org? -- Daniel Fleischer

Re: [BUG?] org-agenda not showing entries with diary sexp timestamps

2021-09-10 Thread Daniel Fleischer
<%%(diary-float t 4 2)> #+end_example -- Daniel Fleischer

Re: [BUG?] org-agenda not showing entries with diary sexp timestamps

2021-09-10 Thread Daniel Fleischer
Eric S Fraga writes: > What works for me, for diary sexp entries, is putting the time in the > heading: > > * 09:00-10:00 Weekly meeting > <%%(diary-cyclic 7 9 10 2021)> Actually, that is how the manual explain their usage. [[info:org#Timestamps]] -- Daniel Fleischer

Re: [BUG?] org-agenda not showing entries with diary sexp timestamps

2021-09-10 Thread Daniel Fleischer
t; SCHEDULED: <%%(diary-cyclic 7 9 10 2021) 9:00-10:00> > I can reproduce; adding the hour makes the event not appear unless it has a DEADLINE or SCHEDULED. -- Daniel Fleischer

[PATCH] Re: [BUG] Creating sparse tree with regexp property matches

2021-09-02 Thread Daniel Fleischer
Attached is a patch with improvement to documentation regarding regular expressions. Best, Daniel Fleischer >From d3d1dcbc5f62ea111e7bcd1741114cae6b1280c5 Mon Sep 17 00:00:00 2001 From: Daniel Fleischer Date: Tue, 31 Aug 2021 20:01:47 +0300 Subject: [PATCH] org-manual: added section ab

Re: [BUG] Creating sparse tree with regexp property matches

2021-09-01 Thread Daniel Fleischer
ly to the info node. I did "discover" Emacs regular expression node which I think is friendlier than Elisp's (and contains it) so I'll replace the link; see Daniel Fleischer

Re: [BUG] Creating sparse tree with regexp property matches

2021-08-31 Thread Daniel Fleischer
Hi Timothy, Attached is my patch. Best, *Daniel Fleischer* >From 05602a3eb453672893e7e92cc0384e1b6b7784aa Mon Sep 17 00:00:00 2001 From: Daniel Fleischer Date: Tue, 31 Aug 2021 20:01:47 +0300 Subject: [PATCH] org-manual: added section about regular expressions Telling users it's ba

Re: Bug: Error making documentation 9.4.6

2021-08-31 Thread Daniel Fleischer
Hi Marco, Sorry about that, I'm new in contributing to org. I found the solution in the mailing list[1]. There was an old version of `makeinfo'. Daniel Fleischer Footnotes _ [1] <https://orgmode.org/list/CAGY83EfXn8jBUu1jDqCnuXMyxYc1efcf8OEP2su2=vhm9d6...@mail.gmail.com/>

Bug: Error making documentation 9.4.6

2021-08-31 Thread Daniel Fleischer
: Removing output file `org.info' due to errors; use --force to preserve. make[1]: *** [org] Error 1 make: *** [info] Error 2 – Daniel Fleischer

Re: [BUG] Creating sparse tree with regexp property matches

2021-08-31 Thread Daniel Fleischer
when they are starting to use orgmode and there should be a mention in the org manual. Most notably are the alternation \| instead of | and \(...\) grouping instead of (...). Best, *Daniel Fleischer*

Re: [BUG] Creating sparse tree with regexp property matches

2021-08-25 Thread Daniel Fleischer
while > the > regexp expects both being present. Since the regexp doesn't fully match, the > terms are all parsed wrong. (The function doesn't recognize "With" as property > name, for instance.) I'm still messing with it but, for now, don't really know > how to fix the problem. I don't 100% understand the function yet... > > Regards, Hi, the solution is that it's elisp based regex, so OR is indicated with \| instead of just |. It might be good idea to correct the example. Best, *Daniel Fleischer*

Bug: Org Clock continues in canceled captured note [9.4 (9.4-53-gc97446-elpaplus @ /Users/df/.emacs.d/elpa/org-plus-contrib-20201130/)]

2020-12-04 Thread Daniel Fleischer
-darwin19.6.0, NS appkit-1894.60 Version 10.15.7 (Build 19H15)) of 2020-12-01 Package: Org mode version 9.4 (9.4-53-gc97446-elpaplus @ /Users/df/.emacs.d/elpa/org-plus-contrib-20201130/) Daniel Fleischer

org-num-mode for RTL languages

2020-09-30 Thread Daniel Fleischer
Hi, Org-num-mode doesn't work for RTL language (e.g. Hebrew) when `bidi-paragraph-direction` is set to `left-to-right`. It does work when one sets `bidi-paragraph-direction` to nil. Example text: * Test * עברית * עוד אחד * Back to English I would expect it to work either way because