[O] org+cua "C-c ;" on selected region

2011-07-04 Thread Martin Gross
Hello I am sorry if this has been answered before, but my google research was not very successful. When the cua-mode is enabled and I try to select a region to comment it via "C-c ;" the selection is just copied, but not commented. With auctex-mode I use "C-c C-c ;" to do this and it works well.

[O] error capturing with emacs 24

2012-10-02 Thread Martin Gross
Dear helpers, trying to capture with Emacs 24.1.50.1 (i686-pc-linux-gnu, GTK+ Version 2.22.0) the same way I have done successfully with Emacs 23, I get an error. In both cases I am using org-mode 7.7. The relevant lines in my .emacs I suppose are: (custom-set-variables '(org-capture-templates

Re: [O] error capturing with emacs 24

2012-10-09 Thread Martin Gross
> Dear Martin, > > You colud update Org In deed, that worked. Grazie mille!

[O] sum up variables from different org-mode tables

2012-11-16 Thread Martin Gross
Dear helpers, I have a big file where I enter incomings and outgoings of book exchanges with different institutions: * Institution A | | In | # | € | Out | # | € | |---+-++-+-++-| | | Title P | 1 | 45 | Title A | 1 | 15 | | |

Re: [O] sum up variables from different org-mode tables

2012-11-19 Thread Martin Gross
Dear Michael, thank you very much, this is what I was looking for. I myself supposed the answer should be related to "remote references", but was not sure how to use them. Just one point is not yet optimum to me: I do not have just 2 tables, but hundreds. It would be hard and not very clean to

Re: [O] sum up variables from different org-mode tables

2012-11-21 Thread Martin Gross
Dear Michael > if it’s just summing up disjoint sets hierarchically you might ... Thank you very much again for your efforts. Unfortunately this would not solve my problem neither. On the one hand my tables are on different entry levels (*, **, ***, etc.) and on the other I am afraid I need a m

Re: [O] sum up variables from different org-mode tables

2012-11-22 Thread Martin Gross
Dear Eric, I was sure something like that could be done. Thank for the example. Being a layman (not a programmer) I will need a time study it. Sincerely, Martin

[O] calculate frequencies in a table with calc

2012-12-25 Thread Martin Gross
Dear helpers, on the web I found a formula to get frequencies which I modified to my needs, but it does not yet work well. An example: |-| | [1, 2, 3, 4, 5] | | [6, 7, 8] | | [9, 10, 11, 12, 12] | | 12, 12 | |-| | 15

Re: [O] calculate frequencies in a table with calc

2012-12-27 Thread Martin Gross
Dear Achim, > Try @6$1=vcount(map(,vflat(@I..@II))) Excellent. Thank you very much! Sincerely, Martin

[O] org-contacts search case insensitive

2014-11-17 Thread Martin Gross
Dear helpers, I really like the idea of having an address book based on org-mode, but I don‘t understand why org-contacts searches case sensitive, because at least to me this makes it more difficult to find what I am looking for (I‘am searching an entry about a conference. But how did I write "co

Re: [O] org-contacts search case insensitive

2014-11-18 Thread Martin Gross
> > I am on Org-mode version 8.3beta and my org-contacts search is case > insensitive. Indeed! Thank you very much.

[O] Get counting of items

2014-04-01 Thread Martin Gross
Dear helpers, I would like to get a counting of the first level items in a buffer (or even better in a region). Since I‘m not a programmer I tried this, which doesn‘t work: (defun org-items-counting () "Print a message with the counting of the first level outline items in the current buffer"

Re: [O] Get counting of items

2014-04-03 Thread Martin Gross
Dear Thorsten > Here is a generalised form: > > #+begin_src emacs-lisp > (defun count-org-items (&optional level operator match scope skip) > "Print a counting of outline items." > (interactive) > (let ((headline-level (or level 1)) ; 1-8 > (op (or operator '=))) ; '>= '<=