[O] [bug] in org-table.el: setq: Symbol's value as variable is void: repl

2014-07-29 Thread Thomas Holst
Hi list, after a recent update I get the following error when I try to recalculate formulas in a table: setq: Symbol's value as variable is void: repl Searching for 'repl' in the lisp directory reveales only one hit in org-table.el. repl was intoduced in commit: d4799eb * | org-table.el (or

[O] broken links in org-html publishing

2014-07-29 Thread Matt Lundin
Commit c9ca0b6df86de13a5302b5a3c955fb2fb1023d36 broke html links in my publishing setup. The links on my website point to file.org rather than file.html. The problem is a mismatch between line 145 and 2695. The attached patch fixes the issue. >From c23658146426d4780d7aa842f0bbd61e1356baf9 Mon S

Re: [O] make slim auto-complete work in Org-mode (delete some ac-source in Org-mode).

2014-07-29 Thread Drew Adams
> But this code will use =delq= to delete *global default* =ac-sources= too. > But I only want to delete in Org-mode. > So is there some other ways to do it? `remq' is like `delq' but non-destructive - it modifies a copy. (And `remove' is like `delete' but non-destructive.)

[O] make slim auto-complete work in Org-mode (delete some ac-source in Org-mode).

2014-07-29 Thread stardiviner
I setup default =ac-sources= for auto-complete like this: #+BEGIN_SRC emacs-lisp (setq-default ac-sources '(ac-source-yasnippet ac-source-abbrev ac-source-filename ac-source-files-in-current-dir ac-source-dictionary

[O] How to make Org-mode support file completion for file+sys: prefix?

2014-07-29 Thread stardiviner
I found Org-mode support file completion in `file:` prefix. But not `file+sys:`, Why? - [ ] If it is not enabled by default. Then how to enable it? - [ ] If Org-mode does not support it, then how can I enable it? Why do I need it? When I add a link to a PDF file, I need to use filename completio

Re: [O] Writing .el files for org in org?

2014-07-29 Thread John Kitchin
Ok, I am giving it a shot. Here is my setup: ;;; org path (defvar org-load-path (list (file-name-as-directory (expand-file-name "org" starter-kit-dir))) "List of directories to find org-files that `org-babel-load-file' can load code from") (defun org-require (feature) "Load a FEATURE

Re: [O] Regex Speedup for org-refresh-category-properties.

2014-07-29 Thread Malcolm Purvis
> "Achim" == Achim Gratz writes: Achim> I think that "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" Achim> would be a better regex, assuming that the original regex was Achim> doing the right thing. Thanks. Things are just as fast with this regexp. Malcolm -- Malcolm Pur

Re: [O] What is the best in-Emacs presentation mode for org-files today?

2014-07-29 Thread Jorge A. Alfaro-Murillo
Grant Rettke writes: el-get might be a nice option for you. There is also doc-present, but you would need to export to beamer first: https://github.com/dengste/doc-present/ Some people create there own, for example watch the first 3min of: http://www.youtube.com/watch?v=p3Te_a-AGqM Best,

Re: [O] [PATH] Speedups to org-table-recalculate

2014-07-29 Thread Bastien
Hi Nathaniel, Nathaniel Flath writes: > I believe I did that a long time ago, juste been inactive.   I've > definitely contributed to org before, although searching through my > email I can only find a copyright assignment for Emacs itself (dated > 8/23/09), do I have to re-do this? Of course y

Re: [O] [PATH] Speedups to org-table-recalculate

2014-07-29 Thread Nathaniel Flath
Hi Bastien, I believe I did that a long time ago, juste been inactive. I've definitely contributed to org before, although searching through my email I can only find a copyright assignment for Emacs itself (dated 8/23/09), do I have to re-do this? Thanks, Nathaniel Flath On Tue, Jul 29, 2014

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Bastien
Matt Lundin writes: >> Please go ahead for this too. > > Gladly! Applied, thanks! -- Bastien

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Bastien
Hi Matt, Matt Lundin writes: > Please *do not apply* the previous patch. Instead, I've attached an > optimized version. Applied, thanks. > All in all this patch + commit 507244d56b055e7595ba94fe89d45c7ddb2559df > modestly improves the performance of org-publish-org-sitemap. On a > directory of

Re: [O] if we operate on a subtree, perhaps we could adjust levels

