Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Nicolas Goaziou
Hello, Derek Feichtinger writes: > While diagnosing a server condition, I was listing parts of a system log > via a babel expression. The 130 lines in the babel output are wrapped in > an example block. This block caused massive slowdown of scrolling and > other

Re: [O] jabref like orgmode based solution to bibliography management (not for latex)

2015-12-05 Thread John Kitchin
I cannot reproduce that, and it shouldn't have any effect. Maybe something else is going on. > > Thanks for the quick answer. this does seem to work but as a side effect > seems to break the TAB key to select action > the message window shows: > > helm-select-nth-action: Nothing is selected > No

Re: [O] [ANN] Radio lists update

2015-12-05 Thread Aaron Ecay
Hi Nicolas, 2015ko abenudak 3an, Nicolas Goaziou-ek idatzi zuen: > > Hello, > > I just pushed a patch which should make radio lists on par with radio > tables. In particular, it fixes a long standing issue with > `org-list-to-generic' which was not really usable, and thus side-stepped > in

Re: [O] syncing my life (orgmode :)) to a mobile (android) device..cant find a holistic reliable way..how do you guys manage to do it?

2015-12-05 Thread Xebar Saram
Thx Eric I am also really looking forward to the new Pyra, im seriously considering buying it when it comes out :D it seems that that would be the easiest solution to orgmode on the go. shame i will have to carry 2 devices though, brings me back to the days of a crappy cell and a PDA :) best Z

Re: [O] [PATCH] org-protocol: Allow key=val=value2-style URLs

2015-12-05 Thread Aaron Ecay
Hi Sacha, Thanks for the patch. It looks great! I assume eventually we will want to deprecate the old-style links, and make new-style the only style. Unfortunately, this would mean another API change to remove the ‘new-style’ arguments from these functions. I don’t have any clever ideas to

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Aaron Ecay
Hi Nicolas, 2015ko abenudak 5an, Nicolas Goaziou-ek idatzi zuen: > > This is a limitation of our current way to fontify a buffer. Changing it > implies some serious work, which I'd rather spend on switching to > syntax-based (instead of regexp-based) fontification. Indeed. However, this code

Re: [O] syncing my life (orgmode :)) to a mobile (android) device..cant find a holistic reliable way..how do you guys manage to do it?

2015-12-05 Thread Eric S Fraga
On Saturday, 5 Dec 2015 at 09:10, Xebar Saram wrote: [...] > all this is great yet i travel alot to conferences and meeting and do rely > on a mobile device (in my case a android nexus 6) in many situations. I > check my emails on it as much as i do on my PC, look at upcoming and > schedule

[O] problems with tex4ht and SVG images

2015-12-05 Thread Eric S Fraga
Hello, just a heads up for those that may run into the same problem I have. If you try to use babel with LaTeX to create an SVG file, and if you have texlive 2014 installed, you may run into errors like this: , | ! Undefined control sequence. | \pgfsys@svg@newline ->\Hnewline |

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Nicolas Goaziou
Hello, Aaron Ecay writes: > Indeed. However, this code was needlessly slow because it failed to > take advantage of short-circuit evaluation. According to the profile report, I don't understand the logic of your patch. >>> - org-footnote-in-valid-context-p

Re: [O] Issues w/ hacking Org font-lock for variable pitch prose

2015-12-05 Thread Nicolas Goaziou
Hello, Göktuğ Kayaalp writes: > /I’ll first explain the situation and append the code to the message./ > Go to code: [ M-x re-search-forward RET ^CODE RET ] > > I read in Org mode a lot, and I dislike reading prose in monospace > fonts. So I have turned on

Re: [O] jabref like orgmode based solution to bibliography management (not for latex)

2015-12-05 Thread John Kitchin
Try (untested) (defun helm-bibtex-ikloog-publications () "Search BibTeX entries authored by me" (interactive) (let ((helm-bibtex-bibliography "your special bibfile")) (helm :sources '(helm-source-bibtex) :full-frame t :input "kloog !unpublished !prep "

Re: [O] jabref like orgmode based solution to bibliography management (not for latex)

2015-12-05 Thread Xebar Saram
Hi John Thanks for the quick answer. this does seem to work but as a side effect seems to break the TAB key to select action the message window shows: helm-select-nth-action: Nothing is selected No Actions available [8 times] thx again Z On Sat, Dec 5, 2015 at 3:05 PM, John Kitchin

Re: [O] department logo/header image in koma/latex export?

2015-12-05 Thread Eric S Fraga
On Saturday, 5 Dec 2015 at 12:16, Xebar Saram wrote: > Hi all > > i am looking into using koma and orgmode to export to recommendation > letters. > Does anyone have an example of adding a department logo/header image to the > top of the page and/or bottom? You can redefined \firsthead and/or

Re: [O] jabref like orgmode based solution to bibliography management (not for latex)

2015-12-05 Thread Xebar Saram
Hi Guys I have no clue why i had the issue before but after an emacs restart Johns code snippet does work :D thanks again guys, really appreciate your help as always kind regards Z On Sat, Dec 5, 2015 at 8:04 PM, Titus von der Malsburg wrote: > > John’s code should do

[O] Proposal and RFC for improving ob-python

2015-12-05 Thread Ondřej Grover
Hello, I've been playing around with the Org-mode Babel framework and I am grateful to all the contributors for making this wonderful library. After some time I noticed that Python support seems a little hacky and inconsistent and after reading through ob-python.el and consulting Python

Re: [O] syncing my life (orgmode :)) to a mobile (android) device..cant find a holistic reliable way..how do you guys manage to do it?

2015-12-05 Thread Bingo UV
On Sat, 5 Dec 2015 14:08:19 + Eric S Fraga wrote: > Case 2: this is my preferred mobile solution. I have an OpenPandora > palmtop computer [1] running the full Debian testing distribution with > Oh, and the Pandora has a fantastic audio system :-) > > Sorry if I

Re: [O] syncing my life (orgmode :)) to a mobile (android) device..cant find a holistic reliable way..how do you guys manage to do it?

2015-12-05 Thread Matt Lundin
Xebar Saram writes: > > So my question is (sorry for the long intro :)) what do orgmode users > (who also are heavy mobile users) do? do they give up on contacts and > calendaring on the mobile? maintain 2 separate databases? what tools > do people use to overcome this issue?

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Aaron Ecay
Hi Nicolas, 2015ko abenudak 5an, Nicolas Goaziou-ek idatzi zuen: > > Hello, > > Aaron Ecay writes: > >> Indeed. However, this code was needlessly slow because it failed to >> take advantage of short-circuit evaluation. > > According to the profile report, I don't

Re: [O] jabref like orgmode based solution to bibliography management (not for latex)

2015-12-05 Thread Titus von der Malsburg
John’s code should do the trick. I don’t see how this could possibly cause your problems with the action menu. The change should be completely transparent for Helm. Regarding your other question: I don’t see any disadvantages of using several BibTeX files but I also don’t see an advantage

Re: [O] jabref like orgmode based solution to bibliography management (not for latex)

2015-12-05 Thread Xebar Saram
Hi again Titus and list so the semester is finally nearing the end which means i finally have some time (and a life :)) to get back to what i partially started a few months ago. i have a question regarding Predefined searches. i have a search that works well for searching papers i authored. i am

Re: [O] Org mode export from a large file is slow since release 8.3

2015-12-05 Thread Nicolas Goaziou
Hello, Viktor Rosenfeld writes: > I updated from 8.2.9 to 8.3.2 today and now the export has become very slow. > Creating an HTML page or a LaTeX buffer used to be instantaneous but now > takes up to 30 seconds. > > It seems that this is mostly related to file size. For

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Alan L Tyree
On 05/12/15 23:58, Nicolas Goaziou wrote: Hello, Derek Feichtinger writes: While diagnosing a server condition, I was listing parts of a system log via a babel expression. The 130 lines in the babel output are wrapped in an example block. This block caused massive

Re: [O] Issues w/ hacking Org font-lock for variable pitch prose

2015-12-05 Thread Göktuğ Kayaalp
Hello, On Sat, Dec 05 2015 at 03:05:38 PM, Nicolas Goaziou wrote: > Hello, > > Göktuğ Kayaalp writes: > >> […] > > Your code is probably not buggy. You are encountering a cache error. > Does it happen on a fresh buffer (e.g., open a new buffer, and

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Samuel Wales
as with others, i am ok with nixing those [1] footnotes if nobody objects. on the other hand, i strongly want inline footnotes to work again with multiple paragraphs, including in fontifying. i know export is incompatible with post-8.0 paragraphs and will accept a filter or something if needed

Re: [O] fixmee / syntax-ppss

2015-12-05 Thread Jeremy Hankins
Aaron Ecay writes: > Org mode provides built-in functionality to create “TODO” annotations > (called inline tasks). These might server your purpose better than what > you are trying to do with fixmee. You need to put the following line in > your emacs init file: Hmm, I

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread William Denton
On 5 December 2015, Nicolas Goaziou wrote: However, this report raises an interesting question about footnotes: should we still support plain (e.g., "[1]") footnotes in Org documents? The pattern is very common an regularly introduces false positives. Also, IIRC, it was introduced for non-Org

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Thomas S . Dye
William Denton writes: > On 5 December 2015, Nicolas Goaziou wrote: > >> However, this report raises an interesting question about footnotes: >> should we still support plain (e.g., "[1]") footnotes in Org documents? >> >> The pattern is very common an regularly introduces false

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Rasmus
Nicolas Goaziou writes: > However, this report raises an interesting question about footnotes: > should we still support plain (e.g., "[1]") footnotes in Org documents? > > The pattern is very common an regularly introduces false positives. > Also, IIRC, it was introduced

[O] department logo/header image in koma/latex export?

2015-12-05 Thread Xebar Saram
Hi all i am looking into using koma and orgmode to export to recommendation letters. Does anyone have an example of adding a department logo/header image to the top of the page and/or bottom? i have zero latex knowledge so this maybe trivial :) best Z

Re: [O] footnote fontify causing massive slowdown

2015-12-05 Thread Matt Lundin
Alan L Tyree writes: > I would be delighted to see the 'plain' footnote format abolished. I > use org for writing legal text which often has things like Bank of New > South Wales v Laing [1954] AC 135. Rasmus helped me with a patch to > ignore these kinds of references, but

Re: [O] Citation processing via Zotero + zotxt

2015-12-05 Thread Matt Lundin
Hi John, John Kitchin writes: > If a reference type is not listed in the CSL, it also will not be > supported by CSL I suppose. How is this different than biblatex or bibtex? A user could just modify the style or put in a request with a maintainer. > I also suppose

Re: [O] Citation processing via Zotero + zotxt

2015-12-05 Thread John Kitchin
Matt Lundin writes: > Hi John, > > John Kitchin writes: > >> If a reference type is not listed in the CSL, it also will not be >> supported by CSL I suppose. > > How is this different than biblatex or bibtex? A user could just modify > the style or put in a request with

Re: [O] Straight recursive fact prints in floating-point in org-babel but not in REPL

2015-12-05 Thread Nick Dokos
Brian Beckman writes: > Org-babel seems to print SLIME / SBCL bignums as floating point, at least in > this gist (please see > https://gist.github.com/rebcabin/f73cecd3c9b7da6218e9). I'd like to be able > to control whether bignums are printed out in full. Any advice for

[O] Two column layout from org source?

2015-12-05 Thread Christian Wittern
Dear org users, I need to produce a two-column text, where each of these columns has the same content but in a different language. I would like to derive this from org documents. Any ideas on how to set this up are much appreciated! All the best, Christian -- Christian Wittern, Kyoto