Bug: org-element does not recognize table.el tables [9.4 (release_9.4-53-g23f941 @ /home/nick/elisp/org-mode/lisp/)]

2020-12-17 Thread Nick Dokos
Consider an Org mode file with a table.el table (which I made by first constructing an Org mode table and then usind `C-c ~' to convert it): --8<---cut here---start->8--- * table.el table ++++ | a | b | c | ++++ | 1 | 2

Re: [PATCH] Fix ODT output for scheduled items.

2020-11-28 Thread Nick Dokos
Same patch but fixes the typo in the Changelog: >From 7dc4877469c5bed7580ff80e9534480e16972b93 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Sat, 28 Nov 2020 10:01:02 -0500 Subject: [PATCH] org-odt-planning: Fix scheduled item output * lisp/ox-odt.el (org-odt-planning): Use org-schedu

[PATCH] Fix ODT output for scheduled items.

2020-11-28 Thread Nick Dokos
-scheduled Patch attached. >From 429d3eb816d0673326969f50b478f4d622147432 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Sat, 28 Nov 2020 10:01:02 -0500 Subject: [PATCH] org-odt-planning: Fix scheduled item output * lis/ox-odt.el (org-odt-planning): Use org-scheduled-string, not org-de

Re: add linked files to agenda files

2020-11-16 Thread Nick Dokos
Alan Schmitt writes: > Hello, > > I'm experimenting with a setup where each project is its own org file, > and where I have a master file linking to active projects. How can I > configure org to add every linked file of that master file to the > org-agenda-files? > You'll probably have to write

Re: New website - back to the old unicorn!

2020-10-26 Thread Nick Dokos
Sounds good to me. And thanks for all the work to update the site! -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: New website - back to the old unicorn!

2020-10-26 Thread Nick Dokos
One thing that I have done in the past (and I'm probably not the onlye one) on the Emacs SE is refer people to the mailing list through the old link: https://orgmode.ord/community.html which does not exist any more, so we have a whole lot of broken links on Emacs SE at the moment: can something be

Re: recursive checkbox counting

2020-10-02 Thread Nick Dokos
Alan Schmitt writes: > On 2020-10-01 14:24, torys.ander...@gmail.com (Tory S. Anderson) writes: > >> The way I've made this work is with the following property: >> >>:COOKIE_DATA: ALL >> >> But I suppose I haven't tried if that's fully recursive. > > Thank you for the suggestion. I gave it a

Re: Bug: Infinite loop caused by org-agenda-property-list [9.4 (9.4-elpa @ /home/dsmasterson/.emacs.d/elpa/org-9.4/)]

2020-09-25 Thread Nick Dokos
David Masterson writes: > Nick Dokos writes: > >> From what I can gather, this does not have much to do with Org mode >> proper, which has no org-agenda-property-list at all. I presume that >> you have >> >> https://github.com/Malabarba/org-agenda-propert

Re: org-tempo question

2020-09-24 Thread Nick Dokos
I can't say anything about indentation (I encounter problems that I have not reported because of lack of time to investigate combined with laziness - but I suspect they are, partly at least, of my own making). But when I do `8--- #+NAME: third #+begin_src org - an item - subitem

Re: The Website Revamp: The final stretch

2020-09-24 Thread Nick Dokos
"collapsable" should be "collapsible". -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: The Website Revamp: The final stretch

2020-09-24 Thread Nick Dokos
Nix on variant C from me. Slight lean towards B, but I personally would be happy with either A or B. Thanks! -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: Bug: Infinite loop caused by org-agenda-property-list [9.4 (9.4-elpa @ /home/dsmasterson/.emacs.d/elpa/org-9.4/)]

2020-09-23 Thread Nick Dokos
>From what I can gather, this does not have much to do with Org mode proper, which has no org-agenda-property-list at all. I presume that you have https://github.com/Malabarba/org-agenda-property/blob/master/org-agenda-property.el installed, which does provide such a variable, but all that one

Re: org-tables with monetary amounts

2020-09-23 Thread Nick Dokos
For fixed precision, you can either use an explicit format as Russell Adams points out, or you can modify (globally or per file) the variable org-calc-default-modes. That's a complicated variable and you only need to change one part of it for this: (plist-put org-calc-default-modes

Re: Infinite recursion ?

2020-09-22 Thread Nick Dokos
Nick Dokos writes: > What's the error message? Did you try setting `debug-on-eror'? Does that give > a more useful backtrace? Backtrace: no variable named `debug-on-eror' - maybe you made an eror :-) Sigh - should be `debug-on-error'. -- Nick "There are only two hard problems

Re: Infinite recursion ?

2020-09-22 Thread Nick Dokos
David Masterson writes: > Haven't figured this out yet, but I seem to be hitting an "infinite > recursion" bug that eventually dies when it runs out of memory. > > The scenario (so far) is trying to change an Org tag in the agenda > (':'). The command gives me the tags that I then edit and save

Re: creating png images in emails with org-mode

2020-09-18 Thread Nick Dokos
Eric S Fraga writes: > On Thursday, 17 Sep 2020 at 00:57, Nick Dokos wrote: >> Apparently, recent versions of ImageMagick (version 7 seems to be one) >> on (perhaps) some distros ship with a >> /etc/ImageMagick-/policy.xml file that imposes restrictions >> on wha

Re: creating png images in emails with org-mode

2020-09-16 Thread Nick Dokos
Joseph Vidal-Rosset writes: > Hello, > > One more time, my setup to create png image via LaTeX in email in org-mode is > broken. > > I get this error message: > > Creating LaTeX preview... > org-compile-file: File "/tmp/orgtex2wp50c.png" wasn’t produced.  Please > adjust ‘imagemagick’ part of

Re: basic org questions

2020-09-16 Thread Nick Dokos
Emanuel Berg via "General discussions about Org-mode." writes: > Matt Huszagh wrote: > >> Were you referring to the tables being centered >> after export (I see from another part of this chain >> that that's what you were referring to in the 3rd >> question) when you wanted them left-aligned?

#+ATTR_HTML examples uses old syntax

2020-09-12 Thread Nick Dokos
The attached patch fixes an example in the "Tables in HTML export" section of the manual that uses the old `border="3"' syntax instead of `:border 3' etc. >From 52be0b5b1fe492b3ff44e6ccd6dbfaed1eb88537 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Sat, 12 Sep 2020

Re: latex fragments compilation error when exporting to html

2020-08-31 Thread Nick Dokos
Jeremie Juste writes: > Hello > > When I export test.org to html, the latex fragment fail to compile. > The reason is a star get added to the tabular environment. {tabular*} > (see tmpfile.tex). > > I don't know why the function insists in using the tabular* environment. > > From this point I

Re: convert a org table to plain text

2020-08-26 Thread Nick Dokos
Uwe Brauer writes: >> Uwe Brauer writes: > >> Does this: > >> >> https://stackoverflow.com/questions/17717483/howto-convert-org-mode-table-to-original-tabbed-format/17726489#17726489 > > > Yes, very much so. It would be great to have that code included in > orgmode. Did anybody try to

Re: convert a org table to plain text

2020-08-25 Thread Nick Dokos
Uwe Brauer writes: > Hi > > What is the inverse function to > org-table-convert-region? > > I am unable to find anything in the documentation or google. > > Regards > > We Brauer > > > Does this:

Re: [BUG] babel runs bash instead of zsh when sessions are used

2020-08-24 Thread Nick Dokos
Kyle Meyer writes: > Rudi C writes: > >> #+BEGIN_SRC zsh :session z1 >> echo $HOME $0 >> #+END_SRC >> >> #+RESULTS: >> : /Users/evar /bin/bash > > What version of Org are you using? > > I tried with both the latest release (9.3.7) and the current master > branch (220f2b0d9), using default

Re: configure separator in org-table-insert-hline

2020-08-24 Thread Nick Dokos
Vladimir Alexiev writes: > How can I use radio tables for that? > By writing a translation function, similar to orgtbl-to-{csv,latex,html,texinfon,unicode,orgtbl}. See (info "(org) Tables in Arbitrary Syntax") -- Nick "There are only two hard problems in computer science: cache

Re: Bug: :results raw replace header args for a code block don't replace [9.3.7 (9.3.7-18-g093b47-elpaplus @ /Users/skoshelev/.emacs.d/elpa/26.2/develop/org-plus-contrib-20200810/)]

2020-08-21 Thread Nick Dokos
TEC writes: > Julius Dittmar writes: >> as far as I know this is no bug. Reason: How could org tell where >> the old results end? There's no end marker. Thus instead of removing >> everything that follows, it refrains from removing anything. > > This is my understanding. It's also why I tend

Bug: inserting capture template [9.3.7 (release_9.3.7-705-gea9463 @ /home/nick/elisp/org-mode/lisp/)]

2020-08-04 Thread Nick Dokos
This was reported in https://emacs.stackexchange.com/questions/59928/org-capture-at-point-as-sibling-of-heading I was able to reproduce it starting from emacs -q with the following ECM: emacs -q -l min.el foo.org where

Re: File local setting for export directory?

2020-08-03 Thread Nick Dokos
Russell Adams writes: > On Mon, Aug 03, 2020 at 04:15:22PM +0200, Loris Bennett wrote: >> I want to export an org file to a pdf and have the pdf created in >> subdirectory relative to the org file. >> >> What's the simplest way to set the export directory in a file local way? > > Can you just

Re: Search for an entry expands parent

2020-07-20 Thread Nick Dokos
Gt Uit writes: >   >   > 18.07.2020, 18:48, "Kyle Meyer" : > > Gt Uit writes: >   > >  Updates since my last email: >  - Sometimes the first C-s yields intended result (minimal), with >  subsequent C-s searches expanding all entries. >  - I tried on

Re: Wring case when using org-insert-structure-template

2020-07-10 Thread Nick Dokos
Nicolas Goaziou writes: >> Second question: I couldn't find any configuration variable or >> function to change the default behaviour. Is there a way to do so? > > You can customize `org-structure-template-alist'. I don't remember if > that's possible in Org 9.1.9, tho. > But you cannot change

Re: [PATCH] agenda: Fold case when retrieving user-configured effort values

2020-07-09 Thread Nick Dokos
Kyle Meyer writes: > Nick Dokos writes: > >> BTW, I just thought of a possible problem: the manual says that property >> keys are case-insensitive (although all the examples I can find spell >> "_ALL" in upper case, but if I write >> >> :PROPERT

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-08 Thread Nick Dokos
Kyle Meyer writes: > Nick Dokos writes: > >> Here's the amended patch: it includes the fixes from Kyle's review, the >> modification >> he suggested that adds the plain property for each _ALL property to the list >> and a few test cases to the test/org-buffer-pro

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-08 Thread Nick Dokos
Kyle Meyer writes: > Nick Dokos writes: > >> Here's the amended patch: it includes the fixes from Kyle's review, the >> modification >> he suggested that adds the plain property for each _ALL property to the list >> and a few test cases to the test/org-buffer-pro

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-07 Thread Nick Dokos
->8--- >From 60b9ababe42c91ec6fcd2c53f6923d75daa12454 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Mon, 6 Jul 2020 21:49:41 -0400 Subject: [PATCH] org: add property names from #+PROPERTY keywords to completion list * lisp/org.el (org-buffer-property-keys): Enhance the completion list with prope

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-07 Thread Nick Dokos
Kyle Meyer writes: > ,,, > I think this patch is a clear improvement as is, but in the context of > completion (and the stack exchange post you link to), isn't the handling > around *_ALL keywords still a bit off? It seems a caller would want to > complete without the _ALL; to use the example

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-07 Thread Nick Dokos
Hi Kyle, thanks for the review. Kyle Meyer writes: > Nick Dokos writes: > >> Here's a patch to enhance the property name completion list with names from >> #+PROPERTY keyword lines: at the moment, only property names found in >> property >> drawers are used t

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-06 Thread Nick Dokos
Adding a simple test to the previous patch: --8<---cut here---start->8--- >From cae6b5596f69968003c053f53cb45ffb4139a5ad Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Mon, 6 Jul 2020 21:07:01 -0400 Subject: [PATCH] org: add property names from #

[PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-06 Thread Nick Dokos
Here's a patch to enhance the property name completion list with names from #+PROPERTY keyword lines: at the moment, only property names found in property drawers are used to populate the completion list. Keith Pinson posted the question on Emacs SE:

Bug: Clock table documentation [9.3.7 (release_9.3.7-644-ge3a724 @ /home/nick/elisp/org-mode/lisp/)]

2020-06-22 Thread Nick Dokos
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list.

Re: multiple EXPORT_LATEX_HEADER lines

2020-06-16 Thread Nick Dokos
Dominik Schrempf writes: > Hello, > > are you looking for, e.g., > > #+latex_header: \addbibresource{bibliography.bib} > #+latex_header_extra: do some stuff > #+latex_header_extra: and even more > > I don't use the EXPORT keyword at the beginning, I am not sure if it is > needed. > > Best, >

Re: org-babel :colnames yes

2020-05-28 Thread Nick Dokos
Would this work for you? --8<---cut here---start->8--- #+BEGIN_SRC elisp :colnames yes '((one two) hline (1 3) (1 6)) #+END_SRC #+RESULTS: | one | two | |-+-| | 1 | 3 | | 1 | 6 | --8<---cut

Re: issue in orgmode manual

2020-05-21 Thread Nick Dokos
Bastien writes: > Hi Nick and John, > > this issue should be fixed now, thanks for reporting it. It is fixed AFAICT - thanks! -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: issue tracker?

2020-05-18 Thread Nick Dokos
Anthony Carrico writes: > Does org-mode have an issue tracker, to keep track of which issues are > active, or is it just this mailing list? Just this mailing list. -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors."

Re: Bug: Asterisk inside example is incorrectly parsed [9.3 (release_9.3 @ /usr/share/emacs/27.0.91/lisp/org/)]

2020-05-18 Thread Nick Dokos
You need to quote the asterisk with a comma: #+begin_example ,* I am not supposed to be a section #+end_example See (info "(Org) Literal Examples") -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: issue in orgmode manual

2020-05-18 Thread Nick Dokos
John Hendy writes: > I ran into this as well and did not see a response back from the list > yet. Emailed about just this issue last week. > > https://www.mail-archive.com/emacs-orgmode@gnu.org/msg127933.html > > John > > > On Sat, May 16, 2020 at 10:21 AM Max Mustermann > wrote: >> >> Hey, >>

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

2020-05-13 Thread Nick Dokos
Charles Millar writes: > Hi, > > In the last two or three days, all my org files open as if I have set > the visibility in every file to > > #+STARTUP: showeverything > > Org mode version 9.3.6 (release_9.3.6-619-g434940 @ > /usr/local/share/org-mode/lisp/) > GNU Emacs 28.0.50 (build 123,

Re: Section about latex export is broken in the html manual?

2020-04-28 Thread Nick Dokos
Niclas Borlin writes: > Hi, > > As far as I can tell, several links of section 10.13 LaTeX Export > (https://orgmode.org/manual/LaTeX-Export.html) are broken (last > checked 2020-04-28 19:15 UTC). > > The first four links on the page point to useful pages, i.e., clicking > on "Quoting LaTeX

Re: org-rss feed title is concatenation of all post titles? (ECM included)

2020-04-13 Thread Nick Dokos
Stig Brautaset writes: > ... > PS: Can we pretend this whole thread didn't happen? :-) > What thread? -- Nick:-) "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: Org-babel-lilypond always renders full pages

2020-04-06 Thread Nick Dokos
stardiviner writes: > > Can report this bug to ob-lilypond.el maintainer. I have not found any contact > info like email in source code file. Does anyone can get in touch with the > maintainer? > Isn't ob-lilypond.el part of Org mode proper (i.e. not contrib)? If so, this is the place to report

Re: Org mode for meeting minutes

2020-03-23 Thread Nick Dokos
Pankaj Jangid writes: > I have an off-topic query though: How do you right align tags? > > > , | org-tags-column is a variable defined in ‘org.el’. | Its value is -120 | Original value was -77 | | You can customize this variable. | | Documentation: | The column to which tags should be

Re: bi-monthly steps.

2020-03-12 Thread Nick Dokos
"Bi-monthly" is ambiguous: it can mean twice a month or it can mean once every two months and there is no convincing anybody that their use of it is wrong :-) -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: results block doesn't get replaced when doing :results raw

2020-03-10 Thread Nick Dokos
George Mauer writes: > I've seen this happening a lot in a variety of modes. When I do `:results > raw`, on subsequent  > evaluations, rather than replacing the results block, it gets appended to. > > This is almost never what I want. I remember seeing some use of `:results raw > replace` in

Re: Typo in Org Manual

2020-03-06 Thread Nick Dokos
Sebastian Miele writes: > Sebastian Miele writes: >> >> But how about instead changing the first sentence of the "Range >> references" section from >> >> You may reference a rectangular range of fields by specifying two >> field references connected by two dots ‘..’. >> >> to >> >> You

Re: Bug or not a bug? dot expansion in ob-shell

2020-03-04 Thread Nick Dokos
Hi Tim, Tim Cross writes: > It seems to me that two separate issues have been mixed up and causing > some confusion here. However, I think it is actually quite simple once > we consider the issues separately. > > Issue 1: Defining the meaning of :result value and :result output > Issue 2:

Re: Bibliography entry in the menu-bar

2020-02-28 Thread Nick Dokos
Sharon Kimble writes: > Simon Butler writes: > >> Hi Sharon >> >> the menu is part of BibTeX-mode (https://www.emacswiki.org/emacs/BibTeX) > > Thanks Simon, I've now been able to provide a key-sequence for 'Online > Resource' like so - > > (global-set-key "\C-c C-e C-o" 'bibtex-Online) > > >

Re: Bug or not a bug? dot expansion in ob-shell

2020-02-21 Thread Nick Dokos
Hi Bastien, I think all this is reasonable. I have some inline comments and a suggestion at the end. Bastien writes: > Hi Nick, > > I didn't conduct the survey in 2013, you can find the results here: > https://orgmode.org/worg/org-configs/org-customization-survey.html > > I understand why you

Re: Bug or not a bug? dot expansion in ob-shell

2020-02-20 Thread Nick Dokos
Hi Bastien, Bastien writes: > Hi Diego, > > Diego Zamboni writes: > >> I'm late to the discussion so I apologize in advance, but this fix >> seems counterintuitive to me. In my mind, for any shell code: >> >> - Return value: exit code of the last command >> - Output: whatever the commands

Re: LaTeX export failure

2020-02-03 Thread Nick Dokos
"Thomas S. Dye" writes: > Thanks Eric, > > Good to know. I'll try to track down the issue when I find time. > > All the best, > Tom > > Fraga, Eric writes: > >> On Wednesday, 29 Jan 2020 at 15:22, Thomas S. Dye wrote: >>> Here is the offending bit, which worked fine last November but >>> fails

Re: debugging why a latex preview fails

2020-01-29 Thread Nick Dokos
Alan Schmitt writes: > Hello Fabrice and Eric, > > Thanks a lot for your suggestions. I ended up edebugging > 'org-create-formula-image' to have a look at the created tex file (that > is indeed cleaned up after the generation). The file was fine, but > dvipng failed on it (with errors like "raw

Re: code.orgmode.org

2020-01-23 Thread Nick Dokos
mplained about "pipe2: too many file descriptors open" (this is from memory, so take it with the appropriate grain of salt) and sometimes by getting a 500 page. Thanks for fixing it! > > On Wed, 22 Jan 2020 18:37:38 -0500 > Nick Dokos wrote: > >> Somebody seems to be

Re: noweb

2020-01-23 Thread Nick Dokos
"Fraga, Eric" writes: > My approach to this is to create three blocks that are tangled and a > separate block (or more than one if you have different tests you want to > perform) for evaluation that references those three blocks (via noweb) > but is not tangled. That works, but shouldn't Nuno's

code.orgmode.org

2020-01-22 Thread Nick Dokos
Somebody seems to be playing with stuff on code.orgmode.org: every once in a while when I look at the repo (e.g by visiting https://code.orgmode.org/bzg/org-mode), I get a literal HTML page, instead of a rendered one. That seems to be caused by some extra text at the beginning: , | 2020/01/22

Recommended global keybindings in the guide vs the manual

2020-01-17 Thread Nick Dokos
org-guide.org:Introduction/Activation says: --8<---cut here---start->8--- Add the following lines to your Emacs init file. The last four lines define /global/ keys for some commands---please choose suitable keys yourself. #+begin_src emacs-lisp ;; The

Re: org-deadline-warning-days per file

2019-12-31 Thread Nick Dokos
Colin Baxter writes: > I have my org-deadline-warning-days set to 60 via > > #+begin_src elisp > (setq org-deadline-warning-days 60) > #+end_src > > in my ~/.emacs. How can I set it individually for each deadline in an > org-mode file? > The manual says: , | You can specify a

Re: Bug: xxx [9.3 (9.3-8-geab7c4-elpa @ c:/Users/Scott/.emacs.d/elpa/org-20191209/)]

2019-12-16 Thread Nick Dokos
Scott Otterson writes: > A function I wrote a few months ago is now failing because it's > unable to find the org function "org-at-target-p". I think this was > originally in org.el but I can't find it there now. > > If this function was removed intentionally could someone suggest a > new

Re: Displaying remote images

2019-12-02 Thread Nick Dokos
Jack Kamm writes: > I've attached a patch which implements displaying remote images. > >> This is a longstanding problem, and there was an attempt to patch it in >> 2014, but the patch was never accepted: >> https://lists.gnu.org/archive/html/emacs-orgmode/2014-11/msg00583.html > > Compared to

Re: is this a known issue in clocktable output?

2019-12-02 Thread Nick Dokos
Marco Wahl writes: > Soubzriquet writes: >>> [...] > >>> > odd issue with using "day" steps where the date is getting offset >>> > sometimes. >>> > >>> > I saw the issue with 26.1, was not fixed by updating to current >>> > environment with an empty init.el on OS X: >>> > ... >>> > Daily

Re: org 9.2.6 and org 9.1.9

2019-11-26 Thread Nick Dokos
Jean-Christophe Helary writes: > org 9.1.9 is a built-in > > but org 9.2.6 comes as a dependency to some packages and having both > installed creates conflicts. > What conflicts are you seeing? I have the built-in 9.1.9 org that comes with emacs but I run (close to) latest master and I see no

Re: org-enable-table-editor is removed since 9.1

2019-11-26 Thread Nick Dokos
Tomasz Piotrowski writes: > If I try to edit a table in org-mode, e.g., add a row to it, I get a > message > > "eval: Symbol’s value as variable is void: org-enable-table-editor". > > This is in line with changes made in version 9.1: > https://orgmode.org/Changes_old.html#org8981857 > > This

Re: Org 9.2 not inhibiting electric-pair-mode in the beginning of lines?

2019-10-29 Thread Nick Dokos
"Fraga, Eric" writes: > On Tuesday, 29 Oct 2019 at 16:50, Vladimir Nikishkin wrote: >> I think, these are two different mechanisms. C-c C-, works as expected. >> The "<" mechanism comes from org-tempo, and is faster, because you >> don't have to choose anything. > > I don't know anything about

Re: [O] Bug Report: Broken Link in Worg

2019-10-21 Thread Nick Dokos
Joshua Meyers writes: > In this page (https://orgmode.org/worg/org-gtd-etc.html) the link to > the "very instructive post by Pete Phillips" now directs to the > defunct gmane.org.  I think I tracked down the post it is supposed > to link to, so I don't want others to have to do this work again:

Re: [O] export, excluding everything marked with special tags

2019-09-20 Thread Nick Dokos
John Kitchin writes: > One way is to put a list of tags (separated by spaces) in a file property > like this: > > #+EXCLUDE_TAGS: one two > ... or if you want to do it globally, set the variable org-export-exclude-tags in your init file: (setq org-export-exclude-tags '("one" "two")) > On

Re: [O] lisp: scoping vars in repetitive defuns

2019-09-17 Thread Nick Dokos
Matt Price writes: > I have a number of convenience functions define to help me with grading > assignments. As I go through the semester, i update all of these functions > modestly so that they'rehelpful for grading the current > assignment.  > > I big chunk of these simple functions is taken

Re: [O] R-generated images not showing

2019-09-11 Thread Nick Dokos
William Denton writes: > This problem started for me a little while ago: images generated from R > source > blocks no longer appear even though I have images display turned on. > > For example, this file: > > # - > > #+begin_src R :results graphics file :file /tmp/src.png > x <- seq(-4,

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Nick Dokos
Jude DaShiell writes: > It would be helpful if when pdf get exported from orgmode they have > speech enabled by default. > Not sure that org mode can do anything about, since it's LaTeX that produces the PDF. That said, I'm not sure what needs to be done: what's the difference between a

Re: [O] org-megaup

2019-08-30 Thread Nick Dokos
Jean-Christophe Helary writes: > When I use org-megaup I get a "Invalid function: > org-preserve-local-variables" is there a way to fix that ? > org-megaup is not defined AFAICT - do you mean `org-metaup'? If not, disregard the rest of this message. If yes, I don't see any problems, so you

Re: [O] Bug: Description of org agenda columns format in manual not correct/misleading

2019-08-14 Thread Nick Dokos
"Fraga, Eric" writes: > I have this setting in my Emacs initialization: > > (setq org-agenda-overriding-columns-format "%5TODO %TIMESTAMP %40ITEM > %LOCATION %TAGS") > > HTH, > eric Shouldn't you be using org-columns-default-format instead? -- Nick "There are only two hard problems in

Re: [O] defconst: Symbol’s value as variable is void: css-syntax-propertize-function

2019-08-14 Thread Nick Dokos
"Charles R (Charlie) Martin" writes: > I'm getting this error when trying to export HTML from org-mode. Is this a > known issue? I haven't found > any solutions via google. > When I do `C-h v css-syntax-propertize-function RET' I get: , | css-syntax-propertize-function is a variable

Re: [O] Issue with internal links

2019-08-08 Thread Nick Dokos
"Doyley, Marvin M." writes: > > * Testing > * One > * Two >[[*Testing]]. (I also tried [[Testing]] and I got the same error) > > Debugger entered--Lisp error: (void-function org-pass-link-to-system) > org-pass-link-to-system("*Testing") >

Re: [O] Move Currently clocked in task to left on modeline

2019-07-22 Thread Nick Dokos
Nathan Neff writes: > Hello all, > > How can I move the currently clocked task to be on the left side > of my modeline in emacs? > The way the information ends up in the mode line is a bit convoluted: - The main variable is `mode-line-format': you should read its doc string carefully. -

Re: [O] Exporting in html with numeric references to headlines

2019-07-15 Thread Nick Dokos
Shérab writes: > Dear all, > > Assume the following document: > > === > > #+title: test1 > > * Introduction > > Monads will be explained in chapter [[#monads]] > > * Monads > :PROPERTIES: > :CUSTOM_ID: monads > :END: > > Welcome to the monads chapter. > > === > > When I export this to

[O] Bug: org-agenda-list attempts to add text properties to agenda header even if org-agenda-overriding-header is set to "" [9.2.4 (release_9.2.4-386-gb855ac @ /home/nick/elisp/org-mode/lisp/)]

2019-07-02 Thread Nick Dokos
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list.

Re: [O] export to latex, make-backup-files, vc-make-backup-files

2019-06-24 Thread Nick Dokos
Uwe Brauer writes: >> Uwe Brauer writes: > >> FWIW, I tried a set-up with git (I don't have mercurial available) and I > cannot >> reproduce this. > >> I'm not using numbered backups but the two variables you mention are set > the >> same way for me. Here's what I did: > >

Re: [O] export to latex, make-backup-files, vc-make-backup-files

2019-06-21 Thread Nick Dokos
Uwe Brauer writes: > Hi > > The following kills me. > > I have set > > make-backup-files t, > vc-make-backup-files nil > > I am in a directory which is under version control (mercurial). > > The file test.org and test.tex are *both* under VC control. > > However when I export test.org to

Re: [O] org-mode table element selection WITH blanks elements

2019-06-20 Thread Nick Dokos
This was posted on the Emacs SE and I replied there: https://emacs.stackexchange.com/questions/51141/org-mode-table-element-selection-with-blanks -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: [O] Coloured source code examples in --batch exports?

2019-06-13 Thread Nick Dokos
Stig Brautaset writes: > ... > Adding a ~--batch~ flag to the command makes the command run on > CircleCI, but I get a less colourful (and less pleasing) result. The > markup appears to only use /italic/ and *bold* styles now. > --batch skips your initialization file. You will have to provide a

Re: [O] change tables to matrix when importing, including expressions.

2019-06-13 Thread Nick Dokos
Uwe Brauer writes: > However I would like > > #+begin_src > #+attr_latex: :mode math :environment matrix > D= > | 0 | -5 | > | 5 | 0 | > #+end_src > > > To be exported as > > #+begin_src > \[ > D= > \begin{matrix} > 0 & -5 \\ > 5 & 0 \\ > \end{matrix} > \] > #+end_src > #+attr_latex:

Re: [O] strange output when executing matlab using babel, strange ,

2019-05-31 Thread Nick Dokos
Uwe Brauer writes: > Hi > > I am running Ubuntu 16.06, matlab 2018b and I am using the python > kernel to use matlab from within org mode > > > > * The problem > > When I run > > #+begin_src matlab :results output latex :exports results :eval never-export > disp('*Step 3:*') >

Re: [O] Fwd: Questions about org-element

2019-05-29 Thread Nick Dokos
Ngor writes: > Hi Org community. > > I am re-posting my questions here according to Nicolas' recommendation. > > I am working on a standalone parser implementation for Org which is basically > a translation of elisp program to Rust > https://github.com/org-rs/org-rs > > There are couple of

Re: [O] suppress leading ":" in org-babel output

2019-05-29 Thread Nick Dokos
"Berry, Charles" writes: >> On May 27, 2019, at 7:17 PM, Nick Dokos wrote: >> >> Jeremie Juste writes: >> >>> Hello, >>> >>> I recall seeing this thread on the mailing list but I cannot find it >>> back. >>>

Re: [O] suppress leading ":" in org-babel output

2019-05-27 Thread Nick Dokos
Jeremie Juste writes: > Hello, > > I recall seeing this thread on the mailing list but I cannot find it > back. > > I would like to suppress the first line leading ":" in the following output > > > #+NAME:mean_purchase_per_shopping_trip > > #+BEGIN_SRC R :var x=6 :results output :session *R* > a

Re: [O] Advance notice of birthdays in org-mode via org-contacts

2019-05-27 Thread Nick Dokos
Daryl Manning writes: > I'm trying to come up with a better way to give myself advanced notice on > some peoples' birthdays coming up.  > > Right now, I use the following in a `cal.org` file to give me notice in > agenda that birthdays are coming up: > > ``` > * BDays                          

Re: [O] switch off validate - how?

2019-05-20 Thread Nick Dokos
Amin Bandali writes: > Hello, > > Nick Dokos writes: > > [...] > >> >> C-h v org-html-validation-link RET >> >> Set it to "", but there are still validation remnants left in the HTML >> file, which is probably a bug: >> >>

Re: [O] switch off validate - how?

2019-05-20 Thread Nick Dokos
nts left in the HTML file, which is probably a bug: ,---- | | Author: Nick Dokos | Created: 2019-05-20 Mon 12:43 | <<<<<<<<<<< this should disappear. | ` -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler

Re: [O] Show weekday in daily agenda view

2019-05-16 Thread Nick Dokos
db...@attentigroup.com (J. David Boyd) writes: > Nick Dokos writes: > >> johanna@th-koeln.de writes: >> >>> maybe I did not search the right way in google alias startpage. But I >>> could not figure out how to write next to the date e.g. 2000-04-01 th

Re: [O] Show weekday in daily agenda view

2019-05-14 Thread Nick Dokos
johanna@th-koeln.de writes: > maybe I did not search the right way in google alias startpage. But I > could not figure out how to write next to the date e.g. 2000-04-01 the > weekday, i.e. the specific day of the week. It would come very handy to > have the date displayed as 2019-05-14 Tu and

Re: [O] Column width cookies stopped working in 9.2.3?

2019-05-12 Thread Nick Dokos
Neil Jerram writes: >> As Eric says, things have changed in this area. It's always a good >> idea to check the /etc/ORG-NEWS file for such things.  In this >> particular case, read the section entitled "Dynamically narrow table >> columns" in the Version 9.2 "New features" section of

Re: [O] Column width cookies stopped working in 9.2.3?

2019-05-11 Thread Nick Dokos
Neil Jerram writes: > Hi, > > I have tables with width cookies like this: > > | <16> | <6> | <64> | > > I just added new information to one of those tables, and the table > shrank down to match the size of the content, i.e. as though Org is > now

Re: [O] [latex export/babel] pass arguments to \includegraphics from code blocks

2019-04-22 Thread Nick Dokos
Jakob Schöttl writes: > Hi, I want to use code blocks to generate and include images of sheet music: > > #+BEGIN_SRC lilypond :file test.png :exports results > \header{tagline=""} > { a b c } > #+END_SRC > > > When doing a latex export the result is: > > \begin{center} >

Re: [O] Manual does not mention LEVEL special property

2019-04-15 Thread Nick Dokos
Nicolas Goaziou writes: > Hello, > > Omari Norman writes: > >> The Org mode manual does not mention the LEVEL special property; can you >> please add it? >> >> https://orgmode.org/manual/Special-properties.html > > I don't think LEVEL is a special property. Why do you think it should be > one?

Re: [O] Shrinking columns after formula recalculation

2019-04-15 Thread Nick Dokos
Nicolas Goaziou writes: > Hello, > > Nick Dokos writes: > >> But since no good deed shall go unpunished, here's another related >> problem I ran into: with shrunk columns, I add a few more rows to the >> table with S-RET on the first column, recalculate to populate

<    1   2   3   4   5   6   7   8   9   10   >