2014-07-29 Thread Bastien
Hi Achim, Achim Gratz writes: > FWIW, I prefer the other solution since it is more general. Again, the > content from the decryption process can be treated like an include > (except for display rather than during export) or rather an "inline > file", which might be worth having independently of

Re: [O] [PATH] Speedups to org-table-recalculate

2014-07-29 Thread Bastien
Hi Nathaniel, Nathaniel Flath writes: > This patch speeds up org-table-recalculate by removing all 'message' > function calls.  Additionally adds an early check for whether there > are any formulas and only executes the rest of the function if so. The patch is bigger than what can be accepted w

Re: [O] Regex Speedup for org-refresh-category-properties.

2014-07-29 Thread Bastien
Achim Gratz writes: > I think that "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" would be a > better regex, assuming that the original regex was doing the right thing. Applied, thanks, -- Bastien

Re: [O] Agenda/report of all headlines with clocked time

2014-07-29 Thread Bastien
Hi Subhan, Subhan Michael Tindall writes: > I'm not entirely sure what you mean by 'the time of the master > branch', but I can't get any prompt for a time range with this command > anywhere in the file. "from the tip of the master branch" -- I meant: If you clone org-mode and get the most rece

[O] Bug: pdf page numbers in links are ignored when exporting to latex [8.2.7b (8.2.7b-13-gd8a0ee-elpa @ /home/moritz/.emacs.d/elpa/org-20140728/)]

2014-07-29 Thread Moritz Kiefer
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 http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. -

Re: [O] A gentle introduction to Emacs & Org-mode?

2014-07-29 Thread John Kitchin
jorge.a.alf...@gmail.com (Jorge A. Alfaro-Murillo) writes: thanks for point that out, I have fixed them now I think. That must be from some link escaping in the translation of org to html I guess. > Thanks John, > > The links to the other videos are broken. I think that the addresses > have %3D

Re: [O] Preset filter sometimes persistent

2014-07-29 Thread Thomas Morgan
Hi, Bastien, Bastien writes: > Thomas Morgan writes: > >> Here is a recipe for a bug on the maint branch that causes a preset tag >> filter to be carried over to another agenda view in some cases. > > This should now be fixed in maint. It's fixed; thanks! Best regards, Thomas

Re: [O] How to analyze clocking reports (e. g. with spreadsheet application)?

2014-07-29 Thread Monroe, Will
Christoph, Thanks for sharing this. I'm just now beginning to explore the ability of org to provide weekly and monthly reports. I've gotten as far as implementing the elisp that Sacha Chua shared here: http://pages.sachachua.com/.emacs.d/Sacha.html#monthly-reviews It works great but at thi

Re: [O] org-envolve?

2014-07-29 Thread David Arroyo Menendez
Nick Dokos writes: >>> Then I mark the region of this ítems, apply the function and obtain: >>> >>> + [ ] mapcar >>> + [ ] defun >>> + [ ] apply >>> + [ ] cons >> >> FWIW, I use rectangular insertion for this : >> 1. select region (mark on the first 'm', point on the last 'c', or >> conversely)

[O] [PATH] Speedups to org-table-recalculate

2014-07-29 Thread Nathaniel Flath
This patch speeds up org-table-recalculate by removing all 'message' function calls. Additionally adds an early check for whether there are any formulas and only executes the rest of the function if so. org-table-speedup.patch Description: Binary data

Re: [O] org-envolve?

2014-07-29 Thread David Arroyo Menendez
Nicolas Richard writes: > David Arroyo Menendez writes: >> Yes, I have some ítems >> >> mapcar >> defun >> apply >> cons >> >> Then I mark the region of this ítems, apply the function and obtain: >> >> + [ ] mapcar >> + [ ] defun >> + [ ] apply >> + [ ] cons > > FWIW, I use rectangular insertion

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Matt Lundin writes: > Bastien writes: > >> Matt Lundin writes: >> >>> So to be safe, we could do the following in org-publish-find-date and >>> org-publish-find-title... >>> >>> (org-export-with-buffer-copy (org-export-get-environment)) >>> >>> What do you think? >> >> Yes, this sounds right,

Re: [O] What is the best in-Emacs presentation mode for org-files today?

2014-07-29 Thread Grant Rettke
el-get might be a nice option for you. el-get-sources lets you set up any source and you might use an 'after' action to tangle the file. I didn't do that, because my system won't tangle org-show for some reason only my system knows. The recipe is really basic but good enough for me: #+begin_src

