Re: [O] Calc: Multiply time (hours) with a float

2016-09-19 Thread Bernhard Pröll
Hi, FWIW, there is a org-table-toggle-formula-debugger command. On Mon, Sep 19 2016, Karl Voit wrote: > * Michael Welle wrote: >> >> Karl Voit writes: >> [...] > #+TBLFM: @2$3='(* $2 (org-time-string-to-hours "$1"));L or converting $2 to

Re: [O] Upper or lower case in BEGIN_SRC and other keywords

2016-06-16 Thread Bernhard Pröll
On Thu, 16. Jun 12:13, William Denton wrote: When I use the For one, there is a ~org-babel-results-keyword~ variable. Also I prefer src block keywords not to stand out as such: #+begin_src emacs-lisp (setcar org-structure-template-alist '("s" "#+begin_src ?\n\n#+end_src" "")) #+end_src For

Re: [O] scheme SRC blocks

2016-03-22 Thread Bernhard Pröll
On Mon, 21. Mar 23:55, Arun Isaac wrote: In addition to requiring 'geiser-install you have to set the geiser-active-implementations variable, e.g.: Customizing the geiser-active-implementations variable works for me. Thank you. alternatively there is a :scheme header argument for src

Re: [O] scheme SRC blocks

2016-03-21 Thread Bernhard Pröll
On Mon, 21. Mar 08:22, Robert Klein wrote: Hi, Arun Isaac wrote: I have an org file with scheme SRC blocks like so. #+BEGIN_SRC scheme (some-code-here) #+END_SRC Every time, I open the org file, I get prompted for the "Scheme implementation" and I need to

Re: [O] insert automatically row number in tables.

2016-03-07 Thread Bernhard Pröll
Hi, the following formula will do this for me: | row | data | |-+--| | 2 | 0303 | | 3 | 5123 | | 4 | 41 | | 5 | 4234 | | 6 | 34 | #+TBLFM: $1=@# Regards, Bernhard Pröll On Mon, 07. Mar 11:24, Uwe Brauer wrote: Hi I would like to insert row in a table, and then hitting

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-02 Thread Bernhard Pröll
' suggested by John. It's somewhat in-between using `org-refile' and an indexing with external tools (recoll for example as recently debated on this list). Regards, Bernhard Pröll On Sat, 01. Aug 16:20, Xebar Saram wrote: Thx so much Bernhard this looks really promising. i never had luck with either

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread Bernhard Pröll
little to no testing done on the package. Furthermore it uses org-store-link instead of org-id-store-link. Regards, Bernhard Pröll On Fri, 31. Jul 09:43, Xebar Saram wrote: i also have a similar workflow and would love to hear Dominic if you found a solution for this or if anyone on the list has

Re: [O] Org-Mode and ditaa

2015-07-27 Thread Bernhard Pröll
Hi Pascal, alternatively you could have installed ditaa and point ob-ditaa to it: #+BEGIN_SRC elisp (setq org-ditaa-jar-path /usr/bin/ditaa) #+END_SRC Not an answer to your actual question, though. Regards, Bernhard Pröll On Sat, 18. Jul 12:34, Pascal Lorenz wrote: Hi! When I tried

Re: [O] [feature request] org-capture-window-setup to stop capture window taking up whole frame

2015-06-09 Thread Bernhard Pröll
With a lot of windows open the annoying part of =org-capture= is =switch-to-buffer-other-window= for me. My approach is using the current window for the capture buffer: #+BEGIN_SRC elisp (defadvice org-capture (around bp/org-capture--around) (flet ((switch-to-buffer-other-window (buf)

Re: [O] Org-Timer has nice popups; how can I use them elsewhere?

2015-03-24 Thread Bernhard Pröll
This blogpost demonstrates the usage of org-agenda-to-appt: http://emacs-fu.blogspot.co.at/2009/11/showing-pop-ups.html Instead of a sound I call notify-send for example. Tory S. Anderson torys.ander...@gmail.com schrieb am Mon, 23. Mar 15:36: So, orgmode timers have a nice popup when they

Re: [O] How do you structure your org-drill file?

2015-02-08 Thread Bernhard Pröll
Dear Marcin, with org-drill-hide-item-headings-p set to t the heading text is irrelevant to me. I use this capture template: (v Vocabulary Item entry (file ~/path/to/vocabulary.org) * Drill :drill:\n:PROPERTIES:\n:DRILL_CARD_TYPE: twosided\n:END:\n** Item\n%^{New Item}\n**

Re: [O] Org and ledger

2014-11-09 Thread Bernhard Pröll
not mention org anywhere that I could see. thanks. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.1, Org release_8.3beta-475-g25d50e -- mit freundlichen Grüßen Bernhard Pröll

Re: [O] how to 'add capture item' in agenda view

2014-05-20 Thread Bernhard Pröll
There is an org-capture-use-agenda-date variable that seems to do what you're looking for. bernhard David Belohrad da...@belohrad.ch schrieb am Tue, 20. May 08:09: Dear All, when I run org-agenda with 'a' (agenda for current week or day), my agenda is displayed. Now if I'm on a specific day,

Re: [O] Exporting Code Blocks to PDF

2014-04-23 Thread Bernhard Pröll
Instead of switching fontsizes regularly, you might want to set the monofont size or scale: #+LATEX_HEADER: \setmonofont[Scale=0.8]{Source Code Pro} Bernhard John Hendy jw.he...@gmail.com schrieb am Tue, 22. Apr 19:43: On Tue, Apr 22, 2014 at 6:28 PM, Elasady, Summer s...@stowers.org wrote: