Re: [O] ox-clip.el

2016-06-28 Thread Jiege Chen
John Kitchin wrote: > Hi everyone, > > I extended the work I did here > http://kitchingroup.cheme.cmu.edu/blog/2016/06/16/Copy-formatted-org-mode-text-from-Emacs-to-other-applications/ > on copying formatted org-mode to other applications so it is > approximately

[O] [BUG] src code block header does not override buffer-wide header in property

2016-06-28 Thread Nick Dokos
This was reported on SO: http://stackoverflow.com/questions/37414837/org-mode-overwriting-globals-properties-in-block-headers The ECM is as follows: --8<---cut here---start->8--- #+PROPERTY: header-args :results silent #+BEGIN_SRC elisp ;; this one is silent

Re: [O] interesting dilemma with ob-ipython

2016-06-28 Thread Ista Zahn
On Fri, Jun 10, 2016 at 10:19 AM, John Kitchin wrote: > Thanks for this tip. It was a great start! I turned it into this: > > #+BEGIN_SRC emacs-lisp > ;; make src blocks open in the right mode > (add-to-list 'org-src-lang-modes '("jupyter-hy" . hy)) > (add-to-list

[O] ox-clip.el

2016-06-28 Thread John Kitchin
Hi everyone, I extended the work I did here http://kitchingroup.cheme.cmu.edu/blog/2016/06/16/Copy-formatted-org-mode-text-from-Emacs-to-other-applications/ on copying formatted org-mode to other applications so it is approximately cross-platform now. There is one command `ox-clip-formatted-copy'

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread John Kitchin
I took a stab at this implementation here: https://github.com/jkitchin/org-mode/compare/master...colored-link-2?expand=1 I wasn't too sure of the defcustom :type syntax. I also wasn't sure about this line

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread John Kitchin
That is also nice looking. Rasmus writes: > Nicolas Goaziou writes: > >> Hello, >> >> Rasmus writes: >> >>> Aside: This is what is done for specially colored source blocks. >> >> Duh. This totally eluded me. >> >>> But we can change that UI if you think.

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread John Kitchin
Indeed, I based this approach off a patch Rasmus posted some time ago for colored blocks ;) It is also similar to some other approaches in org-mode, e.g. the "org-%s-complete-link" functions. I am ok with a single variable that is an a-list that combines face and display. Would you consider

Re: [O] BUG: swapped utf-8 symbols in org-entities

2016-06-28 Thread Rasmus
> AFAICT, (La)TeX disagrees with TeX input method. The latter may be > buggy. > > Regards, Nick Dokos writes: > That's not what Lamport says (p.41, 2nd ed.) Maybe the input method > got it wrong? Oh, you are all right. Sorry about the noise. -- You people at the NSA are

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread Rasmus
Nicolas Goaziou writes: > Hello, > > Rasmus writes: > >> Aside: This is what is done for specially colored source blocks. > > Duh. This totally eluded me. > >> But we can change that UI if you think. > > I think it would be nice to find a decent UI for

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread Nicolas Goaziou
Hello, Rasmus writes: > Aside: This is what is done for specially colored source blocks. Duh. This totally eluded me. > But we can change that UI if you think. I think it would be nice to find a decent UI for that feature, indeed. With that naming convention rule, you get

Re: [O] BUG: swapped utf-8 symbols in org-entities

2016-06-28 Thread Nick Dokos
Rasmus writes: > Konstantin Kliakhandler writes: > >> Hello, >> >> The unicode letters for 'varphi' and for 'phi' are swapped. >> >> Here is a patch correcting this: >> >> diff --git a/lisp/org-entities.el b/lisp/org-entities.el >> index 4044432..6f6d054 100644

Re: [O] BUG: swapped utf-8 symbols in org-entities

2016-06-28 Thread Nicolas Goaziou
Hello, Rasmus writes: > The behavior is "correct" with reference to (La)TeX. E.g. > > M-x set-input-method RET TeX RET > > Then, > > \phi → φ > \varphi → ϕ > > Your suggestion is correct with reference to HTML. > > I’d tend to favor the TeX interpretation even if

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread Rasmus
Nicolas Goaziou writes: > However, I'm not convinced by the UI, i.e., creating a face specifically > named to trigger the feature. As a user, it doesn't seem very natural to > me. Aside: This is what is done for specially colored source blocks. But we can change that UI

