[O] link glitches in maint

2016-02-21 Thread Samuel Wales
a link on a header will change to include priority if you change priority.

ret after a link or ts will activate.  should insert newline.
requires variable.

thanks.

-- 
The Kafka Pandemic: http://thekafkapandemic.blogspot.com

The disease DOES progress.  MANY people have died from it.  And
ANYBODY can get it.

Denmark: free Karina Hansen NOW.



Re: [O] Problem using org-sbe

2016-02-21 Thread Thierry Banel
Try typing C-c C-c on the line
  (defun fibbd ...)

This will actually define fibbd.

Then update the table with C-u C-c *


Le 21/02/2016 06:24, Bachir El Khadir a écrit :
>  Hello all,
>  I am new to org-mode.  I have just installed the latest version using 
> el-get, but I am having a very annoying problem.
>  The command org-sbe doesn't seem to work.
>  Here is a minimal example that I took from the doc:
>
> #+begin_src emacs-lisp :results silent
>(defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)
>  #+end_src
>
>  #+name: fibbd
>  #+begin_src emacs-lisp :var n=2 :results silent
>  (fibbd n)
>  #+end_src
>
>  | original | fibbd  |
>  |--+|
>  |0 | #ERROR |
>  |1 | #ERROR |
>  |2 | #ERROR |
>  |3 | #ERROR |
>  |4 | #ERROR |
>  |5 | #ERROR |
>  |6 | #ERROR |
>  |7 | #ERROR |
>  |8 | #ERROR |
>  |9 | #ERROR |
>  #+TBLFM: $2='(org-sbe "fibbd" (n $1))
>
>  As you can see I keep getting #ERROR  
>  Am i doing something wrong?
>  Thanks a lot
>
>
>




Re: [O] Export Subtree to LaTeX: no EXPORT_LATEX_CLASS_OPTIONS ?

2016-02-21 Thread Axel Kielhorn
Hi Richard,

> 
> I think what you want to do is put the EXPORT_LATEX_CLASS_OPTIONS (and
> the TITLE) as a property in the property drawer, like this:
> 
> * Projektboard :noexport:
> :PROPERTIES:
> :EXPORT_LATEX_CLASS_OPTIONS: [landscape]
> :EXPORT_TITLE: Projektboard
> :EXPORT_FILE_NAME: Projektboard
> :END:

Indeed it works.
I’m quite sure that I tried that first, maybe I mistyped something.

Now I get exactly what I want.
Thanks for the quick reply.

Axel




Re: [O] Auto-delete dated DONE notifications?

2016-02-21 Thread Sharon Kimble
Nicolas Goaziou  writes:

> Hello,
>
> Sharon Kimble  writes:
>
>> I recently had to dive into the guts of a habit which I've been using
>> since June 2015, I know that because there were all the 1-line DONE
>> dated notifications! Is there anyway in which they can be auto-deleted
>> after a cut-off number, say '60' please?
>
> AFAICT, this is not possible yet.
>
> I think this would be a nice addition to Org. We could add an option
> that can limit the number of state change notes in an entry.
>
> WDYT? Do you want to give a try at it?
>
Unfortunately my lisp skills are not sufficient to do it. Although I'd
love to learn how to do it.

Thanks
Sharon.
-- 
A taste of linux = http://www.sharons.org.uk
TGmeds = http://www.tgmeds.org.uk
Debian 8.3, fluxbox 1.3.7, emacs 24.5.3


signature.asc
Description: PGP signature


[O] Problem using org-sbe

2016-02-21 Thread Bachir El Khadir
 Hello all,
 I am new to org-mode.  I have just installed the latest version using el-get, 
but I am having a very annoying problem.
 The command org-sbe doesn't seem to work.
 Here is a minimal example that I took from the doc:

#+begin_src emacs-lisp :results silent
   (defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)
 #+end_src

 #+name: fibbd
 #+begin_src emacs-lisp :var n=2 :results silent
 (fibbd n)
 #+end_src

 | original | fibbd  |
 |--+|
 |0 | #ERROR |
 |1 | #ERROR |
 |2 | #ERROR |
 |3 | #ERROR |
 |4 | #ERROR |
 |5 | #ERROR |
 |6 | #ERROR |
 |7 | #ERROR |
 |8 | #ERROR |
 |9 | #ERROR |
 #+TBLFM: $2='(org-sbe "fibbd" (n $1))

 As you can see I keep getting #ERROR  
 Am i doing something wrong?
 Thanks a lot




