Re: [O] Slow speed of week and month views

2017-08-06 Thread Karl Voit
* Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Karl Voit <devn...@karl-voit.at> writes: > >> I just learned about elp-instrument-package. What prefixes are of interest to >> you? > > "org-" prefix. The nice thing about `elp-instrument-pac

Re: [O] Slow speed of week and month views

2017-08-06 Thread Karl Voit
Hi Adam, * Adam Porter <a...@alphapapa.net> wrote: > Karl Voit <devn...@karl-voit.at> writes: > >> With a fairly modified configuration (like mine on [0]) and a large >> set of long Org-mode files I can't publish, it is hard to do >> analysis here. So I

Re: [O] Slow speed of week and month views

2017-08-06 Thread Karl Voit
Hi Nicolas, * Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > > Karl Voit <devn...@karl-voit.at> writes: > >> First: I've occasionally mentioned all kinds of performance issues >> over the last years. btw, working within my Memacs agenda [1] with a bit

Re: [O] Slow speed of week and month views

2017-08-06 Thread Karl Voit
* Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, Hi Nicolas, > Karl Voit <devn...@karl-voit.at> writes: > >> My daily agenda takes twenty seconds, my weekly approximately a >> minute and generating a monthly agenda is something I can only do >

Re: [O] [Orgmode] Slow speed of week and month views

2017-08-06 Thread Karl Voit
Hello John, Great to read your thoughts on the topic - I am a huge admirer of your work and we both seem to cope with similar issues with Org-mode. * John Kitchin wrote: > > One is to use the new dynamic module capability to write an org parser in > C, or a dedicated

Re: [O] Determine min/max values in a table

2017-08-05 Thread Karl Voit
* Adam Porter wrote: > Thierry Banel writes: > >> Alternatively you have the orgtbl-aggregate package available on Melpa. >> >> #+BEGIN: aggregate :table "myvalues" :cols "min(Values) max(Values) >> mean(Values)" >> >> | min(Values) | max(Values) |

Re: [O] [Orgmode] Slow speed of week and month views

2017-08-05 Thread Karl Voit
Thanks for the insight! * Adam Porter wrote: > > But doing that would, as Carsten said, require rewriting a lot of code. > Essentially you'd be creating a new agenda system, so you'd have to > reimplement a lot of existing code. You could do it in parallel, rather > than

Re: [O] Just sharing another orgmode use: usability tests

2017-08-02 Thread Karl Voit
* Eduardo Mercovich wrote: > > + automatic task clocking, including automated time stamping of > every observation. You seem to use headings for any events. If list items does the trick as well, you can take a look at timers for doing the clocking thing:

[O] Finding calc/elisp methods (was: Determine min/max values in a table)

2017-08-02 Thread Karl Voit
Hi, * Karl Voit <devn...@karl-voit.at> wrote: > > How can I determine minimum and/or maximum value of a table? > > Here is my example: > > #+NAME: myvalues >| Values | >|| >| 4 | >| 2 | >| 3 | >| 7 | >| 5 | >| 6

[O] Determine min/max values in a table

2017-08-02 Thread Karl Voit
Hi! How can I determine minimum and/or maximum value of a table? Here is my example: #+NAME: myvalues | Values | || | 4 | | 2 | | 3 | | 7 | | 5 | | 6 | | Min| Max| Average | First | Last | |++-+---+--| | #ERROR |

Re: [O] "Autoloading failed to define function org-babel-do-load-languages"

2017-05-22 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > > Org-mode from maint Git repository overruled via following lines > right at the top of my ~/.emacs.d/init.el: >| (add-to-list 'load-path "~/.emacs.d/contrib/org-mode/lisp") >| (add-to-list 'load-path "~/.emac

[O] "Autoloading failed to define function org-babel-do-load-languages"

2017-05-16 Thread Karl Voit
Hi! I'm in the process of switching from ~/.emacs.d/init.el to ~/.emacs.d/config.org using the method described on [1]. Org-mode from maint Git repository overruled via following lines right at the top of my ~/.emacs.d/init.el: | (add-to-list 'load-path "~/.emacs.d/contrib/org-mode/lisp") |

Re: [O] org-table: Can't assign numbers to range

2017-02-10 Thread Karl Voit
* Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Karl Voit <devn...@karl-voit.at> writes: > >> Hi! >> >> | foo | >> |-| >> | | >> | | >> |-| >> | | >> | | >> |-| >&g

[O] org-table: Can't assign numbers to range

2017-02-08 Thread Karl Voit
Hi! | foo | |-| | | | | |-| | | | | |-| #+TBLFM: @I$1..@II$1=1 :: @II$1..@III$1=2 Results in "user-error: Can't assign to hline relative reference" Why? I assumed to get following table as a result: | foo | |-| | 1 | | 1 | |-| | 2 | | 2 | |-|

[O] git and orgmode: teaching git a bit of orgmode syntax

2017-01-24 Thread Karl Voit
Hi! I am using gitwatch[1] to auto-commit any changes to my org-mode files in a git repository. Unfortunately, git does not handle diffs in a meaningful way. For example, when there are sub-hierarchies added or removed, it ends up with many diff-lines like the following: -* NEXT test with

[O] Filter out agenda items using elisp

2017-01-22 Thread Karl Voit
Hi! I want to write my own flexible narrow function for my agenda using RegEx. I found org-agenda-filter-by-regexp() which seems a perfect hit for my task. However, I need to call it with a universal prefix in order to remove lines matching my RegEx: (defun my-narrow-agenda () "Getting rid

Re: [O] Bug: org-clone-subtree-with-time-shift not asking for time-shift

2017-01-16 Thread Karl Voit
* Kyle Meyer wrote: > > Thanks. The additional check looks good, as it replaces an error with a > more appropriate user-error and gives an error message that is a bit > more specific. > > However, the re-positioning of the org-back-to-heading call seems > problematic because the

Re: [O] Bug: org-clone-subtree-with-time-shift not asking for time-shift (FIXED)

2017-01-16 Thread Karl Voit
Hello, * Nicolas Goaziou wrote: > > Kyle Meyer writes: > >> Subject: [PATCH] org-clone-subtree-with-time-shift: Fix timestamp search > > Thank you. I applied your patch with an additional check. I pulled the fix from "maint" and I re-tested my test

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

2017-01-16 Thread Karl Voit
Hi Alan, * Alan Schmitt <alan.schm...@polytechnique.org> wrote: > On 2017-01-16 15:43, Karl Voit <devn...@karl-voit.at> writes: > >> I am using the Firefox plugin Shelve[1] which stores all of my web >> pages visited. Those HTML files are written with an ISO ti

Re: [O] Bug: org-clone-subtree-with-time-shift not asking for time-shift

2017-01-16 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > > As Michael Maurer stated in a comment below, > org-clone-subtree-with-time-shift does not ask for time-shift > depending on the location of the cursor. He is using Org-mode version 8.2.10. -- get mail|git|SVN|photos|postings|SMS|

Re: [O] Syncing methods for org files and org-mobile.el

2017-01-16 Thread Karl Voit
* Sean Escriva wrote: > > What do you use to sync org files across different machines? I am using WebDav for syncing with Android. I will switch from WebDav to SyncThing since it turned out to be a very neat and easy to use sync method with enhanced privacy. Apple

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

2017-01-16 Thread Karl Voit
On Mon, Jan 16 2017 at 09:48:38 am, Alan Schmitt wrote: > I'm looking for a workflow that allows me to save a web page for > reference, ideally from Firefox. I know of org-protocol-capture-html > (https://github.com/alphapapa/org-protocol-capture-html), which is > perfect for pure-text pages,

[O] Bug: org-clone-subtree-with-time-shift not asking for time-shift

2017-01-16 Thread Karl Voit
Hi! I wrote a blog article on how I am using Org with recurring events or tasks: http://karl-voit.at/2017/01/15/org-clone-subtree-with-time-shift/ As Michael Maurer stated in a comment below, org-clone-subtree-with-time-shift does not ask for time-shift depending on the location of the cursor.

[O] Opening a LibreOffice file

2017-01-02 Thread Karl Voit
Hi! I am unsure why but with my configuration, I can't open a LibreOffice odp file. By default, Emacs was showing me the content of the odp file as a ZIP file, which is technically true but not helpful. John Kitchin suggested setting org-file-apps manually. Here are the results: (setq

[O] Fast Opening of Memacs Indexed Files (was: Elisp: help on string operations for fast file visiting)

2017-01-02 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > Hi! > > For Memacs[1], I'd like to come up with a very fast Org-mode method to > open files independent of their location on your disk. With the help of John Kitchin, I am now able to present you the solution for the issue: h

Re: [O] Ignore pattern when syncing Org-mode files between hosts

2016-12-30 Thread Karl Voit
* Thierry Banel <tbanelweb...@free.fr> wrote: > Le 28/12/2016 16:42, Karl Voit a écrit : >> Hi! >> >> I wonder how others are handling synchronization ignore patterns >> between different hosts. >> >> ... >> >> Currently, I am evaluating S

Re: [O] Ignore pattern when syncing Org-mode files between hosts

2016-12-28 Thread Karl Voit
Hi Skip, * Skip Collins <skip.coll...@gmail.com> wrote: > On Wed, Dec 28, 2016 at 10:42 AM, Karl Voit <devn...@karl-voit.at> wrote: >> I wonder how others are handling synchronization ignore patterns >> between different hosts. > > Perhaps you should consider gi

[O] Ignore pattern when syncing Org-mode files between hosts

2016-12-28 Thread Karl Voit
Hi! I wonder how others are handling synchronization ignore patterns between different hosts. In particular, I do have "issues" with temporary files of Emacs + Org-mode like «.#myfile.org» or «#myfile.org#». The first one is a symlink which does not bother me as long as I keep quitting my

Re: [O] Properties ID vs. CUSTOM_ID

2016-12-22 Thread Karl Voit
* John Kitchin wrote: > > There is not an issue using a human-readable id in :ID: as long as it is > unique. It will store fine, link fine, etc... I also think so because I am only using human-readable :ID: without any issue so far. However, the argument was that no

Re: [O] sending an email to an orgmode file?

2016-12-22 Thread Karl Voit
In case you do have access to your mail server: * Xebar Saram wrote: > > im looking for a simple solution that will allow me to send an email from > my mobile phone and habr that email either be appended to a txt(org) file > or perhaps another solution to get my mobile on the

Re: [O] Properties ID vs. CUSTOM_ID (was: Automatically Generating IDs From Title and Date)

2016-12-22 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > * Samuel Wales <samolog...@gmail.com> wrote: >> On 12/18/16, Karl Voit <devn...@karl-voit.at> wrote: >>> Usually, my IDs start with the current ISO day to enforce uniqueness >>> and look like this: >

Re: [O] Preventing Org from being installed by elpa

2016-12-21 Thread Karl Voit
* Phillip Lord <phillip.l...@russet.org.uk> wrote: > Karl Voit <devn...@karl-voit.at> writes: > >> I got the tipp of creating «~/.emacs.d/elpa/org-3101/org-pkg.el» >> with: >> (define-package "org" "3101" "Dummy org mode pack

Re: [O] Preventing Org from being installed by elpa

2016-12-21 Thread Karl Voit
* Christian Wittern <cwitt...@gmail.com> wrote: > On 12/21/2016 05:07 AM, Karl Voit wrote: >> I got the tipp of creating «~/.emacs.d/elpa/org-3101/org-pkg.el» >> with: >> (define-package "org" "3101" "Dummy org mode package" '

[O] Preventing Org from being installed by elpa (was: Remove Org from Emacs repository?)

2016-12-20 Thread Karl Voit
* Eric Abrahamsen wrote: > > Actually, I have a third: the plain old Org package from the > package repos, because I've installed other packages that require > it. (Another gripe: why isn't the loading of a file containing > (provide 'org) enough to tell the package

Re: [O] a general ID picker

2016-12-20 Thread Karl Voit
* Eric Abrahamsen <e...@ericabrahamsen.net> wrote: > Karl Voit <devn...@karl-voit.at> writes: > >> 1 Improvement: ID Picker >> >> >> First of all, I'd like to see some kind of ID picker when defining >> `:TRIGGER:' and `:

