Re: [O] [babel] Working dir incorrect

2017-03-14 Thread numbch...@gmail.com
Yes, it seems like this, I have a similar question at here: https://lists.gnu.org/archive/html/emacs-orgmode/2017-03/msg00283.html [stardiviner] GPG key ID: 47C32433 IRC(freeenode): stardiviner Twitter: @numbchild Key fingerprint = 9BAA 92BC CDDD B9EF 3B36

[O] special blocks

2017-03-14 Thread Marvin Doyley
Does anybody know how to set the foreground color of special blocks ? Cheers, M

Re: [O] Tags completion with Helm

2017-03-14 Thread aaermolov
followup: Further debugging revealed that helm-hide-minibuffer-maybe is not guilty of anything. But for some reason, helm-mode-fuzzy-match / helm-completion-in-region-fuzzy-match fix the problem, but only using 2+ chars queries. Maybe some other customizations are responsible for that.

Re: [O] [bug, ox-latex] Parsed keywords and export with subscript

2017-03-14 Thread Nicolas Goaziou
Hello, Rasmus writes: > It would seem that parse doesn't behave correctly when > org-export-with-sub-superscripts is turned off via #+options. > > Example: > > #+options: ^:nil > #+date: a_b > > * test > a_b > > Exported result with ox-latex: > > %% ... >

Re: [O] Tags completion with Helm

2017-03-14 Thread aaermolov
Yes, with some some config fiddling I've seen this crm-based tagging wotkflow you describe, but problems were the same. Suddenly, I tried to remove some customization code for Helm (namely this - https://github.com/search?q=helm-hide-minibuffer-maybe=Code=✓) and it seems proper completion starts

Re: [O] Tags completion with Helm

2017-03-14 Thread John Kitchin
I can't reproduce that behavior on my end. I see different behavior though. My helm window is titled crm-complete, and the buffer is called *helm-mode-crm-complete* This seems to be the helm core package I am using. helm-core-20170112.917 John --- Professor John

Re: [O] Tags completion with Helm

2017-03-14 Thread aaermolov
Hi John, no, these do not seem to fix anything. :( Namely, the following is still happens: 1) I'm pressing C-c C-q then TAB to select freeform input 2) then there is "org-set-tags" above candidates list and buffer title is "*helm-mode-org-set-tags*" 3) after any input candidates list looks

Re: [O] "wrong=type-argument listp" on publish

2017-03-14 Thread Nick Dokos
Matt Price writes: > On Mon, Mar 6, 2017 at 3:51 PM, Nick Dokos wrote: > > Matt Price writes: > > > Anyone else getting this? I'm unable to publish.  I don't see what is > unlist-like about the first > > argument to

Re: [O] Reproducing a table

2017-03-14 Thread Christian Moe
Jarmo Hurri writes: > In some earlier version of Org the following > used to work: > > #+name: my-table > | row 1 | 1 | 2 | > | row 2 | 3 | 4 | > |---+---+---| > | | col 1 | col 2 | > > #+call: my-table() :hlines yes > > That is, in the past the

Re: [O] "wrong=type-argument listp" on publish

2017-03-14 Thread Matt Price
On Mon, Mar 6, 2017 at 3:51 PM, Nick Dokos wrote: > Matt Price writes: > > > Anyone else getting this? I'm unable to publish. I don't see what is > unlist-like about the first > > argument to plist-put. > > -- > > Debugger entered--Lisp error:

Re: [O] Complex conversion of text to org table

2017-03-14 Thread John Kitchin
See my solution here: http://emacs.stackexchange.com/questions/31417/function-to-paste-text-as-a-orgmode-table/31425#31425 Vicente Vera writes: > OK that's a nice trick. Very useful for CSV files. Thanks! > > 2017-03-12 16:52 GMT+00:00 Scott Randby : > >> On 03/12/2017 11:35

Re: [O] Tags completion with Helm

2017-03-14 Thread John Kitchin
have you tried these settings: (setq helm-mode-fuzzy-match t helm-completion-in-region-fuzzy-match t) According to https://github.com/emacs-helm/helm/wiki/Fuzzy-matching, the make fuzzy matching work everywhere. It seems to work ok for me. aaermo...@gmail.com writes: > Hi, > > I've

Re: [O] org-ref and the minibuffer

2017-03-14 Thread John Kitchin
You can get that for articles like this: #+BEGIN_SRC emacs-lisp (setf (cdr (assoc "article" (cdr (assoc "text" org-ref-formatted-citation-formats "${title}") #+END_SRC Julian M. Burgos writes: > Dear list, > > It is possible to customize the information shown in the minibuffer when > the

Re: [O] How do you store web pages for reference?

2017-03-14 Thread Adonay Felipe Nogueira
Note 1: You might need to load "org-bibtex". Note 2: "org-bibtex" only accepts some properties to be exposed to org-capture, it's not an exact parser like "bibtex" package. As a future suggestion: I would like to suggest "org-bibtex" to be improved so as to take all fields parsed by the "bibtex"

Re: [O] [babel] Working dir incorrect

2017-03-14 Thread Eric S Fraga
On Monday, 13 Mar 2017 at 15:42, Nick Dokos wrote: [...] > Can I make a plea for an ECM? If you provide one, I can spend five > minutes testing it, but without it I'll have to do real work to get an > example together and that's much more unlikely to happen. I've found that babel languages that