[O] org-element - canonical way to parse only headline at point?

2014-07-29 Thread Thorsten Jolitz
Hi List, with the new parser, how do I parse only the headline at point? There are ARGS in the parser/mapper functions that restrict parsing, but I suspect that still the whole buffer is parsed for the genealogy - right? With my current knowledge I would either narrow the buffer to the subtree

Re: [O] remapping C-c ' to another key

2014-07-29 Thread Thorsten Jolitz
Alan Schmitt writes: > Hello, > > I'm trying to remap ~C-c '~ to ~ '~ and I'm having some > trouble. More specifically, I'm able to initiate the editing part using > a global binding to `org-edit-special', but I don't know how to bind the > same key to `org-edit-src-exit' when I'm editing a sourc

Re: [O] processing lines before display to agenda

2014-07-29 Thread Joe Corneli
Bastien writes: > I would simply hack the agenda display through a function in > `org-agenda-finalize-hook'. > > You'd rather hide 10 priority cookies from there instead of letting > `org-agenda-format-item' process possibly thousands of entries. Thanks for the tip! I already use that for some

Re: [O] Fontification of org code block not printed

2014-07-29 Thread Stefan-W. Hahn
Mail von Bastien, Mon, 28 Jul 2014 at 18:57:37 +0200: Hello Bastian, > This is the fault of Org. > > I fixed this in master by removing `org-block-background'. > > This is radical but I think this is really better: > http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=f8b42e8 I tested and it w

[O] remapping C-c ' to another key

2014-07-29 Thread Alan Schmitt
Hello, I'm trying to remap ~C-c '~ to ~ '~ and I'm having some trouble. More specifically, I'm able to initiate the editing part using a global binding to `org-edit-special', but I don't know how to bind the same key to `org-edit-src-exit' when I'm editing a source block. As I suspect I will also

Re: [O] How to analyze clocking reports (e. g. with spreadsheet application)?

2014-07-29 Thread Christoph LANGE-BEVER
Hi all, I thought I'd share with you one nice thing I figured out recently. It seemed appropriate to post it as a belated answer to this thread: On 2013-04-27 23:50, Martin wrote: > I'm using the org-mode clocking features (in org-mode 7.9.4) extensively > to document how much time I spent with

Re: [O] [PATCH] org-capture, :default-time and <...>

2014-07-29 Thread Erik Hetzner
Hi Bastien, At Tue, 29 Jul 2014 17:10:51 +0200, Bastien wrote: > > Hi Erik, > > Erik Hetzner writes: > > > What I would like to do is have something a capture template string > > similar to %^t, but with a custom date format string, e.g. > > %^<%Y/%m/%d>. Is this possible in some way? > > I'd

Re: [O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Thorsten Jolitz
Xebar Saram writes: > ok ignore above email, i just saw the previous email..damm gmail..grrr RFC is just 'request for comments': , | http://en.wikipedia.org/wiki/Request_for_Comments ` PS I know that feeling, a (too) quick C-c C-c in gnus and that damned email is out ... ;) -- cheer