[O] Properties ID vs. CUSTOM_ID (was: Automatically Generating IDs From Title and Date)

2016-12-20 Thread Karl Voit
* Samuel Wales <samolog...@gmail.com> wrote: > On 12/18/16, Karl Voit <devn...@karl-voit.at> wrote: >> Usually, my IDs start with the current ISO day to enforce uniqueness >> and look like this: > > my understanding, which might be incorrect, is that custom id

[O] Cannot reach support button on orgmode web page

2016-12-18 Thread Karl Voit
Hi! - http://orgmode.org/Changes.html - Firefox 45.6.0 - Debian GNU/Linux Jessie When I try to move my mouse over the "Support Org" button in the lower right corner, the following message gets moved in, making it impossible to me to reach the button: "If Emacs is an operating system, Org-mode

[O] org-depend improvements: TRIGGER in Combination With Set SCHEDULED

2016-12-18 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > * Carsten Dominik <domi...@uva.nl> wrote: > >> Since ord-depend was only proof of concept, we could also think a bit more >> broadly about what it should be able to do. Is there specific >> functionality it also

[O] org-depend improvements: Canceled Tasks Do Cancel Their Dependencies as Well

2016-12-18 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > * Carsten Dominik <domi...@uva.nl> wrote: > >> Since ord-depend was only proof of concept, we could also think a bit more >> broadly about what it should be able to do. Is there specific >> functionality it also

