Re: [O] Fwd: Beamer framebreak

2017-01-15 Thread edgar

Hello John,


This list is amazing and very happy to help; that said, text/email is

---8< Cut off 
Yes! Thank you very much, and I'm very sorry. I really appreciate it. I 
will prepare a good example (I hope) and send it :) .



Edgar



-

ONLY AT VFEmail! - Use our Metadata Mitigator to keep your email out of the 
NSA's hands!
$24.95 ONETIME Lifetime accounts with Privacy Features!  
15GB disk! No bandwidth quotas!
Commercial and Bulk Mail Options!  



Re: [O] Error when =(stata . t)= added to =org-babel-do-load-languages= in an attempt to evaluate Stata code in org-mode

2017-01-15 Thread Nicolas Goaziou
Hello,

Daniel Guinea  writes:

> However, I also want to evaluate Stata code in org-mode documents. For that
> I have
> downloaded the script =ob-stata.el= by Ista Zahn and I have saved it
> together with the other =ob-sth.el= files in
> =~/.emacs.d/elpa/org-20161224=. Moreover, I have edited the entry:
>
> (defcustom org-babel-stata-command inferior-STA-program-name
>   "Name of command to use for executing stata code."
>   :group 'org-babel
>   :version "24.1"
>   :package-version '(Org . "8.3")
>   :type 'string)
>
> to reflect my current version of Org, so this piece of code currently
> stands as follows in my version of  =ob-stata.el=:
>
> (defcustom org-babel-stata-command inferior-STA-program-name
>   "Name of command to use for executing stata code."
>   :group 'org-babel
>   :version "24.1"
>   :package-version '(Org . "9.0.3")
>   :type 'string)

This part is not needed. :package-version is used to specify when
a defcustom was introduced or when its default value last changed.

> However, if I add =(stata . t)= to =org-babel-do-load-languages= as follows:
>
> (org-babel-do-load-languages
>'org-babel-load-languages
>   '((emacs-lisp . t)
> (sh . t)
> (R . t)
> (perl . t)
> (ruby . t)
> (python . t)
> (js . t)
> (haskell . t)
> (stata . t)
> (shell . t)))
>
> I get the following message when I restart emacs:
>
> #  Beginning of debugger message ###
>
> Debugger entered--Lisp error: (void-variable inferior-STA-program-name)

inferior-STAT-program-name is a variable defined in "ess-custom.el".
The error probably comes from the fact "ob-stata.el" is loaded before
"ess-custom.el" is.

You may want to tell the author of "ob-stata.el" about it. It is missing
a (require 'ess) somewhere in the library.

Regards,

-- 
Nicolas Goaziou



Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Sebastian Christ
> "SW" == Samuel Wales  writes:

SW> fwiw, i have had the element cache turned off since org 8
SW> because of intermittent bugs.  i tried it on in org 9 maint
SW> recently and it caused similar problems.  so you might be
SW> experiencing same.

SW> funnily enough, it doesn't seem to make any difference to agenda
SW> creation speed, which is my bottleneck.

Nicolas Goaziou suggested the same thing. I'll try this an report
back. Thanks.

/src

-- 
Sebastian (Rudolfo) Christ
http://rudolfochrist.github.io
GPG Fingerprint: 306D 8FD3 DFB6 4E44 5061
 CE71 6407 D6F8 2AC5 55DD




Re: [O] Fwd: Beamer framebreak

2017-01-15 Thread Eric S Fraga
On Saturday, 14 Jan 2017 at 06:36, ed...@openmail.cc wrote:

[...]

>> Currently, it is part of the "Structure and Function" slide because 
>> your
>> figures are within a level 3 headline which is converted to a
>> block.  Put the figures under a second level headline instead.
>
> Mmm... I think that this would mess up my outline. Is there a way to 
> create an empty headline? or to hide it in the TOC?

If you want to use three levels as frames in some places, I would
suggest you make all frames third level.  Second level headlines then
become subsections but you can actually skip form 1st to 3rd level
headlines and the beamer export won't care, e.g.

* section
*** a frame
*** another frame
* second section
** subsection
*** frame

>> Blocks are 3rd level headlines so put the contents within a 3rd level
>> headline.
> I think that I will have to work with my outline options or something 
> too.

I think you'll find it easier to simply have a consistent layout across
the document.

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 26.0.50.1, Org release_9.0.3-201-ga51c6f


signature.asc
Description: PGP signature


Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Eric S Fraga
On Saturday, 14 Jan 2017 at 18:33, Sebastian Christ wrote:
> in the last couple weeks (perhaps months?) Emacs hangs for no specific
> reason for me. The single constant is, that when it hangs, it hangs
> while I'm in org-mode. This occurs on multiple circumstance as

Just to say that I experience the same.  However, I track emacs as well
as org so I never know if the problem is emacs or org.  In my case, all
hangs are when in org mode but that could be because I'm in org mode
90% of the time... :-)

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 26.0.50.1, Org release_9.0.3-201-ga51c6f


signature.asc
Description: PGP signature


Re: [O] Switching buffers from babel snippets

2017-01-15 Thread Marco Wahl
Alex Bennée  writes:

Hi,

> I've trying to further automate my maintainer tasks by moving things
> into babel snippets. I have one to find a cover letter and edit the
> file:
>
> #+name: edit-cover-letter
> #+begin_src emacs-lisp :var cover=create-qemu-pull[0]
>
>   (find-file (expand-file-name (concat default-directory (car cover
>   (mail-mode)
> #+end_src
>
> However when I run the code although the file is loaded and in the right
> mode I never see the buffer come up and have to switch to it manually. I
> expect this is because the code is running under some sort of
> safe-excursion. Is there anyway to pass a final buffer back to org-mode
> after the code is run and switch to it?

Actually I don't know why the switch to the other buffer does not apply
with the babel execution.

For a practical realization you could use a timer.

#+begin_src emacs-lisp :var cover="cover.txt"
(let ((buf (find-file cover)))
  (mail-mode)
  (run-at-time 1 nil #'switch-to-buffer buf))
#+end_src


Ciao

   Marco





Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Stig Brautaset

Eric S Fraga  writes:

> On Saturday, 14 Jan 2017 at 18:33, Sebastian Christ wrote:
>> in the last couple weeks (perhaps months?) Emacs hangs for no specific
>> reason for me. The single constant is, that when it hangs, it hangs
>> while I'm in org-mode. This occurs on multiple circumstance as
>
> Just to say that I experience the same.  However, I track emacs as well
> as org so I never know if the problem is emacs or org.  In my case, all
> hangs are when in org mode but that could be because I'm in org mode
> 90% of the time... :-)

Just to say that I too experience the same. I'm convinced it started
happening since I upgraded to Org 9 (but I also started using Org's
Agenda more around the same time, I think). My versions:

- GNU Emacs 25.1.1 (x86_64-apple-darwin13.4.0, NS appkit-1265.21 Version 10.9.5 
(Build 13F1911)) of 2016-09-21
- Org mode version 9.0.3 (9.0.3-elpaplus @ - 
/Users/stig/.emacs.d/elpa/org-plus-contrib-20161224/)

I can go a few days without encountering it, but then it will suddenly
hit. I have a feeling that it's triggered by refiling, or closing
TODOs towards the end of the file. My agenda file is big, but not
monstrous. (I think.) C-= reports: "Region has 2025 lines, 9592 words,
and 67513 characters." There are 333 headings, most of them
TODO/NEXT/PROJECT, and I use lots of tags. I also use a few categories
on top-level headings.

I've set the following to try to speed up agenda, but it hasn't made any
discernible difference as far as I can tell:

: (setq org-agenda-use-tag-inheritance '(todo))

I've tried to turn on debug on quit, and sent a few stack traces here in
the past but to no avail. I cannot reproduce it with =emacs -q=, but
that uses Org 8 anyway, so I would not expect it to. Nor do I have a
sure-fire way to reproduce the issue, and I am not keen on being without
my regular config for days while hoping to reproduce the hang.

I do think it's related to Emacs having run for a while, because once
the hang manifests I can just quit Emacs and restart what I was doing
and no hang will manifest (for a while). When last I managed to capture
a stack trace during one of these the stack trace started  with:

: Debugger entered--Lisp error: (quit)
:  avl-tree--do-delete(org-element--cache-compare [[nil nil
: (property-drawer (:begin 18463 :end 18529 :contents-begin 18479
: :contents-end 18519 :post-blank 1 :post-affiliated 18463 :parent nil))
: 0] [nil nil (plain-list (:type unordered :begin 18547 :end 18749
: :contents-begin 18574 :contents-end 18748 :structure ... :post-blank 1
: :post-affiliated 18574 :name "candidate-names" :parent nil)) 0]
: (paragraph (:begin 18529 :end 18547 :contents-begin 18529
: :contents-end 18546 :post-blank 1 :post-affiliated 18529 :parent nil))
: 0] [[nil nil (keyword (:key "RESULTS" :value "" :begin 18905 :end
: 18920 :post-blank 1 :post-affiliated 18905 :parent nil)) 0] [nil nil
: (paragraph (:begin 19570 :end 19586 :contents-begin 19570
: :contents-end 19585 :post-blank 1 :post-affiliated 19570 :parent nil))
: 0] (table (:begin 18920 :end 19570 :type org :tblfm nil
: :contents-begin 18920 :contents-end 19568 :value nil :post-blank 2
: :post-affiliated 18920 :parent nil)) 0] (src-block (:language "sh"
: :switches nil :parameters ":var names=candidate-names :results table"
: :begin 18749 :end 18905 :number-lines nil :preserve-indent nil
: :retain-labels t :use-labels t :label-fmt nil :value "   echo $names |
: xargs -n1 | perl  -MList::Util -e
: 'print List::Util::shuffle <>'\n" :post-blank 1 :post-affiliated
: 18749 :parent nil)) 0

Further, I do notice this stack trace is full of `:drawer-name
"LOGBOOK"' entries too, like this:

: (:begin 9624 :end 9714 :drawer-name "LOGBOOK" :contents-begin 9638
: :contents-end 9704 :post-blank 0 :post-affiliated 9624 :parent nil))
: 0] nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil
: ... 0] ... 0] (drawer ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0]
: [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0]
: ... 0] (item ...) 1] (drawer (:begin 15202 :end 15582 :drawer-name
: "LOGBOOK" :contents-begin 15216 :contents-end 15572 :post-blank 0
: :post-affiliated 15202 :parent nil)) 1] (drawer (:begin 11498 :end
: 11629 :drawer-name "LOGBOOK" :contents-begin 11512 :contents-end 11619
: :post-blank 0 :post-affiliated 11498 :parent nil)) 1] (property-drawer
: (:begin 7832 :end 7900 :contents-begin 7849 :contents-end 7890
: :post-blank 0 :post-affiliated 7832 :parent nil)) 1] [[nil nil ...
: 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0]
: (src-block ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil
: ... 0] [nil nil ... 0] ... 0] (drawer ...) 0] (paragraph (:begin 19586
: :end 19669 :contents-begin 19586 :contents-end 19668 :post-blank 1
: :post-affiliated 19586 :parent nil)) 0] nil nil ... 0] [nil nil
: ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (drawer ...) 0]
: [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil n

Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Stig Brautaset

Stig Brautaset  writes:

> Eric S Fraga  writes:
>
>> On Saturday, 14 Jan 2017 at 18:33, Sebastian Christ wrote:
>>> in the last couple weeks (perhaps months?) Emacs hangs for no specific
>>> reason for me. The single constant is, that when it hangs, it hangs
>>> while I'm in org-mode. This occurs on multiple circumstance as
>>
>> Just to say that I experience the same.  However, I track emacs as well
>> as org so I never know if the problem is emacs or org.  In my case, all
>> hangs are when in org mode but that could be because I'm in org mode
>> 90% of the time... :-)
>
> Just to say that I too experience the same. I'm convinced it started
> happening since I upgraded to Org 9 (but I also started using Org's
> Agenda more around the same time, I think). My versions:

I just saw Nicolas suggesting disabling org cache, and will try that.
(My stack traces from hangs did include references to the cache.) Will
report back if the hangs disappear, though it might take a while before
I'm confident they really are...

Stig



[O] refiling from capture dialogue demoting subsequent heading

2017-01-15 Thread Stig Brautaset
Hi,

I've found a couple times that some of my top-level sections have been
demoted one level. From my git history (I do a commit for each save in
Agenda) it looks like this has happened when refiling to a particular
section directly from the capture session. The demoted section is the
top-level heading immediately after where the entry was refiled to. I
have, however, not been able to reproduce the issue.

Stig



Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Eric Abrahamsen
Eric S Fraga  writes:

> On Saturday, 14 Jan 2017 at 18:33, Sebastian Christ wrote:
>> in the last couple weeks (perhaps months?) Emacs hangs for no specific
>> reason for me. The single constant is, that when it hangs, it hangs
>> while I'm in org-mode. This occurs on multiple circumstance as
>
> Just to say that I experience the same.  However, I track emacs as well
> as org so I never know if the problem is emacs or org.  In my case, all
> hangs are when in org mode but that could be because I'm in org mode
> 90% of the time... :-)

I used to get this a lot, and always due to some interaction between the
cache and flyspell. It hasn't happened to me for several months, though
(Emacs from git, org-plus-contrib from the package manager). Who knows
why...

Eric




[O] Allowing multiple date trees in a single file

2017-01-15 Thread Carsten Dominik
Hi everyone,

here is a patch that allows to have multiple date trees or iso-week trees
in a single file by allowing to specify the property name that will be used
to place the tree.  The property name can be set in org-capture-templates,
individually for every template if so desired.  I use that to have three
different kind of journals in a single file.

Any objections gains me to merge this change into Master?

Carsten


patch-datetree
Description: Binary data


Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Eric S Fraga
On Sunday, 15 Jan 2017 at 13:55, Stig Brautaset wrote:

[...]

> Just to say that I too experience the same. I'm convinced it started
> happening since I upgraded to Org 9 (but I also started using Org's
> Agenda more around the same time, I think). My versions:

[...]

> I can go a few days without encountering it, but then it will suddenly
> hit. I have a feeling that it's triggered by refiling, or closing
> TODOs towards the end of the file. My agenda file is big, but not

For me, it does not happen with the agenda but when editing documents
(in org).  I can find no predictability to the hangs, however.  Some
days it happens more than once but I can also go many days without it
happening.

Emacs does not get completely hung in that it attempts to respond to C-g
(visual-bell indication happens).

The cache may be involved.  I do tend to have quite long and complicated
documents (full journal papers or a whole semester's set of slides for
one of my courses) with lots of babel src blocks, tables, inline tasks,
...

Anyway, not a deal breaker!

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 26.0.50.1, Org release_9.0.3-201-ga51c6f


signature.asc
Description: PGP signature


Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Sebastian Christ
> "NG" == Nicolas Goaziou  writes:
NG> You could try to set `org-element-use-cache' to nil and see if
NG> the hangs disappear.

I'll try this. Thank you very much. 

/src

-- 
Sebastian (Rudolfo) Christ
http://rudolfochrist.github.io
GPG Fingerprint: 306D 8FD3 DFB6 4E44 5061
 CE71 6407 D6F8 2AC5 55DD



[O] Bug: org-html-footnotes-section is not documented [9.0.3 (9.0.3-elpa @ /home/user1/.emacs.d/elpa/org-20161224/)]

2017-01-15 Thread user1

[BUG] "org-html-footnotes-section" is not documented anywhere except in
the source of ox-html.el (and autocomplete-guessable only after loading
ox-html.el),  while the unrelated confusing "org-footnote-section" is
documented in the org-mode manual

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 mailing list.




Emacs  : GNU Emacs 25.1.2 (x86_64-pc-linux-gnu, GTK+ Version 3.18.9)
 of 2016-09-24
Package: Org mode version 9.0.3 (9.0.3-elpa @ 
/home/user1/.emacs.d/elpa/org-20161224/)

current state:
==
(setq
 org-tab-first-hook '(org-babel-hide-result-toggle-maybe
  org-babel-header-arg-expand)
 org-speed-command-hook '(org-speed-command-default-hook
  org-babel-speed-command-hook)
 org-occur-hook '(org-first-headline-recenter)
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-html-format-drawer-function #[514 "\207" [] 3 "\n\n(fn NAME CONTENTS)"]
 org-latex-format-inlinetask-function 
'org-latex-format-inlinetask-default-function
 org-confirm-shell-link-function 'yes-or-no-p
 org-ascii-format-inlinetask-function 'org-ascii-format-inlinetask-default
 org-latex-format-headline-function 'org-latex-format-headline-default-function
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-latex-format-drawer-function #[514 "\207" [] 3 "\n\n(fn _ CONTENTS)"]
 org-odt-format-headline-function 'org-odt-format-headline-default-function
 org-src-mode-hook '(org-src-babel-configure-edit-buffer
 org-src-mode-configure-edit-buffer)
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-babel-pre-tangle-hook '(save-buffer)
 org-mode-hook '(#[0 "\300\301\302\303\304$\207"
   [add-hook change-major-mode-hook org-show-block-all append
local]
   5]
 #[0 "\300\301\302\303\304$\207"
   [add-hook change-major-mode-hook org-babel-show-result-all
append local]
   5]
 org-babel-result-hide-spec org-babel-hide-all-hashes)
 org-archive-hook '(org-attach-archive-delete-maybe)
 org-ascii-format-drawer-function #[771 "\207" [] 4 "\n\n(fn NAME CONTENTS 
WIDTH)"]
 org-odt-format-inlinetask-function 'org-odt-format-inlinetask-default-function
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
  org-cycle-show-empty-lines
  org-optimize-window-after-visibility-change)
 org-confirm-elisp-link-function 'yes-or-no-p
 org-metadown-hook '(org-babel-pop-to-session-maybe)
 org-odt-format-drawer-function #[514 "\207" [] 3 "\n\n(fn NAME CONTENTS)"]
 org-html-format-headline-function 'org-html-format-headline-default-function
 org-link-parameters '(("id" :follow org-id-open)
   ("rmail" :follow org-rmail-open :store
org-rmail-store-link)
   ("mhe" :follow org-mhe-open :store org-mhe-store-link)
   ("irc" :follow org-irc-visit :store org-irc-store-link)
   ("info" :follow org-info-open :export org-info-export
:store org-info-store-link)
   ("gnus" :follow org-gnus-open :store
org-gnus-store-link)
   ("docview" :follow org-docview-open :export
org-docview-export :store org-docview-store-link)
   ("bibtex" :follow org-bibtex-open :store
org-bibtex-store-link)
   ("bbdb" :follow org-bbdb-open :export org-bbdb-export
:complete org-bbdb-complete-link :store
org-bbdb-store-link)
   ("w3m" :store org-w3m-store-link) ("file+sys")
   ("file+emacs")
   ("magit" :follow org-magit-open :export
org-magit-export)
   ("orgit-rev" :follow orgit-rev-open :export
orgit-rev-export)
   ("orgit-log" :follow orgit-log-open :export
orgit-log-export)
   ("orgit" :follow orgit-status-open :export
orgit-status-export)
   ("doi" :follow org--open-doi-link)
   ("elisp" :follow org--open-elisp-link)
   ("file" :complete org-file-complete-link)
   ("ftp" :follow
(lambda (path) (browse-url (concat "ftp:" path
   ("help" :follow org--open-help-link)
   ("http" :follow
(lambda (path) (browse-url (concat "http:" path

[O] Bug: error when (require 'org-drill) in init.el [9.0.3 (9.0.3-elpa @ /home/dieter/.emacs.d/elpa/org-20161224/)]

2017-01-15 Thread H. Dieter Wilhelm



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 mailing list.


Hi,

I installed org and org-contrib via elpa.  When doing (require
'org-drill) in my init.el Emacs complains about a "copy-list" function
when restarting Emacs.

When I set (require 'cl) before org-drill then Emacs starts without
falling into debug mode.  So I assume something is wrong with the 
elpa compiling step 


Emacs  : GNU Emacs 25.1.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.14.5)
 of 2016-10-04
Package: Org mode version 9.0.3 (9.0.3-elpa @ 
/home/dieter/.emacs.d/elpa/org-20161224/)

current state:
==
(setq
 org-tab-first-hook '(org-babel-hide-result-toggle-maybe 
org-babel-header-arg-expand)
 org-latex-classes '(("my-beamer" "\\documentclass{conti}"
  ("\\section{%s}" . "\\section*{%s}")
  ("\\subsection{%s}" . "\\subsection*{%s}")
  ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
  ("\\paragraph{%s}" . "\\paragraph*{%s}")
  ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
 ("A-M" "\\documentclass{beamer}"
  ("\\section{%s}" . "\\section*{%s}")
  ("\\subsection{%s}" . "\\subsection*{%s}")
  ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
  ("\\paragraph{%s}" . "\\paragraph*{%s}")
  ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
 ("koma-article"
  "\\documentclass{scrartcl}\n
\\usepackage{scrpage2}\n   [EXTRA]"
  ("\\section{%s}" . "\\section*{%s}")
  ("\\subsection{%s}" . "\\subsection*{%s}")
  ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
  ("\\paragraph{%s}" . "\\paragraph*{%s}")
  ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
 ("my-letter"
  "\\documentclass[%\n% headings=standardclasses,\n%
 DIV=14,\n% fontsize=12pt,\n% parskip=half\n]%\n {scrlttr2}\n 
[DEFAULT-PACKAGES]\n [PACKAGES]\n [EXTRA]")
 ("default-koma-letter" "\\documentclass[11pt]{scrlttr2}")
 ("beamer" "\\documentclass[presentation]{beamer}"
  ("\\section{%s}" . "\\section*{%s}")
  ("\\subsection{%s}" . "\\subsection*{%s}")
  ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
 ("article" "\\documentclass[11pt]{article}"
  ("\\section{%s}" . "\\section*{%s}")
  ("\\subsection{%s}" . "\\subsection*{%s}")
  ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
  ("\\paragraph{%s}" . "\\paragraph*{%s}")
  ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
 ("report" "\\documentclass[11pt]{report}"
  ("\\part{%s}" . "\\part*{%s}")
  ("\\chapter{%s}" . "\\chapter*{%s}")
  ("\\section{%s}" . "\\section*{%s}")
  ("\\subsection{%s}" . "\\subsection*{%s}")
  ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
 ("book" "\\documentclass[11pt]{book}"
  ("\\part{%s}" . "\\part*{%s}")
  ("\\chapter{%s}" . "\\chapter*{%s}")
  ("\\section{%s}" . "\\section*{%s}")
  ("\\subsection{%s}" . "\\subsection*{%s}")
  ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
 )
 org-mobile-files '("~/org/info.org")
 org-speed-command-hook '(org-speed-command-default-hook 
org-babel-speed-command-hook)
 org-occur-hook '(org-first-headline-recenter)
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-agenda-start-on-weekday nil
 org-html-format-drawer-function #[514 "\207" [] 3 "\n\n(fn NAME CONTENTS)"]
 org-log-done 'time
 org-latex-format-inlinetask-function 
'org-latex-format-inlinetask-default-function
 org-confirm-shell-link-function 'yes-or-no-p
 org-ascii-format-inlinetask-function 'org-ascii-format-inlinetask-default
 org-html-metadata-timestamp-format "%Y-%m-%d"
 org-file-apps '(("pdf" . "evince %s") (auto-mode . emacs) ("\\.mm\\'" . 
default)
 ("\\.x?html?\\'" . default) ("\\.pdf\\'" . default))
 org-latex-format-headline-function 'org-latex-format-headline-default-function
 org-todo-keyword-faces '(("NEU" quote (:foreground "green"))
  ("ALT" quote (:foreground "red"))
  ("TODO" quote (:foreground "orange")))
 org-capture-templates '(("r

Re: [O] org-agenda timetable

2017-01-15 Thread Emilio J . Padrón González
Hi!

Sorry for taking this message from the past, but I'm looking for the
same thing:

On Fri, Nov 13, 2015 at 05:49:06PM -0500, xD wrote:
> 
> I'm using org-agenda [...] I'd like to get the information from the
> org-agenda and display it as a "timetable".

Did you get a satisfactory solution?

Thanks in advance!

Cheers,
E



Re: [O] Allowing multiple date trees in a single file

2017-01-15 Thread Nicolas Goaziou
Hello,

Carsten Dominik  writes:

> here is a patch that allows to have multiple date trees or iso-week trees
> in a single file by allowing to specify the property name that will be used
> to place the tree.  The property name can be set in org-capture-templates,
> individually for every template if so desired.  I use that to have three
> different kind of journals in a single file.
>
> Any objections gains me to merge this change into Master?

AFAIR, WEEK_TREE and DATE_TREE allow to select the type of tree being
inserted. How is the new property allowing to do the same?

Also, there are some tests defined in "test-org-capture.el" and
"test-org-datetree.el". Would you mind extending those so as to include
your new property ?

Regards,

-- 
Nicolas Goaziou



Re: [O] Emacs hangs sometimes for no reason

2017-01-15 Thread Michael Welle
Hello,

Eric Abrahamsen  writes:
[...]
> I used to get this a lot, and always due to some interaction between the
> cache and flyspell. It hasn't happened to me for several months, though
> (Emacs from git, org-plus-contrib from the package manager). Who knows
> why...
I have no problem (in this department ;)) with Org (Org and Emacs 25,
both, are from git), but sometimes Emacs hangs when I write an email
with wanderlust. It seems to hang for a minute or maybe longer, most
times I key in a couple of C-g and then go on. I got triggered by
flyspell, that is active in wl as well. Hmm. 

Regards
hmw