Re: [O] BUG: swapped utf-8 symbols in org-entities

2016-06-28 Thread Rasmus
Konstantin Kliakhandler writes: > Hello, > > The unicode letters for 'varphi' and for 'phi' are swapped. > > Here is a patch correcting this: > > diff --git a/lisp/org-entities.el b/lisp/org-entities.el > index 4044432..6f6d054 100644 > --- a/lisp/org-entities.el > +++

Re: [O] agenda start date

2016-06-28 Thread Nicolas Goaziou
Hello, "Francis J. Monari, Esquire" writes: > # error shown is: Wrong type argument: sequencep, t > # commenting out the following lines seems to make part of the agenda work. > # (org-agenda-span 'month) > # (org-agenda-start-day (org-read-date nil nil "-01m 01d"))

[O] citations not incoprporated from bib file when exporting from .org to pdflatex

2016-06-28 Thread David Abernethy
I am exporting a file stroke.org using the bibliography file stroke.bib in the same directory The citations are not being incorporated into the pdf file and there is no reference to the .bib file in the intermediate stroke.tex output An example from stroke.log: LaTeX

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread Thomas S. Dye
Nicolas Goaziou writes: > Hello, > > John Kitchin writes: > >> I tried this aproach to enable custom colored links in org-mode if an >> org-link-type face is defined. If no face is applied, then it just gets >> the default org-link face >> >> For example this will make

Re: [O] Using org-mode as a personal help desk tool

2016-06-28 Thread darc...@gmail.com
Another option can be using a webservice such as trello and an emacs package to access data on it. There is an org-trello package that is worth investigating. 2016-06-22 9:26 GMT-03:00 Roland Everaert : > org-attach was the feature I needed. > > Thank you. > > On Mon, Jun

Re: [O] patch for custom colored links in org-mode

2016-06-28 Thread Nicolas Goaziou
Hello, John Kitchin writes: > I tried this aproach to enable custom colored links in org-mode if an > org-link-type face is defined. If no face is applied, then it just gets > the default org-link face > > For example this will make all doi links red. > > (defface

Re: [O] BUG: swapped utf-8 symbols in org-entities

2016-06-28 Thread Nicolas Goaziou
Hello, Konstantin Kliakhandler writes: > The unicode letters for 'varphi' and for 'phi' are swapped. Good catch. > Here is a patch correcting this: Would you mind providing a patch with a proper commit message and using git format-patch? See

Re: [O] Struggling with setting up ox-koma-letter.el

2016-06-28 Thread N. Jackson
At 16:09 -0300 on Sunday 2016-06-26, N. Jackson wrote: > I am trying to get ox-koma-letter.el working in my Emacs (25.0.95). > > I have been following the instructions at > http://orgmode.org/worg/exporters/koma-letter-export.html and I am > testing with the "A simple letter example" >

[O] Struggling with setting up ox-koma-letter.el

2016-06-28 Thread N. Jackson
I am trying to get ox-koma-letter.el working in my Emacs (25.0.95). I have been following the instructions at http://orgmode.org/worg/exporters/koma-letter-export.html and I am testing with the "A simple letter example"

[O] Why no secure code retrieval

2016-06-28 Thread Konstantin Kliakhandler
Hello everyone, I have continually been perplexed by the (apparent) lack of ways to retrieve the code for org-mode in a secure fashion, but always thought that I just haven't tried hard enough. Today it dawned on me that there probably simply is no such way. I know that https can be a bit

[O] dbus-error with org-notify

2016-06-28 Thread Xi Shen
Hi, I am using Emacs within a Cygwin environment on Windows 7 64bit. I have install the dbus Windows service with "messagebus-config", and started the service from Windows service console. After I called (org-notify-start), I got below Message before my task deadline: Warning: notification

[O] BUG: swapped utf-8 symbols in org-entities

2016-06-28 Thread Konstantin Kliakhandler
Hello, The unicode letters for 'varphi' and for 'phi' are swapped. Here is a patch correcting this: diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 4044432..6f6d054 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -204,9 +204,8 @@ packages to be loaded, add these

Re: [O] ordering events by hour in the agenda

2016-06-28 Thread Victor A . Stoichita
Hi. Got it this morning! The disorder in my timed events came from this block: (setq org-agenda-sorting-strategy (quote ((agenda deadline-up priority-down) (todo priority-down category-keep) (tags priority-down category-keep) (search category-keep The agenda line should also