[O] Automatically Generating IDs From Title and Date

2016-12-18 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > * Carsten Dominik <domi...@uva.nl> wrote: > >> Since ord-depend was only proof of concept, we could also think a bit more >> broadly about what it should be able to do. Is there specific >> functionality it also

[O] org-depend improvements: ID picker

2016-12-18 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > * Carsten Dominik <domi...@uva.nl> wrote: > >> Since ord-depend was only proof of concept, we could also think a bit more >> broadly about what it should be able to do. Is there specific >> functionality it also

Re: [O] org-depend: dependencies between TODO entries in different files

2016-12-12 Thread Karl Voit
* Samuel Wales wrote: > On 12/12/16, Carsten Dominik wrote: >> broadly about what it should be able to do. Is there specific >> functionality it also should support, besides the TRIGGER/BLOCKER functions >> it has right now? > > it can make a remote task

Re: [O] org-depend: dependencies between TODO entries in different files

2016-12-12 Thread Karl Voit
* Carsten Dominik wrote: > > Dear all, Hi Carsten, > Since ord-depend was only proof of concept, we could also think a bit more > broadly about what it should be able to do. Is there specific > functionality it also should support, besides the TRIGGER/BLOCKER functions > it has

Re: [O] org-depend: dependencies between TODO entries in different files

