Sharon Kimble skimble.plus.com> writes:
> Yes, but I don't take much notice of it.
See my question and the answers here[1] about slow performance in Org files
when line-numbering is enabled.
[1]
http://stackoverflow.com/questions/5229705/emacs-org-mode-turn-off-line-numbers
I know how to move subtrees up and down, but how do I change the order of
top-level headline entries (the ones starting with *)?
SabreWolfy writes:
> I know how to move subtrees up and down, but how do I change the order of
> top-level headline entries (the ones starting with *)?
,
| * top1
| * top2
| ** sub1
| ** sub2
| * top3
`
with point on top3: M-x org-move-subtree-up
,
| * top1
| * top3
| * top2
| ** s
SabreWolfy gmail.com> writes:
> I know how to move subtrees up and down, but how do I change the order of
> top-level headline entries (the ones starting with *)?
and
(Strangely, *not* though, which I tried initially, because
*is* the same as x for me.)
Thorsten Jolitz gmail.com> writes:
> with point on top3: M-x org-move-subtree-up
Thanks -- that works. I tried , which I erroneously thought moved
subtrees, but not headlines ;) What I should have tried, which works for
headlines and subtrees, is .
Hi,
I do confirm that it is fixed for me.
Thank YOU.
--
*Le jeu., juil. 24 2014, Nicolas Goaziou a écrit*
Hello,
This should be fixed in maint. Thank you for reporting it.
Regards,
--
Nicolas Goaziou
--
~~^v^~~ Baptiste
stardiviner writes:
> I want to know how to configure Org-mode to write diary with a easy way.
> I hope someone can provide his way.
>
> Here is what I think what Org-mode write diary should have.
>
> - [ ] *open/create* a buffer to write current day's diary quickly.
Set up a capture template us
Hi Bastien,
On 2013-01-04 17:33, Bastien writes:
> Hi Alan,
>
> Alan Schmitt writes:
>
>> Thank you, this would work nicely. However I don't know how to specify,
>> when I open the file, which link-type to use. Would I need to modify the
>> link itself from "file" to "file+emacs+dired" before o
Hello
I am using org-capture-templates for a while but now I would like to
have a table in the target file, best would be something like this
| File | Description |
|---+-|
| name&Link | the purpose of this file is |
So I tried this en
>> "Uwe" == Uwe Brauer writes:
> Hello
> I am using org-capture-templates for a while but now I would like to
> have a table in the target file, best would be something like this
> | File | Description |
> |---+-|
> |
In principle, to avoid breaking existing documents, you could
introduce a variable to set org-mode in legacy mode.
Regards,
Fede
On Sun, Jul 27, 2014 at 6:46 PM, Nicolas Goaziou wrote:
> Hello,
>
> Federico Beffa writes:
>
>> In the end of the day the reason why I started looking into this is
>
Hello,
Federico Beffa writes:
> In principle, to avoid breaking existing documents, you could
> introduce a variable to set org-mode in legacy mode.
I don't want to maintain two (or more) grammars for Org. So, no, thanks.
Regards,
--
Nicolas Goaziou
Hello,
As discussed in a recent thread[fn:1], \[...\] constructs are
counter-intuitive to some users.
At the time being, \[...\] are inline-able. As a consequence, they are
can be written in the middle of a line, and filled, much like \(...\).
Even though it is also possible to inline them in a L
Hello Seb,
nice that you come back to this issue.
I don’t know what “an ECM” is, but I attach you a simple org file and two
screenshots that exemplify the case.
1st screenshot
org-special-keyword_face_example_after_commit_69700e1.png
shows all ‘COMMENT’ keywords correctly rendered by the
> From: Lionel Henry
> Date: Sat, 26 Jul 2014 17:53:47 +0200
> Cc: 18...@debbugs.gnu.org,
> michael_heerde...@web.de
>
> - Open a .org file large enough that you can scroll it.
> - Enable linum and org-indent-mode
> - Scroll
>
> The linum and the indentation will disappear in the very first lin
You wrote:
> Hello,
>
> As discussed in a recent thread[fn:1], \[...\] constructs are
> counter-intuitive to some users.
>
> At the time being, \[...\] are inline-able. As a consequence, they are
> can be written in the middle of a line, and filled, much like \(...\).
> Even though it is also poss
Thorsten Jolitz wrote:
> Nick Dokos writes:
>
>> Thorsten Jolitz writes:
>>
>>> Hi List,
>>>
>>> evaluating this 3 times does not work as expected:
>>>
>>> ,
>>> | * A
>>> |
>>> | #+header: :results raw replace
>>> | #+begin_src emacs-lisp
>>> | (+ 2 2)
>>> | #+end_src
>>> |
>>> | #+resu
Nick Dokos wrote:
> My org-latex-pdf-process setting is
>
> (setq org-latex-pdf-process '("texi2dvi --shell-escape --pdf %f"))
>
> and I'm experimenting with
>
> (setq org-latex-pdf-process '("latexmk --shell-escape -pdf -xelatex %f"))
FWIW, I do have:
(setq org-latex-pdf-process
Sebastien Vauban
writes:
> Thorsten Jolitz wrote:
>> Nick Dokos writes:
>>
>>> Thorsten Jolitz
>>> writes:
>>>
Hi List,
evaluating this 3 times does not work as expected:
,
| * A
|
| #+header: :results raw replace
| #+begin_src emacs-lisp
Julien Cubizolles wrote:
> I need to export the same org file to both LaTeX and beamer, and I'd
> like the headings that are exported to the "block" environment in beamer
> to be exported to another environment in LaTeX (named
> "consequence"). The LaTeX export engine allows one to specify any
> en
Nicolas Goaziou writes:
> The current proposal is to make them elements instead of objects in Org
> syntax (i.e, a `latex-environment' instead of a `latex-fragment').
> [...]
> WDYT?
I think it's a bad idea.
One can use
\begin{EQUATION} · \end{EQUATION}
(where EQUATION is one's favorite math
Rick Frankel wrote:
> (add-hook 'org-babel-after-execute-hook
> (lambda () (org-display-inline-images nil t)))
I simply had:
--8<---cut here---start->8---
(add-hook 'org-babel-after-execute-hook
'org-display-inline-images)
--8<---c
Roland DONAT wrote:
> I have this piece of python code that generate Orgmode text :
>
> #+NAME: test
> #+HEADER: :session test1
> #+HEADER: :results value drawer
> #+BEGIN_SRC python
> a = "** H1\nblabla\n** H2\nbloblo"
> a
> #+END_SRC
>
> #+RESULTS: test
> :RESULTS:
> ** H1
> blabla
> ** H2
> b
Aaron Ecay wrote:
> I don’t have a comment on the substance of the proposal, but rather two
> suggestions for workarounds.
>
> The first is to use the C-c C-v C-e binding to execute source blocks
> rather than C-c C-c.
Or even `e' if:
- on the first character of the #+begin_src keyword, and
- spe
Hi,
when I scale down (C-x C--) an org buffer's faces, they maintain the
original line height, filling up with vertical space, which is not what
I want. See as an example:
https://share.eva.mpg.de/public.php?service=files&t=0bd6cff7cc9bb41d691d0d0f0260f7ef
The importance of it becomes visible w
Daimrod wrote:
> bofe writes:
>> I use org to manage my projects. When some works are finished ,I
>> marked the titles “DONE”,but as time goes by ,there are too many of
>> them, that I can’t focus on the rest of unfinished works.
>> Is there a way to hide the “DONE" titles,rather than de
Fletcher Charest wrote:
> I am a little puzzled by the way scheduled tasks work. I will give an
> example. Let's have this task:
>
> * TODO Clean the kitchen
> SCHEDULED: <2014-07-20 jeu. .+1w>
>
> If I'm lazy and don't do it for one whole week, on 2014-07-27 I will see
> this in my agenda:
>
> Sch
Hello,
I'm using org-mode and have had some trouble with printing with faces, which
has been solved in emacs. Currently I'm using the following
version:
commit 59b20d77aec5055417eeec039af84de88cda12b2
Author: Stefan Monnier
Date: Mon Jun 30 22:25:52 2014 -0400
* lisp/ps-def.el (ps-generat
Andreas writes:
> Hi,
>
> when I scale down (C-x C--) an org buffer's faces, they maintain the
> original line height, filling up with vertical space, which is not what
> I want. See as an example:
>
> https://share.eva.mpg.de/public.php?service=files&t=0bd6cff7cc9bb41d691d0d0f0260f7ef
>
> The i
Eric Abrahamsen writes:
> Steven Arntson writes:
>
>> Simple question, I think, but it has me stumped. I'm wondering what
>> variable controls the org-agenda function that gives you upcoming
>> events, a la:
>>
>> todo: In 2 d.: TODO Friend's Birthday
>> todo: In 4 d.: TODO
Hi Jacob,
Jacob Gerlach writes:
> Is it possible to configure the exporter to stop and throw an error
> for a bad link?
No. But what is really a "bad link"? Is it bad because it cannot be
exported to a specific backend?
--
Bastien
SabreWolfy writes:
> How do I indicate that the event should be repeated monthly for 6 months
> only? Time-shift?
FWIW, this is a frequently requested feature and I will propose
something other than cloning headlines for the next major Org version.
--
Bastien
regcl writes:
> Thanks, but I guess I didn't find the solutions you have
> mentioned. Could you please point them out?
I'm thinking of this for example:
http://orgmode.org/worg/org-tutorials/org-jekyll.html
This is not a complete solution for the problem at hand,
but a start for looking further
Hi Mark,
Mark Scala writes:
> This is probably a bug:
Can you provide a complete recipe? What "lisp"?
Thanks,
> #+BEGIN_SRC lisp :results output
> (format t "Hello world.")
> ;; comment after, causes crash when block is evaluated with C-c C-c
> #+END_SRC
>
> Debugger message:
> #+BEGIN_Q
Thorsten Jolitz writes:
> the link to 'org-exp-blocks' does not work:
Fixed, thanks.
--
Bastien
Hi Marcin,
Marcin Borkowski writes:
> Also, is prelude or Emacs Starter Kit a good idea?
My very personal stand on this is that prelude and Starter kit
are good options when someone wants to discover Emacs, but can
sometimes get in the way: if something goes wrong, you are not
sure who to blame
Hi Alejandro,
Alejandro Suarez writes:
> The following code causes my version of emacs to hang:
This is now fixed in the master branch, thanks for reporting this.
--
Bastien
Hi Subhan,
Subhan Michael Tindall writes:
> All headlines with time clocked for the specified time range, or
> without time clocked for specified time range
With latest Org, C-u C-u C-c C-x C-d will prompt for a time range
and display clocked headlines in this time range. This is not a
separat
Hi Nick,
Nick Dokos writes:
> I pushed this to maint and merged it into master.
Thanks for tracking this bug and fixing!
--
Bastien
Hi Rainer,
Rainer M Krug writes:
> Will do so but only next week.
I applied the patch with the slight enhancement suggested by Nicolas.
I hope you don't mind me applying instead of you, it's just that I'm
in the flow now.
Thanks!
--
Bastien
Hi Suvayu,
Suvayu Ali writes:
> Attached are two patches: the first adds the customize options, the
> second provides a function that uses notmuch-tree to follow links. The
> defaults are set to the old behaviour, so this should not cause any
> surprises.
Applied, thanks!
--
Bastien
SabreWolfy writes:
> As an aside, where does the "sub-minor" version number for Emacs originate?
> I'm running 24.3.1 and the next release is 24.4. However, even though I
> can't find any information about 24.3.2, a search of this list for "24.3.2"
> returns results...
You may have answer on the
Hi Rasmus,
Rasmus writes:
> Here's a patch to the testing/README-documentation on the interactive
> part. I found that I had to do a couple of extra steps to run tests
> interactively from emacs -q.
applied, thanks.
--
Bastien
Hi Stardiviner,
what is your Org version?
Please report what M-x org-version RET says.
Also, can you provide a minimal configuration to reproduce the
problem? The one you send is a bit overloaded.
Thanks,
--
Bastien
Hi Charles,
Charles Millar writes:
> I thought about posting a comment to the above site; however I decided
> to post here for those who know more about these things to decide if
> something should be forwarded.
Well, you can safely contact the authors of the website and point them
to Emacs and
Hi Federico,
Federico Beffa writes:
> is there any plan to make org-babel a minor-mode (similarly to
> orgtbl)?
I'm not sure what it means but the answer is "no" :)
--
Bastien
Hi Andrea,
Andrea Rossetti writes:
> - or (backward-compatible) change `org-activate-plain-links' so that
> a plain link is not activated if it's inside a tag
I took this road, fixed now, thanks for reporting this.
--
Bastien
Hi Nick,
Nick Dokos writes:
> OK, I pushed the patch to maint and merged it into master.
Thanks a lot for fixing this too!
--
Bastien
Hi David,
David Rogoff writes:
> I can’t see how to insert a datestamp with just year and month. I’m
> adding an archive of various past events that I don’t have the exact
> date for.
I would simply put an arbitrary date then, because -MM-DD is deep
into Org's DNA.
--
Bastien
Hi Nick,
Nick Dokos writes:
> Apparently these tests assume that the org info file can be found, but
> the `make clea'n that is done at the beginning of make test wipes it
> out. That's probably because I'm working out of the cloned git tree, but
> if possible, I would like `make test' to work i
Hi Achim,
Achim Gratz writes:
> I've added all user-visible changes from me that will go into 8.3.
Thanks for this. Any committer can add visible changes from anyone,
so please feel free.
Best,
--
Bastien
Hi Samuel,
this has been frequently discussed and although timestamps are allowed
in headlines, we don't want to encourage users to use them like this.
The footnote is still relevant IMHO.
Best,
--
Bastien
Hi Thorsten,
Thorsten Jolitz writes:
> From bc21dacd0bb400c5bb92acff9bbf2d00560f1c92 Mon Sep 17 00:00:00 2001
> From: tj
> Date: Wed, 25 Jun 2014 16:27:42 +0200
> Subject: [PATCH] Taskjuggler: Add valid project attributes
Applied, thanks.
--
Bastien
Hi Phil,
Phil Chrapka writes:
> Is it possible, for tasks that have a repeated DEADLINE, to get
> Org-Mode to clear the non-repeated SCHEDULED date?
Simply add a repeater to the scheduled date too:
* TODO My Weekly Task
DEADLINE <2013-08-10 Sat +1w> SCHEDULED: <2013-08-08 Thu +1w>
Y
Hi David,
David Arroyo Menendez writes:
> + davidam-org-envolve-src(msg)
> + davidam-org-src(msg)
It's quicker to add values to `org-structure-template-alist' IMO.
> + davidam-org-envolve-check-list()
> + davidam-org-envolve-numbered-list()
I don't understand what those functions should do an
Hi Grant,
Grant Rettke writes:
> What are you opinions on the best mode for doing:
> 1. Presentations inside of Emacs
> 2. Using all the options available for org mode while in the presentation
... org-mode.
I've found out that tweaking the font size and navigating through
an Emacs buffer is o
Hi Marco,
marcowahls...@gmail.com writes:
> I think the texi documentation of the key triggering
> 'org-babel-load-in-session' is not up to date. The documentation says
> 'C-up' but it looks like it should be 'M-up'.
Fixed, thanks!
--
Bastien
Hi Rainer,
Rainer M Krug writes:
> Amended patches attached.
Applied, thanks,
--
Bastien
Hi Nick,
Nick Dokos writes:
> getting rid of just latex fragment undoing in
> org-ctrl-c-ctrl-c and toggling with C-c C-x C-l is probably the best
> solution.
Agreed, this is the case now in master.
> It probably would be a good idea to make the handling of clock
> overlays similar as well and
Hi Nicolas,
Nicolas Goaziou writes:
> Automatically set document's title to file name or buffer name when no
> TITLE keyword is provided.
I think that's the right thing to do and I don't see the benefits of
doing otherwise. In some cases, it even forced me to use better file
names.
--
Bast
Hi Samuel and Nicolas,
Nicolas Goaziou writes:
> Samuel Loury writes:
>
>> Thank you for the answer, do you know where I should look at to start
>> investigating to fix the issue?
>
> I think `org-add-planning-info' may be a good candidate, though I didn't
> look closely into it.
Is anyone hav
Hi Trevor,
Trevor Murphy writes:
> I've added a defcustom `org-agenda-show-and-scroll-up-show-drawers'.
> It defaults to t, and this gives the current behavior. Customizing it
> to nil gives the alternate behavior I prefer.
>
> My not-so-secret hope is that this patch is suitable for applying t
Hi Martin,
"Martin Beck" writes:
> How do you handle that?
I don't have any straight solution.
> Is there a way so kill all buffers which match e. g. "Org Agend (s:"
> with one command?
I just submitted a patch to emacs-devel which allows to list buffers
and use a regexp filter. If the patch
Hi,
regcl writes:
> I could not figure out how to do this from INFO. I found examples of
> preventing publishing of specific file extensions, but not whole
> directories.
Unless my memory fails me, :exclude works on names, not just on
extensions. So maybe using both :recursive and :exclude can
Hi Thorsten,
Thorsten Jolitz writes:
> what about adding one more option for WHICH
>
> ,[ C-h f org-entry-properties RET ]
> | org-entry-properties is a compiled Lisp function in `org.el'.
> |
> | (org-entry-properties &optional POM WHICH SPECIFIC)
> | [...]
> | If WHICH is nil or `all', ge
Hi Martin,
mc writes:
> 2nd screenshot
> org-special-keyword_face_example_after_commit_69700e1.png
> shows all ‘COMMENT’ keywords as grey only at the top outline level.
>
> I hope this clarifies the case.
Yes it does! This is now fixed, thanks,
--
Bastien
Hi Samuel,
Samuel Wales writes:
> The idea is to make Org agenda act more like Dired
> for consistency.
I favor this too -- thanks for raising this.
8.3 is already overloaded with new features, so let's put this
for 8.4, and let's continue to refine the suggestion.
--
Bastien
Hi Alexander,
Alexander Artemenko writes:
> Is there a way to show time effort estimates in the org-clock-report?
> I found only that :properties ("Effort") could be specified, but it
> does not work
> neither for one level, nor for summing children nodes' estimations.
It works for me. What di
Hi Erik,
using a custom date is done via `org-overriding-default-time' (within
a let construct) instead of (org-capture-put :default-time date).
Yes, the details are obscure and we need to better document this.
Let us know if you achieve something,
--
Bastien
Hi Samuel,
Samuel Wales writes:
> in recent maint, it seems that refiling an entry will put that entry
> into the kill ring. perhaps it should leave the kill ring intact?
I agree, I've always found this weird, I pushed a change for this.
It might be useful to be able to copy the refiled entry
Hi Samuel and Nicolas,
Nicolas Goaziou writes:
> This was discussed before on this ML. Some users made a point that
> `org-open-at-point' should process links in node properties. In the case
> of comments, though, I think we should be strict and use drawers
> instead.
I disagree, as you know.
stevejb writes:
> 1. How can I make Emacs recognize that once I type '#+LATEX:' that the
> rest of the line should be treated as being in the same minor mode as
> inside of a \begin{equation} \end{equation}?
This is not really a minor mode, thing within \begin{equation} \end{equation}
> 2. If q
Hi David,
David Belohrad writes:
> any possibility how to do this?
I don't see any, but if you use these captured items with
`org-agenda-to-appt', you will be able to get reminders,
which seems to be what you really want, no?
--
Bastien
Hi Sébastien,
Sebastien Vauban
writes:
> As I do suffer from the same problem, and do not take the time to
> archive all DONE subtrees, I think that an alternative approach would be
> that DONE subtrees wouldn't be expanded (by default) in the S-TAB
> cycles.
>
> Does that sound reasonable?
N
Hi Nicolas,
Nicolas Richard writes:
> org-narrow-to-subtree is very nice, and I now have C-x n s hard-wired
> into my fingers, but it doesn't work when outline-regexp is too
> different from org-outline-regexp in Outline-but-non-Org mode buffers.
>
> It looked pretty easy to fix, so here is my s
Hi Philip,
Philip Hudson writes:
> Excise spurious Org agenda buffers leaked by org-mobile
> https://gist.github.com/PhilHudson/d6429fb48caf6065ec8c
maybe we can find some equivalent code without requiring
'syntactic-sugar and 'anaphora ?
Let us know how we can improve org-mobile.el steadily f
Hi Shiyuan,
Shiyuan writes:
> Also, I found this tutorial for org-R http://orgmode.org/worg/
> org-tutorials/org-R/org-R.html, however, the org-R-apply function
> seems no longer available in my org mode 8.2.6. Is org-R supposed to
> be deprecated?
No, but it's moving. Since ob-R.el is perhaps
Hi Sébastien,
Sebastien Vauban
writes:
> Rick Frankel wrote:
>> (add-hook 'org-babel-after-execute-hook
>> (lambda () (org-display-inline-images nil t)))
>
> I simply had:
>
> (add-hook 'org-babel-after-execute-hook
> 'org-display-inline-images)
>
> Anyway, for me, this shoul
Hi Gregor,
Gregor Zattler writes:
> All three clocking items belong to the same heading. I'm fine
> with the first clocking gabp. But why is there a gap of 7536
> minutes shown although ‘org-agenda-clock-consistency-checks’ is
> at default values (gap-around 4:00)?
I've never seen this error
Hi,
Aaron Ecay writes:
> Have you heard back from the FSF about your copyright assignment?
This is more than 5 weeks since the patches were sent, so I hope the
FSF sent the papers.
Nicolas, let us know so that we can move forward on this.
Thanks,
--
Bastien
Hi Samuel and Achim,
Achim Gratz writes:
> Samuel Wales writes:
>> you will notice that the decrypted subtree is actually at a higher
>> level than its parent. this is a violation of org structure.
>>
>> in consequence, it can silently swallow the entire rest of the file.
>>
>> this is not desi
Hi Nicolas and Rustom,
Nicolas Goaziou writes:
> I have no objection, with appropriate documentation, obviously.
>
> Be careful, though, as some functions need to be updated accordingly:
> `org-list-struct', `org-element--list-struct',
> `org-at-item-description-p', `org-list-item-body-column',
Hi Grant,
my suggestion is to start with a verbose report of your own
understanding and exploration of Babel, then to refine it so
that it can look like a "langage model" (whatever that means.)
Anything that takes the users and the developers by the hand
would be... handy :)
2 cts of course,
--
Hi Samuel,
Samuel Wales writes:
> i find that when i do c-c ' on a source block, it either strips the
> final newline in the editing buffer or adds an unwanted blank line in
> the source block.
I can't reproduce this.
With (setq org-src-strip-leading-and-trailing-blank-lines nil) there
is no c
Nick Dokos writes:
>> To fix this problem by adding the following code after the
>> line (funcall lang-mode) in the org-html-fontify-code defun
>> in ox-html.el.
>>
>> (when (require 'fill-column-indicator nil 'noerror)
>> (fci-mode -1))
>>
>> Can this fix be integrated into ox-html.el?
>>
>
Samuel Wales writes:
> in maint, isearch very often puts ... at the top of the window. is
> this related to recent ellipsis bugs?
This is related to the removal of an ill-thought fix for this very
same problem. I suggest we live with it right now.
--
Bastien
Hi Craig,
Craig Tanis writes:
> Specifically, there's a line in `org-self-insert-command' that checks
> `last-command' against a list of table movement functions to see if
> auto-blank-field should occur. This list includes
> `yas/expand' -- obsolesced in yasnippet 0.8, in favor of
> `yas-expa
Hi Thierry,
Thierry Banel writes:
> I moved orgtbl-ascii-plot to MELPA (it was in Worg).
> (orgtbl-ascii-plot draws plots in pure Emacs by typing C-c p).
Thanks for this.
> Of course, I am still open to Dominik Carsten suggestion
> to add it into the core (org-table.el).
> http://thread.gmane.
Nick Dokos writes:
> I just found out that François Pinard (author of org grep among other
> tools and frequent contributor to this list) died recently:
>
> https://plus.google.com/118038589019918324505/posts/DFuvYBrh4th
François was among the few people you can finally call "friends",
even when
Hello Suvayu,
Suvayu Ali wrote:
> I am trying to export to LaTeX in batch mode, but it seems the exporter
> ignores macros defined in included files when exporting in batch mode.
>
> I tried to export like this:
>
> $ emacs --eval "(require 'ox-latex)" include-test.org \
> --eval '(org-L
Hi Luke,
Luke Crook writes:
> I just noticed that org does not jump to the correct cell in the table when
> examining formulas using "org-table-edit-formulas".
Are you still seeing problems here?
I tried to navigate through formulas from your example and
I didn't notice any problem.
Thanks,
"Martin Beck" writes:
> How do you handle that?
> Is there a way so kill all buffers which match e. g. "Org Agend (s:"
> with one command?
>
> Kind regards
>
> Martin
>
>
--
Bastien
Hi Sébastien,
Sebastien Vauban
writes:
> After an update to Org 8.2.7, I have troubles tangling files.
Do you still see this?
If so, did you have time to bisect and report the first bad commit?
Thanks!
--
Bastien
Hi Ista,
Ista Zahn writes:
> I don't know if this is ready for contrib yet (though I don't object
> if you think it is). I'm not sure what quality standards exist for
> contrib, but this is really quick and dirty; it would be nice to at
> least implement graphics support. On the other hand its b
Hi Nicolas,
Nicolas Richard writes:
> But now that I think about it, org mode simply should avoid narrow-map
> completely : users (me included) won't randomly try to run
> org-narrow-to-subtree outside of org buffers (and those who do deserve a
> bad error message) but they might want to give "C
Hi Anders,
Anders Johansson writes:
> We have no subexpression to match, it should be zero.
Indeed, thanks for reporting this and for the fix, applied.
--
Bastien
Hi Raimund,
this is now fixed, thanks and sorry for the delay.
Would be good if you can confirm if the issue is gone for you.
Thanks,
--
Bastien
Hi Rainer,
Rainer Stengele writes:
> I had the same problem yesterday. It seems that the current Org mode
> does "crash" somewhere in the daily work and then show the wrong
> behavior as described.
This smells like something that has to do with the element cache.
> I know this is not informati
Hi Noah,
Noah Slater writes:
> Can I pass in the range when calling it from a function?
Not directly.
(org-clock-display '(16)) will interactively prompt for a range.
(let ((org-clock-display-default-range 'thisweek))
(org-clock-display))
will display the clock with the new option
`org-clo
Hi Tianxiang,
Tianxiang Xiong writes:
> (add-hook 'org-mode-hook
> (lambda ()
> (add-hook 'after-save-hook 'tangle-init nil t)))
>
> However, when I open my init.org file, I see that the after-save-hook
> variable is nil. If I manually reapply org-mode, however, it works a
1 - 100 of 163 matches
Mail list logo