Re: [O] org-mode source code repo make error

2018-02-01 Thread Yasushi SHOJI
Hi, On Fri, Feb 2, 2018 at 10:24 AM, numbch...@gmail.com wrote: > When I try to compile with command `make`, but got this output: [...] > make -C lisp compile just do `make compile`. you can't use `-C` in org-mode source tree. In my case with `-C`, I get: $ make -C lisp

Re: [O] [RFC] Moving "manual.org" into core

2018-02-01 Thread Yasushi SHOJI
Hi, On Thu, Feb 1, 2018 at 11:55 PM, Nicolas Goaziou wrote: > Yasushi SHOJI writes: > >> What if _I_, for my own project, want to customize the formatter and like to >> call fill-paragraph, can I still do this? > > No need to tweak the formatter.

[O] org-eldoc error on shell src blocks

2018-02-01 Thread numbch...@gmail.com
When I enable `eldoc-mode` in org-mode. eldoc timer running when on `shell` src blocks like: #+begin_src shell git log $rev..origin/emacs-25 -- lisp/org doc/misc/org.texi \ etc/refcards/orgcard.tex etc/ORG-NEWS etc/org \ etc/schema/od-manifest-schema-v1.2-os.rnc \

[O] org-mode source code repo make error

2018-02-01 Thread numbch...@gmail.com
When I try to compile with command `make`, but got this output: ``` make -C doc clean; make -C lisp clean; make[1]: Entering directory '/home/stardiviner/Code/Emacs/org-mode/doc' rm -f org *.pdf *.html *_letter.tex org-version.inc org-version.tex \ *.aux *.cp *.cps *.dvi *.fn *.fns *.ky

Re: [O] exporting a big project in multiple files to both pdf and html

2018-02-01 Thread Yasushi SHOJI
Hi, On Thu, Feb 1, 2018 at 9:29 PM, Alan Schmitt wrote: > Not here. If I try to export the second file (the one with the link to > the first file), I get an error: > > user-error: Unable to resolve link: "*A headline" I now see that I totally misread your

Re: [O] issue with org-clock modeline total for *today*?

2018-02-01 Thread Nicolas Goaziou
Hello, Jose Robins writes: > I'm in the pacific time zone, and I've set the org-clock-mode-line-total to > today. The modeline display that shows the current time for today seems to > consider 'today' as UTC midnight to UTC midnight and does not respect my > timezone. I

[O] Patch for fixing a missing autoload for the function org-clock-sum-today

2018-02-01 Thread Jose Robins
org-clock.el: Add an autoload entry for the function org-clock-sum-today * lisp/org-clock.el: When the org-mode is called for the very first time any functionality that requires the org-clock-sum-today used to fail. (e.g. a column that calculates CLOCKSUM_T) Jose

Re: [O] stop results drawers from folding?

2018-02-01 Thread Nicolas Goaziou
Hello, John Kitchin writes: > I use results drawers for my src blocks alot, and for a while now every > time I run one block, it folds all the other results drawers, unless I use > visible-mode. > > Is there a way to prevent this drawer folding so that they are open

[O] stop results drawers from folding?

2018-02-01 Thread John Kitchin
I use results drawers for my src blocks alot, and for a while now every time I run one block, it folds all the other results drawers, unless I use visible-mode. Is there a way to prevent this drawer folding so that they are open when I open a document, and they stay open while running blocks?

Re: [O] Ad-hoc, mix-and-match tag hierarchies?

2018-02-01 Thread Lawrence Bottorff
So a left-to-right listing of (colon-separated) tags after the heading cannot imply a higher-to-lower hierarchical order? So there is no hierarchy unless you create it, e.g., (setq org-tag-alist '((:startgrouptag) ("GTD") (:grouptags)

Re: [O] How to dynamically change org-clock-mode-line-total?

2018-02-01 Thread Marcin Borkowski
On 2018-01-26, at 19:41, Nick Dokos wrote: > Marcin Borkowski writes: > >> Hi all, >> >> I want to be able to dynamically switch between various settings of >> org-clock-mode-line-total. To this end, I wrote the following code. >> >> (setq

[O] bug#30321: 25.3; Melpa ox- packages listed as incompatible

2018-02-01 Thread Glenn Morris
Luis Roca wrote: > Installing ox-rst returns the following error in *Messages*: > >`Incompatible because it depends on uninstallable packages.` > > Reviewing other Org export packages reveals the same note for each. I would guess this is because Org is not recognized as a built-in

[O] issue with org-clock modeline total for *today*?

2018-02-01 Thread Jose Robins
I'm in the pacific time zone, and I've set the org-clock-mode-line-total to today. The modeline display that shows the current time for today seems to consider 'today' as UTC midnight to UTC midnight and does not respect my timezone. I have to set the org-extend-today-until variable to 8 (PST-UTC

Re: [O] Ad-hoc, mix-and-match tag hierarchies?

2018-02-01 Thread Kaushal Modi
On Thu, Feb 1, 2018 at 10:30 AM John Kitchin wrote: > I was not aware of any implied hierarchy with tags. The order is not > important as far as I know, and what you describe as mix-and-match seems > ok. There is an idea of inheritance, e.g. sub-headings can inherit tags

Re: [O] Ad-hoc, mix-and-match tag hierarchies?

2018-02-01 Thread John Kitchin
I was not aware of any implied hierarchy with tags. The order is not important as far as I know, and what you describe as mix-and-match seems ok. There is an idea of inheritance, e.g. sub-headings can inherit tags from higher headings. In any case, you should be able to use agenda queries to find

[O] Ad-hoc, mix-and-match tag hierarchies?

2018-02-01 Thread Lawrence Bottorff
Is it possible to have two or more tags that are "peers," i.e., all equal, not in a hierarchy, be in an ad-hoc, as-needed way be hierarchical? For example, I have the tags *org-mode, lisp, *and *emacs, *and I want to have a header with the tags * my header:emacs:org-mode:lisp: So the above

Re: [O] [RFC] Moving "manual.org" into core

2018-02-01 Thread Nicolas Goaziou
Hello, Yasushi SHOJI writes: > What if _I_, for my own project, want to customize the formatter and like to > call fill-paragraph, can I still do this? No need to tweak the formatter. You can post-process its output to your liking, e.g., with `org-fill-paragraph'