2016-12-12 Thread Karl Voit
Hi, * Christophe Schockaert wrote: > > Carsten Dominik writes: > >> I can take a look at that. Unless Nicolas already is working on it, of >> course. >> >> [...] Is anyone besides Karl using it regularly? I don't want to >> break anything by changing it. Good point.

Re: [O] Time-Event-Diagrams

2016-12-06 Thread Karl Voit
* Thierry Banel wrote: > What about GnuPlot? Heard about it. Never used. > #+plot: ind:1 deps:(2) type:2d with:"impulse lw 6" set:"yrange [0:]" >| When | How many | >|--+--| >| [2016-11-17 Thu] |3 | >| [2016-11-23 Wed] |4

[O] Time-Event-Diagrams

2016-12-05 Thread Karl Voit
Hi! I am using following template to generate boxplot diagrams from values within an org-mode table: #+NAME: boxplot-$1 #+BEGIN_SRC R :var data=${2:orgtable} :exports code :results none pdf('~/tmp/2del/boxplot-$1.pdf') boxplot(data\$${3:column}, names=c("${4:column

Re: [O] org-mode - export as folder structure possible?

2016-11-26 Thread Karl Voit
* mcg wrote: > > Hello, > > I need to create a rather complex folder structure. > It is OK to create that in dired but I think even nicer and faster it > would be to create an org-mode outline which then exports this folder > structure to the org document's directory. >

Re: [O] Orgmode for managing OS configuration