[O] org-ref and the minibuffer

2017-03-14 Thread Julian M. Burgos
Dear list, It is possible to customize the information shown in the minibuffer when the cursor (or the mouse pointer) is on top of an org-ref bibliography link? The default seems to be a formatted version of the citation, which includes authors (all of them), title, etc. I would like just to see

Re: [O] Reproducing a table

2017-03-14 Thread Jarmo Hurri
Christian Moe writes: Greetings. > You can simplify it even further to > > #+begin_src elisp :var data=my-table :hlines yes > data > #+end_src > > which is sane enough for me. > > To get simpler than that, I think you need #+INCLUDE and a separate > file. I think

[O] [bug, ox-latex] Parsed keywords and export with subscript

2017-03-14 Thread Rasmus
Hi, It would seem that parse doesn't behave correctly when org-export-with-sub-superscripts is turned off via #+options. Example: #+options: ^:nil #+date: a_b * test a_b Exported result with ox-latex: %% ... \date{a\(\_b\)} %% ... \section{test} a\_b %%

[O] HTTPS support of Org ELPA?

2017-03-14 Thread Chunyang Xu
Hi. Can someone add HTTPS support for Org ELPA? Github user @thblt complained about lacking HTTPS support via https://github.com/melpa/melpa/issues/4554#issuecomment-278638944 Thanks.

Re: [O] org-mime-buffer-htmlize with BEGIN_EXPORT latex

2017-03-14 Thread Jérémie Juste
The previous latex codes don't run. My apologies should have checked the latex code first. Now it does. #+BEGIN_EXPORT latex \begin{table}[!htbp] \centering \caption{Descriptive statistics} \begin{tabular}{ l c r } 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \\ \end{tabluar} \end{table}

[O] org-mime-buffer-htmlize with BEGIN_EXPORT latex

2017-03-14 Thread Jérémie Juste
Hello, I'm trying the org-mime-buffer-htmlize function but notice that it does not convert latex codes to image if they are in between export blocks. It is possible to have this feature enabled ? #+OPTIONS: H:3 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t tex:imagemagick #+LATEX_HEADER:

[O] Bug: http://orgmode.org/worg/org-configs/org-hooks.php 404 [9.0.5 (release_9.0.5-347-g2f4860 @ /Users/xcy/src/org-mode/lisp/)]

2017-03-14 Thread Chunyang Xu
Hi. The URL is mentioned at (info "(org) Hooks"), when I open it in web browser, it says "404 Not Found"

Re: [O] ox-epub

2017-03-14 Thread Rasmus
Hi Mark, Thanks for your email. Mark Meyer writes: > I'm the author of ox-epub, which is a very recent extension to org-mode > to author EPUB files directly via the org export layer. Thanks. People have asked about direct epub exporting in the past. > Pank (Rasmus) asked on

[O] Tags completion with Helm

2017-03-14 Thread aaermolov
Hi, I've spotted a problem with completing Org tags with Helm. While Helm is not at least about [fuzzy] completion, when I try to input any completion subsequence, all candidates are gone and variants are shrinked to whatever will be typed. Is there any widely known mistake, that I've stepped

Re: [O] [babel] Working dir incorrect

2017-03-14 Thread Loris Bennett
Hi John, John Hendy writes: > On Mon, Mar 13, 2017 at 9:32 AM, Loris Bennett > wrote: >> Hi, >> >> In a file that used to work, when I now try to run some R code which >> generates an image, I get the error: >> >> cannot open file

Re: [O] %( in capture template

2017-03-14 Thread Nicolas Goaziou
Hello, Samuel Wales writes: > === > * ecm > capture literally inserts. i was told this is not normal, > but a bug. > > recent maint > > to reproduce, evaluate the following code, select the lines > in the scratch buffer, and run m-x org-capture RET p. > > set the notes

Re: [O] Reproducing a table

2017-03-14 Thread Christian Moe
You can simplify it even further to #+begin_src elisp :var data=my-table :hlines yes data #+end_src which is sane enough for me. To get simpler than that, I think you need #+INCLUDE and a separate file. I can't tell from the example why you need to define it in one place and reproduce it

Re: [O] New markup for revising manuscripts

2017-03-14 Thread Eric S Fraga
On Monday, 13 Mar 2017 at 22:56, Doyley, Marvin M. wrote: > Hi John and Eric, > > I decided to adopt your approaches, thanks for the suggestions. So I > can use either the response: or ++ to highlight changes in our > manuscripts. Let us know how you get on and which works better in practice.

Re: [O] export menu

2017-03-14 Thread Eric S Fraga
On Tuesday, 14 Mar 2017 at 02:44, Seb wrote: > Hello, > > Scanning the manual I don't see a hint on how to narrow the export menu > shown by C-c C-e (`org-export-dispatch'). I'm using ox-pandoc, which > has a lengthy export menu, which cannot display fully and gets cut off > the screen. Just in

Re: [O] export menu

2017-03-14 Thread Gergely Polonkai
I just wanted to write a similar request. My problem derives from a small screen, so even the basic set of options gets truncated. It would be nice if I could somehow scroll the dispatch screen. Best Gergely On Tue, Mar 14, 2017, 03:38 Seb wrote: > Hello, > > Scanning the