[O] [PATCH] org.el: Fix typo in `org-previous-visible-heading' documentation string

2016-02-21 Thread Jason Furtney
Hi, Here is a small patch to fix a typo. Thanks.

>From d931a64e0482cddcef9ba5490994f24ab886e4f1 Mon Sep 17 00:00:00 2001
From: Jason Furtney 
Date: Sat, 20 Feb 2016 20:14:22 -0600
Subject: [PATCH] org.el: Fix typo in `org-previous-visible-heading'
 documentation string

* lisp/org.el (org-previous-visible-heading): change next to previous.

TINYCHANGE
---
 lisp/org.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org.el b/lisp/org.el
index 6cb13a8..3c98ece 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -24345,7 +24345,7 @@ respect customization of `org-odd-levels-only'."
(outline-next-visible-heading arg)))

 (defun org-previous-visible-heading (arg)
-  "Move to the next visible heading.
+  "Move to the previous visible heading.

 This function wraps `outline-previous-visible-heading' with
 `org-with-limited-levels' in order to skip over inline tasks and
-- 
1.9.5.msysgit.1



[O] bug report: "File mode specification error: (error "before first heading")

2016-02-21 Thread ilya shlyakhter
When loading any org file, I'm getting "File mode specification error:
(error "before first heading")" .  This happens starting with
release_8.3.3 ; with release_8.3.2 , no error.  Emacs version is
GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.18.6) of
2015-03-26 on scs-build-rhel6 .



[O] Two functions for efficient headline navigation

2016-02-21 Thread Christoph LANGE
Dear Org community,

at http://orgmode.org/worg/org-hacks.html#org-jump-to-child and
http://orgmode.org/worg/org-hacks.html#org-jump-to-id I have contributed
two interactive functions to aid structural navigation in large, complex
trees (source: http://orgmode.org/worg/code/elisp/org-jump.el).  The
latter function I had already introduced on this list on 2015-03-31.

Related to these functions I have a comment on Org's design.
org-jump-to-child (prompts for the title of a sub-heading of the current
heading and navigates there) was fairly complex to implement.  Coming
from an XML background I was surprised to see that Org has no notion of
a data model or of the semantics of a document and its tree, but that I
was basically required to implement an algorithm to walk through all
sub-headings and collect them.  Has an implementation based on a data
model ever been considered?  OTOH I could imagine it would not be easily
to implement this efficiently: as an Org document is technically a text
file that the user can edit without any restrictions, one would have to
continuously sync some internal data structure with the user's
text-level edits.

Cheers,

Christoph

-- 
Dr. Christoph Lange, Enterprise Information Systems Department
Applied Computer Science @ University of Bonn; Fraunhofer IAIS
http://langec.wordpress.com/about, Skype duke4701

→ Project management / coordination job in WDAqua Marie Curie ITN
  http://eis.iai.uni-bonn.de/Jobs.html



Re: [O] Export Subtree to LaTeX: no EXPORT_LATEX_CLASS_OPTIONS ?

2016-02-21 Thread Richard Lawrence
Hi Axel,

Axel Kielhorn  writes:

> I want to export a subtree with a columnview dynamic block in
> landscape orientation.  I don’t want just a rotated table, the whole
> page should be in landscape mode.  I may have to tweak the page layout
> using geometry as well, thus I probably need EXPORT_LATEX_HEADER.

> * Projektboard :noexport:
> :PROPERTIES:
> :EXPORT_FILE_NAME: Projektboard
> :END:
> #+EXPORT_LATEX_CLASS_OPTIONS: [landscape]
> #+EXPORT_TITLE: Projektboard
> ...

I think what you want to do is put the EXPORT_LATEX_CLASS_OPTIONS (and
the TITLE) as a property in the property drawer, like this:

* Projektboard :noexport:
:PROPERTIES:
:EXPORT_LATEX_CLASS_OPTIONS: [landscape]
:EXPORT_TITLE: Projektboard
:EXPORT_FILE_NAME: Projektboard
:END:

That has the intended effect when I test it here, and my setup is
similar to yours.  In general, when you just want to affect the export
options of a subtree, you use properties, rather than keywords.

Best,
Richard



Re: [O] Icalendar export and contacts

2016-02-21 Thread Simon Thum
Well, I had intended the link target to become visible but now that you 
ask, my primary concern was "not wrecking the export". I expect that tel 
links are only relevant to the vcard export, which handles them on its 
own terms (and which still works).


So perhaps the patch is a bit premature. Any export function would need 
not to interfere with the vcard handling, which is why I refrained from 
adding one.


Cheers,

Simon

On 02/20/2016 01:55 PM, Nicolas Goaziou wrote:

Hello,

Simon Thum  writes:


would the attached patch be enough?


Thank you. I do not maintain org-contact.el, tho.


+;; Add the link type supported by org-contacts-strip-link
+;; so everything is in order for its use in Org files
+(org-add-link-type "tel")


This means that no export function is defined for "tel" links. Is it the
intended behaviour?

Regards,





Re: [O] Bug and possible fix / work-around using org-mobile with group tags

2016-02-21 Thread Nicolas Goaziou
Hello,

John Hutchinson  writes:

>- Running org-mobile-push with group tags defined in init.el file using 
> :startgrouptag etc. results in an error, and (in my case) DropBox not being 
> updated. Here's the log from the *Messages* buffer:   Creating agendas...
> Agenda written to Org file 
> /cygdrive/c/Users/IBM_ADMIN/Dropbox/Apps/MobileOrg/agendas.org
> Creating agendas...done
> Saving all Org-mode buffers...
> (No files need saving)
> Saving all Org-mode buffers... done
> Copying files...
> Writing index file...
> org-mobile-create-index-file: Wrong type argument: sequencep, :startgrouptag
> Quit
>  [2 times]
>
>- Commenting out the group tags attributes in init.el results in Org 
> Mobile successfully generating and pushing to DropBox.
>- Turning group tags off with org-toggle-tags-groups and running 
> org-mobile-push causes the error.
>- Using Org from org-plus-contrib-20160208, the problem seems to be the 
> :startgroup and :endgroup on lines 460 and 461 of org-mobile.el; patching 
> them to :startgrouptag and :endgrouptag respectively appears to correct the 
> issue (though I've not done in-depth testing for any other unintended side 
> effects this patch may have).
>- Also, changing the group attributes in my init.el from :startgrouptag 
> :endgrouptag to :startgroup and :endgroup respectively corrects the issue, 
> although the Org manual indicates that the longer form is correct.
>
>- As an aside, I note there are several instances of plain :startgroup 
> intermingled with :startgrouptag in the org sources:   
> org-plus-contrib-20160208 $ grep -n startgroup *.el
> org.el:3492:   (const :startgroup)
> org.el:3495:   (const :startgrouptag)
> org.el:3523: (const :tag "Start radio group" (:startgroup))
> org.el:5063: (append '((:startgroup))
> org.el:5233:(:startgroup "{")
> org.el:5235:(:startgrouptag "[")
> org.el:5252:(push '(:startgroup) org-tag-alist)
> org.el:5258:(push '(:startgrouptag) org-tag-alist)
> org.el:5322:  (if (or (memq (car e) '(:newline :grouptags :endgroup 
> :startgroup))
> org.el:13093:((equal e '(:startgroup))
> org.el:15232:  ((eq (car e) :startgroup)
> org.el:15241:  ((eq (car e) :startgrouptag)
> org-interactive-query.el:92:   ((equal e '(:startgroup))
> org-interactive-query.el:268: ;; if this is not a keyword (:startgroup, 
> etc), ignore it
> org-mobile.el:460:  ((eq (car x) :startgroup) "{")
> org-pcomplete.el:245:   ((eq :startgroup (car x)) "{")
> ox-beamer.el:1128:  (append '((:startgroup))
>
> Regards,=John
> P.S. First time writing to this list; apologies in advance for
> breaches of etiquette.

Thank you for the report.

This is probably related to the recent introduction of Tag hierarchy.
Would the following patch solve the problem?


Regards,

-- 
Nicolas Goaziou
>From 519d69a057b49b2f3996209145aef5b41fcfe091 Mon Sep 17 00:00:00 2001
From: Nicolas Goaziou 
Date: Sun, 21 Feb 2016 16:28:15 +0100
Subject: [PATCH] org-mobile: Fix Wrong type argument: sequencep,
 :startgrouptag

* lisp/org-mobile.el (org-mobile-create-index-file): Handle group tags.

Reported-by: John Hutchinson 

---
 lisp/org-mobile.el | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index e6709e4..84e90fd 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -455,13 +455,16 @@ agenda view showing the flagged items."
 		(mapconcat 'identity done-kwds " ") "\n"))
   (setq def-tags (mapcar
 		  (lambda (x)
-			(cond ((null x) nil)
-			  ((stringp x) x)
-			  ((eq (car x) :startgroup) "{")
-			  ((eq (car x) :endgroup) "}")
-			  ((eq (car x) :grouptags) nil)
-			  ((eq (car x) :newline) nil)
-			  ((listp x) (car x
+			(lambda (tag)
+			  (cl-case (car tag)
+			((nil) nil)
+			(:startgroup "{")
+			(:endgroup "}")
+			(:startgrouptag "[")
+			(:endgrouptag "]")
+			(:grouptags ":")
+			(:newline nil)
+			(t (car tag)
 		  def-tags))
   (setq def-tags (delq nil def-tags))
   (setq tags (org-delete-all def-tags tags))
-- 
2.7.1



[O] Inline code syntax highlighting

2016-02-21 Thread meditans

Hi all,

I'm writing some Haskell code in a .org blog post which I will export to  
HTML using org-publish . I'd like to inline some haskell code in the text,  
and I can do that either using the marker ~...~ or the explicit block  
src_haskell[exports: code]{...} . I'd like to have the notational  
convenience of the former while retaining the syntax highlighting the  
latter provides. Here it is what I tried:



1 Tweaking the variable org-html-text-markup-alist


in particular the code correspondence, which by default is  
%s . This, while easy, doesn't get me syntax highlighting, and  
so it's not sufficiently good for my purposes.



2 Using org-export-before-processing-hook


to do some preprocessing, like:


(defun convert-code (backend)
  "Changes the code marked with =...= to code marked with  
src_haskell[:exports code]{...}"

  (replace-regexp "~\\([^~]+?\\)~" "src_haskell[:exports code]{\\1}"))

(add-hook 'org-export-before-processing-hook 'convert-code)


Unfortunately, this use of regexp feels hacky, messes up the formatting  
when I try to have some haskell code as the text for a link (for the  
presence of ] ), and gets exported as:



stuff




with a newline before  , which is read as an (unwanted) space in  
HTML.



3 Creating a custom exporter


This should work, but I got stuck working on it (I just began learning  
elisp). Here is a starting point, I'd appreciate some help:



(defun my-haskell-code (code contents info)
  "Changes the code marked with =...= to code marked with  
src_haskell[:exports code]{...}"
  (format "%s" (org-element-normalize-string  
(org-export-format-code-default code info


(org-export-define-derived-backend 'my-hask 'html
  :translate-alist '((code . my-haskell-code)))


In conclusion, do you have any tips on how to get syntax highlighting for  
~...~ blocks?


Best regards

Carlo


Carlo




Re: [O] bug#18617: 24.3; loading simple-wiki-mode breaks org-mode

2016-02-21 Thread Kaushal Modi
A quick look at the code shows that it pollutes the namespace with
undeclared and un-let-bound variables like "tag" (and there could be more
like that).

If we investigate further, we might find a culprit like that that's causing
this problem.

(defun simple-wiki-get-tag ()
  (let (prompt)
(if (and simple-wiki-tag-history (car simple-wiki-tag-history))
(setq prompt (concat "Tag (" (car simple-wiki-tag-history) "): "))
  (setq prompt "Tag: "))
(setq tag (completing-read prompt simple-wiki-tag-list nil nil ""
   'simple-wiki-tag-history
   (car simple-wiki-tag-history
  (unless (assoc tag simple-wiki-tag-list)
(add-to-list 'simple-wiki-tag-list (cons tag nil)))
  tag)


Re: [O] bug#18617: 24.3; loading simple-wiki-mode breaks org-mode

2016-02-21 Thread Kaushal Modi
I can recreate that bug.

The "first" alias is defined in the cl library. So you would need to
(require 'cl) before requiring simple-wiki.

I eval'd simple-wiki from here:
http://cvs.savannah.gnu.org/viewvc/*checkout*/http-emacs/http-emacs/simple-wiki.el

I haven't yet looked into the internals of simple-wiki.el to investigate
what's breaking the visibility cycling.
Basically TAB or S-TAB stop cycling the visibility; they seem to do nothing.


Re: [O] How to load org-beautify-theme

2016-02-21 Thread Kaushal Modi
On Sun, Feb 21, 2016 at 4:25 AM, claude fuhrer  wrote:

> org-beautify-theme


I haven't tried the solution on this emacs.stackexchange QnA:
http://emacs.stackexchange.com/q/17256/115

But see if that solution works for you. It's probably as the solution says
that the author hasn't packaged org-beautify-theme to be loaded using
load-theme.

PS: Also copying the package author at the email I got from the github page.

--
Kaushal Modi


[O] Export Subtree to LaTeX: no EXPORT_LATEX_CLASS_OPTIONS ?

2016-02-21 Thread Axel Kielhorn
Hi,

I want to export a subtree with a columnview dynamic block in landscape 
orientation.
I don’t want just a rotated table, the whole page should be in landscape mode.
I may have to tweak the page layout using geometry as well,
thus I probably need EXPORT_LATEX_HEADER.

I’m using:
Org-mode version 8.3.3 (release_8.3.3-629-g635161 @ 
/Users/axel/src/Emacs/org-mode/lisp/)

with Emacs 24.5.

* Projektboard :noexport:
:PROPERTIES:
:EXPORT_FILE_NAME: Projektboard
:END:
#+EXPORT_LATEX_CLASS_OPTIONS: [landscape]
#+EXPORT_TITLE: Projektboard
#+BEGIN_EXPORT latex
\maketitle
#+END_EXPORT

#+BEGIN: columnview :hlines 1 :id "Inbetriebnahme"
| Problem  | Status MKB | Wer   | Termin_MKB | Termin_Teile | ErlMon |
|--++---++--+|
| Inbetriebnahme   ||   ||  | [2/8]  |
| 2016-01-01 [0/3] ||   ||  | [0/3]  |
| Problem 1| TODO   |   | 2016-02-02 |   2016-02-23 | [ ]|
| Problem 2| TASK   | :WER: ||  | [ ]|
| Problem 3| TASK   | :WER: ||  | [ ]|
| 2016-01-02 [0/2] ||   ||  | [0/2]  |
| Problem 4| TODO   |   ||  | [ ]|
| Problem 5| TASK   | :WER: ||  | [ ]|
| 2016-01-03 [2/2] ||   ||  | [2/2]  |
| Problem 6| DONE   |   ||  | [X]|
| Problem 7| CANCELLED  |   ||  | [X]|
| 2016-01-04 [0/1] ||   ||  | [0/1]  |
| Problem 9| in Arbeit  | :WER: ||  | [ ]|
#+END:

Did I overlook something or is it not possible to use a different LaTeX 
configuration to export a subtree?

If I use
#+LATEX_CLASS_OPTIONS: [landscape]
in the subtree it is used for the whole document as well.
The same happens when I us an #+INCLUDE file.

(Right now, I export to HTML and print from the browser.)

Axel




[O] Failing test with current emacs-git on the buildbot

2016-02-21 Thread David Engster
FYI:

I've updated the emacs-git master on the Buildbot and now
'test-ob/process-params-no-duplicates' is failing:

http://randomsample.de/org-buildbot

I've also added a new builder 'emacs-25.1' which is the current emacs-25
branch.

-David



[O] bug#18617: 24.3; loading simple-wiki-mode breaks org-mode

2016-02-21 Thread Marcin Borkowski
On 2014-10-02, at 20:27, v...@riseup.net wrote:

> To re-trigger:
> - Install simple-wiki-mode
> - run emacs
> - switch to *scratch*
> - load org-mode
> - make two todos one with subtree:
> * TODO test 1
>   - test 2
> * TODO test 3
> - check pressing tab on First todo hide and show the subtree
> - open a new file: test.txt
> - M-x simple-wiki-mode (on test.txt)
> - switch back to *scratch* (which is still in org-mode)
> - Observe that subtree function is broken.
> - Press tab on TODO test 1 will hide * TODO test 3 and never shows it
> again.

Hello,

I know it was quite a long time ago, but could you confirm that this is
still an issue in current Emacs?  Also, I tried to reproduce it on GNU
Emacs 25.1.50.3, but could not - M-x simple-wiki-mode (after downloading
simple-wiki.el from savannah) resulted in a "setq: Symbol’s function
definition is void: first" error.  (simple-wiki is not an Elpa package,
so I could not install it via the package manager.)

If the problem is still present, please describe exactly how you
installed simple-wiki-mode so that I could see for myself what's
happening.

> Thanks,
> humble emacs user

Best,

-- 
Marcin Borkowski





Re: [O] "atomic knowledge" modeling tool

2016-02-21 Thread Nicolas Goaziou
Hello,

Samuel Loury  writes:

> I have made a custom agenda command¹ to implement a "kind of" GTD
> workflow.
>
> On a quite old computer with no SSD disk, the commands takes about 20
> seconds. My org files sum up to 27K lines and 2629 headings (with the
> archives, there are 5630 headings in 66K lines).
>
> I attached the result of elp-instrument-package "org-" when running this
> command without the archives. I don't know if that helps...

So Org is slow only when calling the agenda? Could you also send
a profiler report? Thank you.


Regards,

-- 
Nicolas Goaziou



[O] Help with fixing an org-mode multicolumn implementation - LaTeX special characters

2016-02-21 Thread mcg
I found a very nice implementation of LaTeX multicolumn functionality in 
this thread:

https://lists.gnu.org/archive/html/emacs-orgmode/2013-02/msg00736.html
("using export filters to emulate multi-column table cells?")

#+begin_src emacs-lisp :exports none
(defun my-latex-multicolumn-filter (row backend info)
  (when (org-export-derived-backend-p backend 'latex)
(while (string-match
"\\(<\\([0-9]+\\)col\\([lrc]\\)?>[[:blank:]]*\\([^&]+\\)\\)" row)
  (let ((columns (string-to-number (match-string 2 row)))
(start (match-end 0))
(contents (replace-regexp-in-string "[[:blank:]]*$" ""
(match-string 4 row)))
(algn (or (match-string 3 row) "l")))
(setq row (replace-match
   (format "multicolumn{%d}{%s}{%s}" columns algn 
contents)

nil nil row 1))
(while (and (> columns 1) (string-match "&" row start))
  (setq row (replace-match "" nil nil row))
  (decf columns
row))
(add-to-list 'org-export-filter-table-row-functions
'my-latex-multicolumn-filter)
#+end_src

#+LATEX_HEADER: \usepackage{multirow}

You have to put the number of columns to span and a r / l / c option for 
column alignment (<2colc>) and the column contents afterwards. Nice!


#+CAPTION: Example table
| Characters not working| <2colc> Characters working: ! " § . , 
* + ? % |  |

|---+---+--|
| ^ % _ { } $   | The header above is 
merged| over two columns |
| /italics/ *bold* _underline_ 
|   |  |
| any, \LaTeX special character 
|   |  |
| or expression requiring \ 
|   |  |


However, using any of the characters of the left column of my example 
table in the merged <2colc> column, I get:

"setq: Invalid use of `\' in replacement text"


Questions:
- How to escape the special characters in the left column properly to be 
able to use them? (tried everything I could think of)

or
- How to modify the code above so that it allows for such characters.

- If anyone likes the implementation and is more capable than I am, then 
the same for multirow would be really nice...


Comment: whoever read some of my questions recently will notice that I 
excessively use org-mode as a LaTeX frontend.  I am aware that this is 
not what it is supposed to be in the first place - but it works so 
perfect 99 % of the time, so I cannot keep from asking...





[O] How to load org-beautify-theme

2016-02-21 Thread claude fuhrer

Hi,

I've just downloaded the theme "org-beautify-theme" for elpa.

It is now stored in ~/.emacs.d/elpa/org-beautify-theme-20150106.956 but 
I did not find how to use ist. The fonction "load-theme" answer that the 
theme cannot be found. I've looked on Google, but I did not find 
anything usable.


Can you please help me?

Thank you in advance.