2016-11-26 Thread Karl Voit
bash snippets > (e.g. for installing packages and sed'ing config files). Then one would > need just emacs and git (or rsync) to start with. > > Does anybody have experience with this? Is the experience positive or > negative? I posted my approach on this list in May: > From: Karl Voit <

Re: [O] Changed indentation of property blocks?

2016-11-25 Thread Karl Voit
Hi again, * Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Karl Voit <devn...@karl-voit.at> writes: > >> I upgraded my Org-mode maint branch from approx. July to current. >> >> Now I noticed a different behavior when adding a new heading via

Re: [O] org-agenda-list: no-catch --cl-block-nil--

2016-11-25 Thread Karl Voit
* Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Karl Voit <devn...@karl-voit.at> writes: > >> I get an error when calling org-agenda-list after updating my >> main-branch of Org-mode: >> >> GNU Emacs 24.5.1 (x86_64-pc-linux-gnu

[O] Changed indentation of property blocks?

2016-11-25 Thread Karl Voit
Hi! I upgraded my Org-mode maint branch from approx. July to current. GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.5) Now I noticed a different behavior when adding a new heading via Alt-RET (or org-insert-heading-respect-content): ** Heading with properties (old style)

[O] org-agenda-list: no-catch --cl-block-nil--

2016-11-25 Thread Karl Voit
Hi! I get an error when calling org-agenda-list after updating my main-branch of Org-mode: GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.5) Org mode version 9.0.1 (release_9.0.1-12-g2e35a5) Debug output: throw(--cl-block-nil-- (quote (space :width (16

Re: [O] outline-up-heading ignoring hidden levels of headings

2016-11-10 Thread Karl Voit
* Marco Wahl wrote: > Hi! Hi! >> Since I recently upgraded my Org-mode maint branch to 8.3.4 >> (release_8.3.4-1384-gc61ee8)[1], one behavior changed to a worse one. > > Possibly you can configure variable > org-show-context-detail > to meet your needs. Exactly.

[O] outline-up-heading ignoring hidden levels of headings

2016-11-09 Thread Karl Voit
Hi! Since I recently upgraded my Org-mode maint branch to 8.3.4 (release_8.3.4-1384-gc61ee8)[1], one behavior changed to a worse one. Before: Given an Org-mode buffer whose headings are all collapsed. When I open a task (heading) from my agenda, the corresponding heading *and all of its

Re: [O] Elisp: help on string operations for fast file visiting

2016-11-08 Thread Karl Voit
* Alan Schmitt <alan.schm...@polytechnique.org> wrote: > > On 2016-11-07 17:27, Karl Voit <devn...@karl-voit.at> writes: > >> I'd like to get a "Sorry" message for (1). Easy, if only I know how to >> count lines in strings (as opposed to buffers).

[O] Elisp: help on string operations for fast file visiting

2016-11-07 Thread Karl Voit
Hi! For Memacs[1], I'd like to come up with a very fast Org-mode method to open files independent of their location on your disk. I accomplished everything necessary so far. However, I've got issues writing an elisp function for extracting a file and sending it to a function that calls the

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

2016-09-20 Thread Karl Voit
* Michael Welle wrote: > Hello, > >> | time [h:m:s] | value | product | >> |--+-+-| >> | 09:15:00 | 2.54321 | #ERROR | >> >> #+TBLFM: @2$3='(org-time-string-to-hours $1) > I'm just back from a 20km hike and in the woods my mind came up with a

Re: [O] Calc: Multiply time (hours) with a float - solved by updating Org

2016-09-20 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > > | time [h:m:s] | value | product | > |--+-+-| > | 09:15:00 | 2.54321 | #ERROR | > #+TBLFM: @2$3='(org-time-string-to-hours $1) > > OK, this is my current issue then. > > I'm using

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

2016-09-19 Thread Karl Voit
* Michael Welle <mwe012...@gmx.net> wrote: > > Karl Voit <devn...@karl-voit.at> writes: > >>> [...] >>>> #+TBLFM: @2$3='(* $2 (org-time-string-to-hours "$1"));L >>> or converting $2 to a number before the calculation should work also,

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

2016-09-19 Thread Karl Voit
Hallo Michael, thanks for the pointer to http://orgmode.org/org.html#Formula-syntax-for-Lisp - it was very helpful for my understanding. * Michael Welle wrote: > Hello, > > Michael Welle writes: > [...] >> #+TBLFM: @2$3='(* $2 (org-time-string-to-hours

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

2016-09-18 Thread Karl Voit
* Michael Welle <mwe012...@gmx.net> wrote: > Hello, Hello Michael, > Karl Voit <devn...@karl-voit.at> writes: > >> * Karl Voit <devn...@karl-voit.at> wrote: >>> Hi! >>> >>> I do have following situation: I'd like to multiply a float wit

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

2016-09-11 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > Hi! > > I do have following situation: I'd like to multiply a float with hours > which results in an error, obviously. However, I was not able to find > out how to do it. > > Minimal example with expected product: >

Re: [O] org-review is on melpa

2016-09-10 Thread Karl Voit
t the two lines are not taken into account so that your non-ASCII characters are not rendered correctly: > On 2016-09-08 13:02, Karl Voit <devn...@karl-voit.at> writes: > >> Hallo Alan, >> >> I don't particularly want to discuss this here because I think >> that I

Re: [O] org-review is on melpa

2016-09-08 Thread Karl Voit
Hallo Alan, * Alan Schmitt wrote: > > After using this for a couple of years, I=E2=80=99ve finally taken the time= > to > put it on Melpa. Org-review (https://melpa.org/#/org-review) is a set of > functions to maintain review dates for entries, so that you may

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

2016-09-08 Thread Karl Voit
Hi! I do have following situation: I'd like to multiply a float with hours which results in an error, obviously. However, I was not able to find out how to do it. Minimal example with expected product: | time [h:m:s] | value | product | |--+-+---| | 09:15:00

[O] Change Org homepage ML search to GNU (was: mailing list search given problems with gmane?)

2016-09-06 Thread Karl Voit
* Grant Rettke wrote: > On Mon, Sep 5, 2016 at 10:50 AM, Eric S Fraga wrote: >> do we have any alternative means to search the mailing list given the >> current problems with gmane? > > https://lists.gnu.org/archive/html/emacs-orgmode/ Can somebody

Re: [O] table/calc: subscr() fails with date

2016-09-05 Thread Karl Voit
* Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, Hello Nicolas, > Karl Voit <devn...@karl-voit.at> writes: > >> I've found a bug when using subscr() to get the value of the previous >> row. With the following date values, it fails and I don't

[O] table/calc: subscr() fails with date

2016-09-03 Thread Karl Voit
Hi! I've found a bug when using subscr() to get the value of the previous row. With the following date values, it fails and I don't have an idea why: | date | previous date | |+| | [2015-08-21 Fri 16.57] |

[O] Bug: table/calc: subscr() fails with *bold* headline

2016-09-03 Thread Karl Voit
Hi! I've found a bug when using subscr() to copy a value from a previous row. If the corresponding headline is in *bold* letters, the formula does not work: | *Value* | Previous Value | |-+| | 1 || | 2 | #ERROR | | 3 | #ERROR

Re: [O] Calc: Second to last row

2016-09-01 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > > I would like to refer to the second to last row of a table. > > The following example should demonstrate my issue. What I expect is > that the following formula is filling @2..@5 with "1" and in the > last row, there

[O] Calc: Second to last row

2016-08-31 Thread Karl Voit
Hi! I would like to refer to the second to last row of a table. The following example should demonstrate my issue. What I expect is that the following formula is filling @2..@5 with "1" and in the last row, there is the sum of all "1". It is important to me to ignore the number of horizontal

Re: [O] org-depend: dependencies between TODO entries in different files

2016-08-25 Thread Karl Voit
* Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, Hello Nicolas, > Karl Voit <devn...@karl-voit.at> writes: > >> Function org-depend-block-todo uses org-find-entry-with-id (from >> org.el) which is using org-find-property which starts with >> (go

[O] org-depend: dependencies between TODO entries in different files

2016-08-25 Thread Karl Voit
Hi! On [1] LinuxFag asked why org-depend.el does not work with dependencies of headings in different Org-mode files. This is also a very annoying limitation to me since I have many Org-mode files in my org-agenda-files and I also don't want to limit myself to use dependencies within a single file

Re: [O] Should a human ever set the ID property? Should a human only ever set the CUSTOM_ID property?

2016-08-25 Thread Karl Voit
* Grant Rettke wrote: > Good evening, Hi! > Just learned about CUSTOM_ID property. I was not aware of it either until a couple of minutes ago. > It seems like if you want to define a custom identifier, then you > do it here and that identifier will get used

Re: [O] speed keys for plain lists?

2016-05-18 Thread Karl Voit
* Bill White wrote: > > Here's a sample of my second iteration. A poor man's database - still > pure orgmode and still plain text, but easily parsable: > > - main word|subordinate word, subdivided into grammatical relations A, B, C, > >- identification > - main

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-18 Thread Karl Voit
* Thomas S. Dye wrote: > > William Henney writes: >> >> It is documented at >> http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-python.html > > As of a few hours ago, when I added it. It probably wasn't there when > Karl looked. Thank you very much Thomas! I can not

[O] Division of Org documentation: Org manual and Worg (was: Mixing Python2 and Python3 blocks in one file)

2016-05-18 Thread Karl Voit
Good morning William, * William Henney <when...@gmail.com> wrote: > > On Tue, May 17, 2016 at 9:54 AM, Karl Voit <devn...@karl-voit.at> wrote: > >> * William Henney <when...@gmail.com> wrote: >> > >> > #+BEGIN_SRC python :python /Users/will/anaco

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-17 Thread Karl Voit
Hi William * William Henney <when...@gmail.com> wrote: > > On Sun, May 8, 2016 at 3:31 AM, Karl Voit <devn...@karl-voit.at> wrote: > > Python2 and Python3 are two different languages. Unfortunately, >> Org-mode only uses ~#+BEGIN_SRC python~ for both and uses >>

Re: [O] Tags management strategies

2016-05-17 Thread Karl Voit
* Martin Leduc wrote: > Hi ! Hi! > Tags are a very useful feature to filter information in org-mode. Not only in org-mode ;-)[1][2] > After few years of developing a system to organize my life with > org-mode, I realize that tags can become rather difficult to deal > with

Re: [O] speed keys for plain lists?

2016-05-17 Thread Karl Voit
* Grant Rettke wrote: > On Thu, May 12, 2016 at 12:12 PM, Bill White wrote: >> But I'm open to suggestions & discussion - now's the time to play around >> with formats to find the right balance between playing with words and >> slogging through

Re: [O] speed keys for plain lists?

2016-05-10 Thread Karl Voit
* Bill White wrote: > > Thank you all for the suggestions thus far. I'll attach the org file > I'm working with: Being curious on your motivation: why do you use only plain list items instead of headings with paragraphs or headings with plain lists? --

Re: [O] Advanced capture template using Elisp functions: void-function/void-variable

2016-05-09 Thread Karl Voit
Hi! Phil obviously did not want to embarrass me in public so he wrote me an email which pointed me to my simple error: a typo "promt" instead of "prompt" in the function name. * Karl Voit <devn...@karl-voit.at> wrote: > > However, when I am using this capture

[O] Advanced capture template using Elisp functions: void-function/void-variable

2016-05-09 Thread Karl Voit
Hi! I came across this great blog post[1] that introduced me to the idea of including Elisp functions to capture templates. With this trick, it is possible to re-use some user-entry. So far so good. However, when I am using this capture definition, I end up with lots of "void-function" and

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-08 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > Hi! > > Python2 and Python3 are two different languages. Unfortunately, > Org-mode only uses ~#+BEGIN_SRC python~ for both and uses > python-shell-interpreter to choose/switch the compiler. > > Shouldn't Org-mode int

[O] Mixing Python2 and Python3 blocks in one file

2016-05-08 Thread Karl Voit
Hi! Python2 and Python3 are two different languages. Unfortunately, Org-mode only uses ~#+BEGIN_SRC python~ for both and uses python-shell-interpreter to choose/switch the compiler. Shouldn't Org-mode introduce ~#+BEGIN_SRC python2~ and ~#+BEGIN_SRC python3~ to solve this issue in a clean way?

Re: [O] Capture template using variable

2016-05-05 Thread Karl Voit
* Karl Voit <devn...@karl-voit.at> wrote: > Hi Kaushal! > > * Kaushal Modi <kaushal.m...@gmail.com> wrote: >> >> Try >> >> (setq my-capture-template-next "* NEXT %?\n:PROPERTIES:\n:CREATED: >> %U\n:END:\n\n") >> >> (setq org-

Re: [O] Capture template using variable

2016-05-05 Thread Karl Voit
Hi Kaushal! * Kaushal Modi wrote: > > Try > > (setq my-capture-template-next "* NEXT %?\n:PROPERTIES:\n:CREATED: > %U\n:END:\n\n") > > (setq org-capture-templates > `( ; Note the backquote here!! > ("1" "first version with string" entry (file+headline >

Re: [O] Using source blocks instead of Ansible

2016-05-05 Thread Karl Voit
* William Denton wrote: > > Is anyone using Org for remote configuration management instead of a tool= > like=20 > Ansible? Yes. I do. A month ago, I had to set up three Xubuntu machines from scratch with a very similar setup. Not everything worked perfectly. Some steps

[O] Capture template using variable

2016-05-05 Thread Karl Voit
Hi! Why is capture template 2 not working ("Invalid capture template") and how can I fix it? Thanks! (setq my-capture-template-next "* NEXT %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n\n") (setq org-capture-templates '( ("1" "first version with string" entry (file+headline

Re: [O] Add caching to org-buffer-property-keys

2016-04-17 Thread Karl Voit
* Antoine R. Dumont wrote: > > Also, for information you could use format function. > It clarifies the prompt computation ^^: > > ``` > (defun org-read-entry-property-name () > "Read a property name from the current entry." > (let ((completion-ignore-case t) >

Re: [O] Screenshot of agenda: agenda is not shown in time

2016-04-16 Thread Karl Voit
* Michael Welle wrote: > Hello, Hi Michael! > great. May I ask what you are building? Are the screen dumps just for > documentation purpose or are you up to something interesting ;)? The purpose of this screenshot is to get a quick possibility to check my next four weeks

Re: [O] Screenshot of agenda: agenda is not shown in time

2016-04-15 Thread Karl Voit
* Michael Welle <mwe012...@gmx.net> wrote: > Hello, Hi Michael! > Karl Voit <devn...@karl-voit.at> writes: > >> I'd like to get a screenshot (PNG) of an agenda of mine by following >> snippet: [...] >> (sleep-for 1) > waits without updating the dis

[O] Screenshot of agenda: agenda is not shown in time

2016-04-13 Thread Karl Voit
Hi! I'd like to get a screenshot (PNG) of an agenda of mine by following snippet: (defun my-export-month-agenda-to-png-via-screenshot() (interactive) (org-agenda nil "n") ; generates agenda "n" (one month without todos) (if (my-buffer-exists "*Org Agenda*") (switch-to-buffer "*Org

Re: [O] Add caching to org-buffer-property-keys

2016-04-12 Thread Karl Voit
* Thierry Banel wrote: > Nice function! > Maybe a rewrite of (org-read-property-name) calling > (org-entry-properties) could speed up things. > (org-entry-properties) returns an assoc list of the local header properties. OK, great idea. I tried by myself (Elisp noob) and

Re: [O] Generate custom org-agenda

2016-04-11 Thread Karl Voit
* Adam Porter wrote: > I think you just need this: > > (org-agenda ARG ORG-KEYS RESTRICTION) You're right: I was not able to read the help of org-agenda by myself. This is, how it works: (org-agenda nil "n") Thanks! --

[O] Generate custom org-agenda

2016-04-10 Thread Karl Voit
Hi! org-agenda-list generates my default agenda. I can generate it via Elisp via org-agenda-list. What about a different agenda I already defined with org-agenda-custom-commands? Am I able to generate it via Elisp as well? The agenda dispatcher generates my custom agenda of choice via «n». Is

Re: [O] complex dates (ie schedule a class in a time range)

2016-03-03 Thread Karl Voit
* Xebar Saram wrote: > > hi all > > im having difficulty understanding how the complex date input works and > would appreciate any help. > What i want is to schedule a class i teach on a sunday from 09:00 to 11:00 > between 3/6/2016 to 1/7/2016 > > from what i can understand i

[O] Add caching to org-buffer-property-keys

2016-03-02 Thread Karl Voit
Hi! In short: can we get a cached org-buffer-property-keys please? My background story: I love using following function which gives me a neat functionality: I mark a string, press the keybinding shortcut, and gets asked which property should be replaced/filled with the marked region text.

Re: [O] Scanning for duplicate IDs of whole buffer when exporting a sub-heading

2016-02-11 Thread Karl Voit
* Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, Hi Nicolas! > Karl Voit <devn...@karl-voit.at> writes: > >>> Does your large file contain some [[id:...]] link? >> >> Yes. >> I am on maint, 75ee067410abf0ebab77b1b05d7dcfe2ddf53f4d. I

[O] Scanning for duplicate IDs of whole buffer when exporting a sub-heading

2016-02-10 Thread Karl Voit
Hi! I do have this behavior which basically prevents me from exporting from Org-mode. When I invoke export (LaTeX, HTML, ...) of a sub-heading within a large file, Org-mode seems to scan *all* of my agenda files (with approximately half a Million lines) at least for duplicate IDs. This takes

<    1   2   3   4   5   6   7   >