Re: [BUG] "\fC" macro in ox-man.el [9.6.15 (release_9.6.15 @ /usr/share/emacs/29.2/lisp/org/)]

2024-03-15 Thread Jeremy Sowden
gi?bug=69483) > > > > > > > > "mu4e"[1] (a popular Emacs mail client) uses Org to generate its > > > > manpages. However, the generated output contains macros that > > > > are not understood by groff. After some debugging, Jeremy > > &

Re: [PATCH] Treat :tangle-mode as an octal value not integer

2021-09-29 Thread Jeremy Cowgar
emoved for brevity ... I love it! Much better than my proposed patch. -- Jeremy

Re: [PATCH] Treat :tangle-mode as an octal value not integer

2021-09-29 Thread Jeremy Cowgar
docs. I understand about backwards compatibility and that was my greatest fear with this patch when creating it. Was just using org-babel-tangle for configuration files and had some that I wanted to make 0700 and 0600. I soon learned, that didn't work out as planned :-) - Jeremy

Re: [PATCH] Treat :tangle-mode as an octal value not integer

2021-09-29 Thread Jeremy Cowgar
On 2021-09-29 02:39, to...@tuxteam.de wrote: On Tue, Sep 28, 2021 at 10:54:48AM -0400, Jeremy Cowgar wrote: As an org user I would expect :tangle-mode 0660 to produce a file that has user rw, group rw, other nothing. Instead, what really happens currently is 0660 is treated as an integer which

[PATCH] Treat :tangle-mode as an octal value not integer

2021-09-28 Thread Jeremy Cowgar
As an org user I would expect :tangle-mode 0660 to produce a file that has user rw, group rw, other nothing. Instead, what really happens currently is 0660 is treated as an integer which is actually 3140. This produces unexpected file permissions. Prior to this patch to have rw,rw,none, one has to

Re: [O] Export results of code literal blocks (Jekyll directory structure) xpost emacs.stackexchange

2017-06-29 Thread Jeremy Reeve
On 29 June 2017 at 01:22, Nicolas Goaziou wrote: > Hello, > > Jeremy Reeve writes: > >> Org-mode newbie here. Please be gentle. > > Do you have any reason to think we will not be gentle? > > "We have a squeaker today, class. Isn't he cute?" That c

[O] Export results of code literal blocks (Jekyll directory structure) xpost emacs.stackexchange

2017-06-24 Thread Jeremy Reeve
a better route. Also, the above snippet exports everything including the "BEGIN export" which I think shouldn't happen but I'll examine that separately. Regards...Jeremy Org mode version 9.0.5 (9.0.5-elpa @ /Users/xxx/.emacs.d/elpa/org-20170210/) GNU Emacs 25.1.1 (x86_64-apple-darwin13.4.0, NS appkit-1265.21 Version 10.9.5 (Build 13F1911)) of 2016-09-18

Re: [O] fixmee / syntax-ppss

2015-12-05 Thread Jeremy Hankins
able to make this work. It's pretty important for my purposes that notes like this not show up in the published version. I'm still learning my way around org-mode, but my sense is that will be fairly straightforward to achieve. Thanks! -- Jeremy Hankins

[O] fixmee / syntax-ppss

2015-12-01 Thread Jeremy Hankins
ct that syntax-ppss fails to accurately report that it's in a comment. So position point inside a comment in an org file and eval: (nth 4 (syntax-ppss)) It should (?) report t, but it's giving me nil. -- Jeremy Hankins

Re: [O] One more question on bibliographies in Org

2013-06-19 Thread Jeremy Barbay
Vincent Beffara ens-lyon.fr> writes: > The main question is: what would be a convenient way to store the > references in the .org file, to allow for easy editing and exporting ? What I have done so far is to use some bibtex blocks, which tangle to an external bib files. It is sometime useful t

Re: [O] need: custom agenda for last 7 days

2013-02-21 Thread Jeremy \
Subhan: here is a fonction you can use to generate your weekly report: #+BEGIN_SRC lisp (defun my/weekly-report nil "Generate the agenda list for last 8 days with report mode on" (org-agenda-list nil (- (org-today) 8) 8) ; 8 day agenda starting 8 days ago (s

[O] Recursive descent depth control in org-publish

2012-12-21 Thread Jashank Jeremy
The problem is that I use ':recursive t' in my 'org-publish-project-alist' entry, and thus Emacs will attempt to traverse very, very, _very_ large directory hierachies and thus apparently hangs. Is there some way to flag sections of the tree as non-traversible? Cheers, ~j -- Ja