Re: [O] Trivial bug in ox-latex

2018-02-01 Thread Akater
Nicolas Goaziou writes: >> When depth is -1, wholenump form evaluates to nil, and setcounter >> command is not exported at all. > > I don't think it's a bug. Org doesn't pretend to support every LaTeX > feature. Setting `org-export-with-toc', which is where DEPTH comes

Re: [O] exporting a big project in multiple files to both pdf and html

2018-02-01 Thread Alan Schmitt
On 2018-02-01 13:56, Nicolas Goaziou writes: >> Not here. If I try to export the second file (the one with the link to >> the first file), I get an error: >> >> user-error: Unable to resolve link: "*A headline" >> >> This is why I think I need to have the target file name

Re: [O] is there a macro to have backend-specific behavior?

2018-02-01 Thread Alan Schmitt
On 2018-02-01 13:02, Nicolas Goaziou writes: >> My use case is this one: I have a link to a custom id, and I want to >> export it as [[#id]] in latex and [[file:file.org::#id]] for html >> *before* link resolution happens (so that the custom id in the latex >> export is

Re: [O] exporting a big project in multiple files to both pdf and html

2018-02-01 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > On 2018-02-01 20:09, Yasushi SHOJI writes: > >>> How do I change the link in the second headline so that I can split the >>> second headline into its own file and export it by itself? >> >> Using [[*A

Re: [O] exporting a big project in multiple files to both pdf and html

2018-02-01 Thread Alan Schmitt
On 2018-02-01 20:09, Yasushi SHOJI writes: >> How do I change the link in the second headline so that I can split the >> second headline into its own file and export it by itself? > > Using [[*A headline]] ? > > I might be still missing something but I got following: > >

Re: [O] [RFC] Moving "manual.org" into core

2018-02-01 Thread Yasushi SHOJI
On Thu, Feb 1, 2018 at 8:43 PM, Yasushi SHOJI wrote: > On Mon, Jan 29, 2018 at 11:41 PM, Nicolas Goaziou > wrote: >> Yasushi SHOJI writes: >> >>> Do you see this on your env? Or, is it just me? >> >> I don't see anything

Re: [O] is there a macro to have backend-specific behavior?

2018-02-01 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > Is there a way to define a macro that has different behaviors depending > on export backend? I have macros that use the @@latex:foo@@ syntax, but > in that case I "foo" is supposed to be literal latex. > > My use case is this one: I

Re: [O] [RFC] Moving "manual.org" into core

2018-02-01 Thread Yasushi SHOJI
Hi, On Mon, Jan 29, 2018 at 11:41 PM, Nicolas Goaziou wrote: > Yasushi SHOJI writes: > >> Do you see this on your env? Or, is it just me? > > I don't see anything like this. Hmm... I don't know how to fix this. >> I'd like to have the

Re: [O] exporting a big project in multiple files to both pdf and html

2018-02-01 Thread Yasushi SHOJI
Hi, On Thu, Feb 1, 2018 at 5:45 PM, Alan Schmitt wrote: > On 2018-02-01 11:17, Yasushi SHOJI writes: >> On Fri, Jan 26, 2018 at 2:37 AM, Alan Schmitt >> wrote: >>> My question is about pdf export. Is it

[O] is there a macro to have backend-specific behavior?

2018-02-01 Thread Alan Schmitt
Hello, Is there a way to define a macro that has different behaviors depending on export backend? I have macros that use the @@latex:foo@@ syntax, but in that case I "foo" is supposed to be literal latex. My use case is this one: I have a link to a custom id, and I want to export it as [[#id]]

Re: [O] exporting a big project in multiple files to both pdf and html

2018-02-01 Thread Alan Schmitt
On 2018-02-01 11:17, Yasushi SHOJI writes: > On Fri, Jan 26, 2018 at 2:37 AM, Alan Schmitt > wrote: >> I'm working on a project that is becoming too big to manage as a single >> file, so I'm looking at splitting it in several files. This