Re: [O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Xebar Saram
Thorsten, thats amazing! thanks so much , really appreciate this i hope other people will also find it useful kind regards Z On Tue, Jul 29, 2014 at 7:23 PM, Xebar Saram wrote: > ok ignore above email, i just saw the previous email..damm gmail..grrr > > z > > > On Tue, Jul 29, 2014 at 7:21

Re: [O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Xebar Saram
ok ignore above email, i just saw the previous email..damm gmail..grrr z On Tue, Jul 29, 2014 at 7:21 PM, Xebar Saram wrote: > hi i fell like an idiot but what is RFC, is that a repo of some sorts, > would you mind pasting a link? > > sorry about that > > Z > > > On Tue, Jul 29, 2014 at 5:48 P

Re: [O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Xebar Saram
hi i fell like an idiot but what is RFC, is that a repo of some sorts, would you mind pasting a link? sorry about that Z On Tue, Jul 29, 2014 at 5:48 PM, Xebar Saram wrote: > Hi again > > looks great but i think there may be a bug. if there is 1 line then issues > the function works perfect (

Re: [O] Regex Speedup for org-refresh-category-properties.

2014-07-29 Thread Achim Gratz
Malcolm Purvis writes: > I use the master version of org, and some months ago the time required > to generate my custom agenda view sky rocketed. I've found that 90% of > the time was being spent in the call to re-search-forward in > org-refresh-category-properties. The patch below speeds up the

Re: [O] Repeated tasks repeats even if the time stamp is commented

2014-07-29 Thread Samuel Loury
Hi, Bastien writes: > 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

Re: [O] What is the best in-Emacs presentation mode for org-files today?

2014-07-29 Thread Thorsten Jolitz
John Kitchin writes: > yes, you should be able to use org-babel-tangle to extract the .el > file. Sorry for leaving that detail out! since I always work the other way around (from elisp to org-mode via outorg) I don't have the tangling option very present, otherwise it would (and should) be quit

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Bastien writes: > Hi Matt, > > Matt Lundin writes: > >> The documentation for org-agenda-inhibit-startup says that the default >> is t. However, the default is nil. >> >> , >> | Inhibit startup when preparing agenda buffers. >> | When this variable is `t' (the default), the initialization of

Re: [O] if we operate on a subtree, perhaps we could adjust levels

2014-07-29 Thread Achim Gratz
Bastien writes: >> 2. Demote the whole subtree to toplevel before encryption and promote >> into the correct level on decryption, (much in the same way that >> includes are handled). > > By "correct level on decryption" you mean toplevel? This would really > circumvent the problem. Not sure what

Re: [O] [patch] [babel] Patches to fix tangling and variable transfer of tables in R

2014-07-29 Thread Rainer M Krug
Bastien writes: > Hi Rainer, > > Rainer M Krug writes: > >> Amended patches attached. > > Applied, thanks, Thanks, Rainer -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology Stellenbosch Univer

Re: [O] [FeatReq] New option for `org-entry-properties' WHICH argument?

2014-07-29 Thread Thorsten Jolitz
Bastien writes: > Hi Thorsten, > > Thorsten Jolitz writes: > >> - ask the maintainer for a hint towards a smarter less intrusive >>solution? > > Well, the maintainer will be on holiday starting from tonight until > August, 18th, so let's wait by then? > > If you happen to make progress in t

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Bastien writes: > Hi Matt, > > Matt Lundin writes: > >> So to be safe, we could do the following in org-publish-find-date and >> org-publish-find-title... >> >> (org-export-with-buffer-copy (org-export-get-environment)) >> >> What do you think? > > Yes, this sounds right, please go ahead. > > I

Re: [O] Agenda/report of all headlines with clocked time

2014-07-29 Thread Subhan Michael Tindall
-Original Message- > From: bzg=gnu@bzg.fr [mailto:bzg=gnu@bzg.fr] On Behalf Of Bastien > Sent: Tuesday, July 29, 2014 7:14 AM > To: Subhan Michael Tindall > Subject: Re: Agenda/report of all headlines with clocked time > > (You forgot to CC the list.) Sorry! > Subhan Michael Tindal

Re: [O] File name with space

2014-07-29 Thread Marcin Borkowski
Dnia 2014-07-26, o godz. 06:50:40 Chris Henderson napisał(a): > How do I link a local file or folder that has space? Looks like the > link goes broken. Slightly off topic: using spaces in filenames is asking for trouble. (Personally, I stick (almost exclusively) to [a-z0-9-].) Best, -- Marcin

Re: [O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Thorsten Jolitz
Xebar Saram writes: Hi, > looks great but i think there may be a bug. can you try the new version in my RFC please and let me know if it works as expected. I invested a bit of time into this function because I actually need this quite often too, and I'm happy you pushed me to finally write i

[O] [RFC] Add commmand for wrapping sexp/region in src-blocks to Org?

2014-07-29 Thread Thorsten Jolitz
Hi List, I often missed the following command for wrapping existing content into src-blocks in the past, besides knowing about `org-babel-demarcate-block' and easy template insertion. Would it make sense to add it to Org-mode? I made it cover several use cases: - Wrap sexp at point - perfect

Re: [O] hiding intrusive target-markups-brackets ++ Re: org-special-keyword face not showing in sublevels anymore since commit 69700e1

2014-07-29 Thread Bastien
Hi, mc writes: > Please allow me to shortly direct your attention to an open, > still uncommented 'feature request’ addressing an optional > ‘fontification' or ‘hiding' of the some kind of intrusive > target-markups-brackets ( << >> ), > just like this is done with the org-link brackets ( [[

Re: [O] What is the best in-Emacs presentation mode for org-files today?

2014-07-29 Thread John Kitchin
Thorsten Jolitz writes: yes, you should be able to use org-babel-tangle to extract the .el file. Sorry for leaving that detail out! > Nicolas Richard writes: > >> Thorsten Jolitz writes: >> >>> John Kitchin writes: >>> >>> Hi John, >>> I agree with org-mode. Check out https://www.yo

Re: [O] processing lines before display to agenda

2014-07-29 Thread Bastien
Hi Joe, Joe Corneli writes: > But what if, for example, I would like to remove priorities cookies as > well? I would simply hack the agenda display through a function in `org-agenda-finalize-hook'. You'd rather hide 10 priority cookies from there instead of letting `org-agenda-format-item' pro

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Bastien
Hi Matt, Matt Lundin writes: > The documentation for org-agenda-inhibit-startup says that the default > is t. However, the default is nil. > > , > | Inhibit startup when preparing agenda buffers. > | When this variable is `t' (the default), the initialization of > | the Org agenda buffers is

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Bastien
Hi Matt, Matt Lundin writes: > So to be safe, we could do the following in org-publish-find-date and > org-publish-find-title... > > (org-export-with-buffer-copy (org-export-get-environment)) > > What do you think? Yes, this sounds right, please go ahead. I applied your fix in the maint branc

[O] processing lines before display to agenda

2014-07-29 Thread Joe Corneli
I would find it quite useful to have a variable similar to `org-agenda-prefix-format' that would apply changes to the *contents*, rather than to the *prefix* of agenda items. The nice thing about `org-agenda-prefix-format' is that it allows different formatting for different agenda buffers. Simil

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Matt Lundin writes: > Bastien writes: > >> Hi Matt, >> >> Matt Lundin writes: >> >>> This patch fixes a bug in which org-publish makes the following call... >>> (let ((org-inhibit-startup t) (org-mode))) >> >> Applied, thanks! > > This could be solved by wrapping org-export-get-environment with

Re: [O] [PATCH] org-capture, :default-time and <...>

2014-07-29 Thread Bastien
Hi Erik, Erik Hetzner writes: > What I would like to do is have something a capture template string > similar to %^t, but with a custom date format string, e.g. > %^<%Y/%m/%d>. Is this possible in some way? I'd use this in the capture template: %(format-time-string "%Y/%m/%d" (org-time-string-

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Matt Lundin writes: > Bastien writes: > >> Hi Matt, >> >> Matt Lundin writes: >> >>> This patch fixes a bug in which org-publish makes the following call... >>> (let ((org-inhibit-startup t) (org-mode))) >> >> Applied, thanks! > > Oops... I see now that org-publish-find-date and org-publish-fin

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Bastien writes: > Hi Matt, > > Matt Lundin writes: > >> This patch fixes a bug in which org-publish makes the following call... >> (let ((org-inhibit-startup t) (org-mode))) > > Applied, thanks! Oops... I see now that org-publish-find-date and org-publish-find-title call org-export-get-environm

Re: [O] Bug: org table updates [8.2.7 (8.2.7-elpaplus @ /Users/ctanis/.emacs.d/elpa/org-plus-contrib-20140613/)]

2014-07-29 Thread Bastien
Hi Craig, Craig Tanis writes: > How about org-table-cell-blank-triggers ? Sounds good. Can you make a patch for this? The variable needs to be in org-table.el and org.el needs to use (defvar org-table-cell-blank-triggers) before it's first use. Thanks in advance, -- Bastien

Re: [O] bug: isearch puts ellipses at top of window

2014-07-29 Thread Nicolas Richard
Samuel Wales writes: > in maint, isearch very often puts ... at the top of the window. is > this related to recent ellipsis bugs? If you have a reproducible recipe, it would be very nice ! TIA, -- Nico.

Re: [O] [FeatReq] New option for `org-entry-properties' WHICH argument?

2014-07-29 Thread Bastien
Hi Thorsten, Thorsten Jolitz writes: > - ask the maintainer for a hint towards a smarter less intrusive >solution? Well, the maintainer will be on holiday starting from tonight until August, 18th, so let's wait by then? If you happen to make progress in the meantime, that'd be good too.

Re: [O] bug: isearch puts ellipses at top of window

2014-07-29 Thread Bastien
Samuel Wales writes: > is this fixed in master? No. I can't make this a priority now, because there are more important issues than this one, although I understand why it's important for you. On my watch list, -- Bastien

Re: [O] Regex Speedup for org-refresh-category-properties.

2014-07-29 Thread Bastien
Hi Nick, Nick Dokos writes: >What does the asterisk do? I think this is simply a code typo, fixed in master. -- Bastien

Re: [O] proposal for improved integration of cdlatex

2014-07-29 Thread Bastien
Federico Beffa writes: > To be honest, I do not know. But, the original cdlatex-tab function > takes those parameters and I thought it would be a good idea to pass > on the same parameters, just in case someone uses them. Ah okay, I didn't check that. Please go ahead with the patch then, --

Re: [O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Xebar Saram
Hi again looks great but i think there may be a bug. if there is 1 line then issues the function works perfect (although no prompt, which for 1 line is ideal). but using C-u before the M-x dosent seem to do anything at all, it just wraps the current line. do i need any dependencies or doing someth

Re: [O] Regex Speedup for org-refresh-category-properties.

2014-07-29 Thread Nick Dokos
Malcolm Purvis writes: > I use the master version of org, and some months ago the time required > to generate my custom agenda view sky rocketed. I've found that 90% of > the time was being spent in the call to re-search-forward in > org-refresh-category-properties. The patch below speeds up th

Re: [O] proposal for improved integration of cdlatex

2014-07-29 Thread Federico Beffa
>> the parameters are just in case you want to use this function >> non-interactively in place of cdlatex-tab. > > Is there a real use-case for non-interactive use? To be honest, I do not know. But, the original cdlatex-tab function takes those parameters and I thought it would be a good idea to p

Re: [O] LaTeX export and org-add-link-type

2014-07-29 Thread Fabrice Niessen
Leonard Avery Randall wrote: > Serge Cohen writes: >> Is this normal, if so is there another way to obtain the same results >> as what is proposed in the documentation ? > > The behaviour you are explaining is not normal. The setup you described > should work. > >> To complete the post : I am usin

Re: [O] Enabling another language in org-babel

2014-07-29 Thread Bastien
Hi Ista, some comments on the code below. Ista Zahn writes: > ;; Copyright (C) 2014 Ista Zahn > ;; Author: Ista Zahn, based on ob-julia.el by G. Jay Kerns, and ob-R.el > ;; by Eric Schulte and Dan Davison You need to reformat this -- see files with multiple authors in Org or in Emacs. > ;; Th

Re: [O] how to use :options-alist in org-export-define-derived-backend ?

2014-07-29 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > It is "good enough", but the default value (without TITLE) is still > dubious. Anyway, this is a minor issue, if at all. Yes. But I know see your point about the default title being useless most of the times. So I'm fine with the proposed change in master

Re: [O] proposal to have ignoreheading tags/properties

2014-07-29 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > Filters are _not_ meant to be in core since they are hardly a generic > solution for a class of problem. They are entry points for user-level > hacking. Generic patches should operate at the parse tree level, not > using regexps. > > Eric's filter, like any

Re: [O] if we operate on a subtree, perhaps we could adjust levels

2014-07-29 Thread Bastien
Hi Samuel, Samuel Wales writes: > org-yank-adjusted-subtrees? I think this would work if the yank contains only one subtree, which will not be the case most of the times. Still worth exploring, I'll keep this in my todo list, -- Bastien

Re: [O] proposal for improved integration of cdlatex

2014-07-29 Thread Bastien
Hi Federico, Federico Beffa writes: > the parameters are just in case you want to use this function > non-interactively in place of cdlatex-tab. Is there a real use-case for non-interactive use? >> I'm not sure it's worth it. You can indent the element with M-h C-\ >> easily enough, no? > > B

Re: [O] how to use :options-alist in org-export-define-derived-backend ?

2014-07-29 Thread Nicolas Goaziou
Hello, Bastien writes: > Nicolas Goaziou writes: > >> The benefit is that it becomes less clumsy to get rid of the title, when >> you don't want any. > > You often want a title, you more rarely want no title. That's true in my case. However, the title I want is never the file or buffer name, a

Re: [O] [RFC] Deprecate `org-list-empty-line-terminates-plain-lists'

2014-07-29 Thread Bastien
Nicolas Goaziou writes: > Done. I'll write the patch once 8.3 is released. Thanks a lot, -- Bastien

Re: [O] [bug, beamer] Frame parameters taken from example code block

2014-07-29 Thread Sebastien Vauban
Bastien wrote: > Nicolas Goaziou writes: > >> As a side note, "forbidding" blank lines between headlines and the >> properties drawer (or better just after the planning line, if any) would >> make parsing easier and faster in a lot of cases. Unfortunately, I think >> this would break a lot of fi

Re: [O] how to use :options-alist in org-export-define-derived-backend ?

2014-07-29 Thread Nicolas Richard
Bastien writes: > Nicolas Goaziou writes: >> The benefit is that it becomes less clumsy to get rid of the title, when >> you don't want any. > > You often want a title, you more rarely want no title. > > AFAIU, using an empty #+TITLE: is the way to go right now, > which seems good enough to me.

[O] using .rtf on emacs

2014-07-29 Thread Renato Pontefice
Hi, I need to handle .rtf (made by MS office) Each time I try to handle them, I receive some errors. Then, I need to export from MS Office and Open it from Libreoffice. each time, I found that i.e. : - I lost - highlighted text - bullet list - if I set Arial text (in MS office) I have Times New Rom

Re: [O] [bug, beamer] Frame parameters taken from example code block

2014-07-29 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > As a side note, "forbidding" blank lines between headlines and the > properties drawer (or better just after the planning line, if any) would > make parsing easier and faster in a lot of cases. Unfortunately, I think > this would break a lot of files, too.

Re: [O] Installing Org 8

2014-07-29 Thread SabreWolfy
This was a network/proxy issue. Emacs was also unable to contact GNU, but displayed a default/cached (?) list of packages.

Re: [O] how to use :options-alist in org-export-define-derived-backend ?

2014-07-29 Thread Rasmus
Bastien writes: > Hi Nicolas, > > Nicolas Goaziou writes: > >> The benefit is that it becomes less clumsy to get rid of the title, when >> you don't want any. > > You often want a title, you more rarely want no title. I disagree. If I want a title I'll be sure to type it out and the file name

Re: [O] [bug, beamer] Frame parameters taken from example code block

2014-07-29 Thread Nicolas Goaziou
Hello, Bastien writes: > Nicolas Goaziou writes: > >>> Maybe it's time to forbid blank lines between headlines and the >>> properties drawer? Or at least to discourage separating them in >>> the manual? Otherwise I don't have a steady solution at hand. >> >> I think this is fixed already. >

Re: [O] [RFC] Deprecate `org-list-empty-line-terminates-plain-lists'

2014-07-29 Thread Nicolas Goaziou
Bastien writes: > Nicolas Goaziou writes: > >> Therefore, I suggest to mark it as deprecated in Org 8.3 release notes, >> and remove it altogether in Org 8.4. >> >> WDYT? > > Fine for me, please go ahead, Done. I'll write the patch once 8.3 is released. Regards, -- Nicolas Goaziou

Re: [O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Thorsten Jolitz
Thorsten Jolitz writes: > Xebar Saram writes: This is what I got in my init.el now (improved version with global keybindings). And I like, will probably become one of those commands I use all the time. I already used it to wrap the following code in 3 src-blocks: #+begin_src emacs-lisp (defu

Re: [O] [Mac OS X] - Capture items not clocking-out upon refile

2014-07-29 Thread Bastien
Hi Hassan, Hassan Dar writes: > When adding a task via org-capture (C-c c), as per Brent's system the > capture item is clocked-in. Once the capture item is amended, if I do > a 'C-c C-c' to save the task to the inbox, it clocks-out of the task > as intended. > > However, if I choose instead to

[O] Elisp function for wrapping sexp or region in src-block (was Re: some lisp help)

2014-07-29 Thread Thorsten Jolitz
Xebar Saram writes: > Thx and sorry about not posting to the list, was a gmail mistake (i > really *need* to start with gnus..just to intimidating :)) > > wrapping in parens by marking the region kinda defeats the purpose > sine the original function i posted (in the original post) already > wrap

Re: [O] org-table-edit-formulas misbehaving in 8.2.7b

2014-07-29 Thread Bastien
Hi Nick, Nick Dokos writes: > I think this was another instance of the bug that was fixed with > commit c9613c0cad40c9d901609abcb8e9527c85cb9eb3. At least, I assumed > so and I haven't heard anything to contradict that. I guess you're right, thanks for following up, -- Bastien

Re: [O] Regex Speedup for org-refresh-category-properties.

2014-07-29 Thread Bastien
Hi Malcolm, Malcolm Purvis writes: > I use the master version of org, and some months ago the time required > to generate my custom agenda view sky rocketed. I've found that 90% of > the time was being spent in the call to re-search-forward in > org-refresh-category-properties. The patch below

Re: [O] A gentle introduction to Emacs & Org-mode?

2014-07-29 Thread Jorge A. Alfaro-Murillo
Thanks John, The links to the other videos are broken. I think that the addresses have %3D instead of an equal sign (=). Best, Jorge.

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Bastien
Hi Matt, Matt Lundin writes: > This patch fixes a bug in which org-publish makes the following > call... Applied, thanks! -- Bastien

Re: [O] Babel-R TBLFM example

2014-07-29 Thread Bastien
Hi Shiyuan, Shiyuan writes: > Thanks Bastien. I see ob-R.el from org-mode repos has been updated. > So is the org-R from git-repos ready to use? Could you suggest  a > good place to start learning the new org-R? The source file ob-R.el? The recent committers to ob-R.el we be more in a position

Re: [O] Bug: org table updates [8.2.7 (8.2.7-elpaplus @ /Users/ctanis/.emacs.d/elpa/org-plus-contrib-20140613/)]

2014-07-29 Thread Craig Tanis
Great news! How about org-table-cell-blank-triggers ? On Jul 28, 2014 1:25 PM, "Bastien" wrote: > 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-f

Re: [O] [babel][PATCHES] exporting inline source code

2014-07-29 Thread Bastien
Hi Nicolas, Nicolas Berthier writes: > I will investigate on this ASAP, and notice you when I receive > a confirmation that the FSF signed it. Thanks, we should expect longer delays during the summer I guess. -- Bastien

Re: [O] [bug, beamer] Frame parameters taken from example code block

2014-07-29 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: >> Maybe it's time to forbid blank lines between headlines and the >> properties drawer? Or at least to discourage separating them in >> the manual? Otherwise I don't have a steady solution at hand. > > I think this is fixed already. Okay, I didn't see an

Re: [O] [Mac OS X] - Capture items not clocking-out upon refile

2014-07-29 Thread Hassan Dar
Hello Bastien, org-version returns: Org-mode version 8.2.6 (8.2.6-6-gfc37d1-elpa On Sunday, 27 July 2014 at 12:29, Bastien wrote: > Hi Hassan, > > > I am running Mac OS X 10.8 (Mountain Lion) and emacs 24.3. > > What is your Org version? > > Please report what M-x org-version RET says. >

Re: [O] how to use :options-alist in org-export-define-derived-backend ?

2014-07-29 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > The benefit is that it becomes less clumsy to get rid of the title, when > you don't want any. You often want a title, you more rarely want no title. AFAIU, using an empty #+TITLE: is the way to go right now, which seems good enough to me. What do you thi

Re: [O] some lisp help (for complete 0-knowledge lisp emacs user :))

2014-07-29 Thread Xebar Saram
Thx and sorry about not posting to the list, was a gmail mistake (i really *need* to start with gnus..just to intimidating :)) wrapping in parens by marking the region kinda defeats the purpose sine the original function i posted (in the original post) already wraps the marked text in an orgmode b

Re: [O] some lisp help (for complete 0-knowledge lisp emacs user :))

2014-07-29 Thread Thorsten Jolitz
Xebar Saram writes: > Hi list > > so i know i should start to really learn lisp but real life (uni work, > family etc) doesn't really allow me so im marking my 1st year > anniversary of using emacs without grasping lisp (plus i am in > generally coding inept :)) > > in any case :) i have this

[O] hiding intrusive target-markups-brackets ++ Re: org-special-keyword face not showing in sublevels anymore since commit 69700e1

2014-07-29 Thread mc
Hello again Bastien, thanx for the fix! Please allow me to shortly direct your attention to an open, still uncommented 'feature request’ addressing an optional ‘fontification' or ‘hiding' of the some kind of intrusive target-markups-brackets ( << >> ), just like this is done with the org-link

[O] some lisp help (for complete 0-knowledge lisp emacs user :))

2014-07-29 Thread Xebar Saram
Hi list so i know i should start to really learn lisp but real life (uni work, family etc) doesn't really allow me so im marking my 1st year anniversary of using emacs without grasping lisp (plus i am in generally coding inept :)) in any case :) i have this handy lisp snippet that i find very

  1   2   >