Hi,
just to throw yet another idea into the discussion:
Execute source blocks only after the user confirmed it ("Do you know
what you are doing (Type y, n, !, or SPC)?"). ! and SPC will add the
current org file to the variables org-babel-trusted-files and
org-babel-trusted-permanently-files (al
Also sprach Eric Schulte:
Štěpán Němec writes:
"Eric Schulte" writes:
Štěpán Němec writes:
[...]
How come some of your rewrites above still use the `org-babel-' prefix?
(As a side note, I don't see what Emacs guidelines suggest `ob-' is more
appropriate than `org-babel-', and I would
Hi Robin,
No, there is no possibility to return to a
higher level without a new headline.
The concept of book chapters and sections is
here more appropriate than code blocks.
Although this restricts somewhat the flexibility
of the outline structure, it is unlikely to be
changed in the future.
I
Hi Nick,
are you aware of the table editor? Type C-c ' (single quote) when the
point is somewhere in the table.
Greetings,
Stephan
Also sprach Nick:
ps I wonder if a long set of formulae like this could be split over several
+TBLFM lines? The answer seems to be no.
__
Hi Nathan,
when the lambda form is evaluated (when you press f6) the variable
shortcut-def doesn't exist any more.
The problem is that elisp doesn't support closures. See
this info page:
(elisp) Top > Variables > Variable Scoping > Extent
As a workaraound you can save the table in a global var
On 05/09/2010 04:26 PM, Also sprach Leo:
On 2010-05-09 12:43 +0100, Carsten Dominik wrote:
what do you think about C-M-f, C-M-b, C-M-n, C-M-p as alternative
bindings? These seem to make *a lot* of sense, because, as many here
have pointed out, they are so much better repeatable (Keep C-M- down
On 05/08/2010 07:46 PM, Scot Becker wrote:
I use those four combos, but not too often, and I think I'd prefer to
map them to CM-[npud].
same for me.
Stephan
On Sat, May 8, 2010 at 5:44 PM, Sebastian Rose wrote:
Carsten Dominik writes:
Hi everyone,
I am wondering:
How many of your are
Maybe one of these fits your needs:
#+begin_example
#+begin_quote
hth,
Stephan
Also sprach Jason McBrayer:
On Fri, Apr 30, 2010 at 2:18 PM, Robert Klein wrote:
is there a way to include generic source code in an org document?
I'm trying to put excerpts from configuration files into an org d
Sven Bretfeld wrote:
David Frascone writes:
How do I work with multiple files? Is there an easy way to jump back
and forth from them, if I start making one file for Bugs, one for
Escalations, one for projects, one for notes, etc?
You can use bookmarks, buffer-cycling, links or just define
or try C-c C-k (org-kill-note-or-show-branches) on a folded heading.
Bernt Hansen wrote:
Ali Tofigh writes:
Hi everyone,
I love the CONTENTS visibility state for my org documents. But when I
visit headings and use TAB to expand them revealing the text they
contain, I want to be able to fold
Sure... applied. I'll report back soon.
Thx,
Stephan
Also sprach Carsten Dominik:
> Hi Stefan,
>
> On Mar 1, 2010, at 5:06 PM, Stephan Schmitt wrote:
>
>> Hi,
>>
>> in this little example file:
>>
>> --8<---cut here--
Hi,
in this little example file:
--8<---cut here---start->8---
# -*- org-tags-column: -40; -*-
#+TAGS: foo(f) bar(b)
* testing indentation of tag :foo:
--8<---cut here---end--->8---
the value of org-tags-column is s
Hi Łukasz,
> Stephan Schmitt writes:
>
>> Also sprach Nathan Neff:
>>> For example, I have a headline, with the cursor at position:
>>>
>>> * Something
>>>
>>> And I want to add a text line under the heading, with proper indentation.
>
Hi Nathan,
put this in your dotemacs file:
(eval-after-load "org"
'(org-defkey org-mode-map (kbd "M-j")
(lambda () (interactive) (end-of-line) (org-return-indent
Hth,
Stephan
Also sprach Nathan Neff:
I'm aware of the M-Ret shortcut for inserting a new heading.
Is
Forgot to say: yes, I think it is
intentional that this does not work
before the first headline (properties
belong to headlines not to files)
But maybe it would make sense to allow
for "file properties".
Also sprach Stephan Schmitt:
> Hi Christian,
>
> you forgot the c
Hi Christian,
you forgot the colon after PROPERTY,
i.e. the following line at the beginning
of the buffer does work:
#+PROPERTY: myprop don't ask
(don't forget to refresh the buffer
setup by typing C-c C-c with the cursor
in that line).
Then the call
(org-entry-get (point) "myprop" t)
returns
---
contrib/babel/lisp/org-babel.el |7 ---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/contrib/babel/lisp/org-babel.el b/contrib/babel/lisp/org-babel.el
index 01b730d..7fe4302 100644
--- a/contrib/babel/lisp/org-babel.el
+++ b/contrib/babel/lisp/org-babel.el
@@ -300,9 +
Also sprach Matt Lundin:
> evita moreno writes:
>
>> I am a teacher trying to teach young people how to use org-mode for
>> writing. We have created a database with notes on literature review
>> outlined in org-mode in the following format:
>>
>> * jones2000
>> blah blah blah keyword1 keyword2
Hi Daniel,
Also sprach Daniel Martins:
BTW Is there an easy /practical way to convert holidays dates to number
of weeks?
the only way I'm aware of:
M-x calendar
navigate to the holiday date (type ? for the info node)
type p c (print the ISO date in the message area)
or take a look in your fi
Hello Evita,
you may want to try M-x org-occur:
org-occur is an interactive compiled Lisp function in `org.el'.
(org-occur regexp &optional keep-previous callback)
Make a compact tree which shows all matches of regexp.
The tree will show the lines where the regexp matches, and all higher
head
Hi Andrea,
Also sprach andrea:
> Carsten Dominik writes:
> ...
>> - Carsten
>
> I'm really sorry you're right, I should write a sort for this kind of
> questions, I always forget important details...
> Anyway
>
> emacs-version: "23.1.50.1"
> org-version: "6.33trans"
>
>
> The code for the h
Hi Alan,
seems what you're looking for is some relational database functionality, which
is not possible with org spreadsheets :-(
Find a possible solution for your problem in the attached org file. You will
need org-babel to execute the source blocks.
hth,
Stephan
Also sprach Alan Boud
An error was thrown when all tags of a headline are hidden by
org-agenda-hide-tags-regexp (in this case the function get-text-property
got nil as third argument)
---
lisp/org-agenda.el | 18 +-
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/lisp/org-agenda.el b/li
Carsten Dominik wrote:
>
> On Nov 26, 2009, at 7:40 PM, Dan wrote:
>> ... using the heading title to set the column width feels
>> wrong; the natural reaction is to think that that sort of metadata
>> should be in a property.
>
> OK, I hear you all pull the same string, that Org-mode files shoul
Hi Eric,
try this:
(progn
(org-cycle-agenda-files)
(when (not (and (bolp) (org-on-heading-p)))
(outline-previous-visible-heading 1)
(or (and (bolp) (org-on-heading-p))
(outline-next-visible-heading 1
Greetings,
Stephan
Also sprach Eric S Fraga
t would make sense to avoid
such a clash in the default map.
Best,
Stephan
Carsten Dominik wrote:
On Nov 13, 2009, at 8:16 PM, Stephan Schmitt wrote:
When you use it, please make a note when you notice additional
commands hat would be useful in this way - the keymap is far from full
Carsten Dominik wrote:
On Nov 13, 2009, at 6:48 PM, Eric S Fraga wrote:
Excellent addition! This makes org-mode even /more/ usable on systems
with very small keyboards (like smartphones etc). I'd been using
viper-mode to have single key movement in org-mode buffers but you've
not only made t
andrea Crotti wrote:
I would also like to check that the new org-file created is in a
subdirectory of the org-directories, how could that be easily done?
no warranty:
(string-match
(concat "^" (regexp-quote (expand-file-name org-directory)))
(expand-file-name default-directory))
Greetings,
Hi Andrea,
andrea Crotti wrote:
I added this function to my org conf
;; We also want to check that this is actually in base directories
(defun org-add-eventually()
"Adding a file to org-agenda when saved, with"
(interactive)
(if (string= major-mode "org-mode")
(org-agenda-file-to-fr
Thomas S. Dye wrote:
Aloha all,
I'm trying to comprehend the possibilities created by org-babel, and
would like to draw on the experience of others if I could.
I recently discovered the buffer created by :session. In my case, this
is an R session that I am building to track the data collec
now if not.
- Carsten
On Oct 29, 2009, at 4:49 PM, Stephan Schmitt wrote:
Hi,
I noticed the same problem. However, the function
org-src-switch-to-
buffer (with the breaking case-form) runs without problems when it
is not compiled.
hth,
Stephan
Gregory J. Grubbs wrote:
When running
Hi Stefano,
I don't know if this helps, but did you try
(global-unset-key (kbd "C-c /"))
in your init file (before org-mode is loaded)?
Greetings,
Stephan
Stefano Zacchiroli wrote:
Remember to cover the basics, that is, what you expected to happen and
what in fact did happen. You don
Hi,
I noticed the same problem. However, the function org-src-switch-to-buffer
(with the breaking case-form) runs without problems when it is not compiled.
hth,
Stephan
Gregory J. Grubbs wrote:
When running C-c ' (org-edit-special) on the file attached to
[[gnus:gmane.emacs.orgmode#
Hi,
the following line (1398) in org-agenda.el
(org-defkey org-agenda-mode-map "\\d" 'org-agenda-show-scroll-down)
causes the following error when loading the file:
org-defkey: Key sequence \ d starts with non-prefix key \
Greetings,
Stephan
Emacs : GNU Emacs 23.1.1 (i686-pc-linux-
co
>
>
> ___
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
--
Step
Hi Nicolas,
I think org-clone-subtree-with-time-shift was implemented exactly for this use
case:
(org-clone-subtree-with-time-shift n &optional shift)
Clone the task (subtree) at point n times.
The clones will be inserted as siblings.
In interactive use, the user will be pr
bar tomas wrote:
Thanks very much for your reply and your help.
I also think in terms of containers, but I was trying to figure out if
it is possible to have a container that has both subcontainers and
content that is not contained in a subcontainer.
For instance, in XML, this is the notion of a
Hi Marco,
take a look at section 3.5.1 of the org-mode info
in *scratch*:
(info "(org)References") C-x C-e
in particular at the last section of this page.
HTH,
Stephan
Marko Schütz wrote:
Dear All,
I have two tables in a file, each being summed separately. Now I'd
like to have a th
thx! for both fix and explanation
Stephan
Carsten Dominik wrote:
> Hi Stephan,
>
> On Oct 7, 2009, at 10:25 AM, Stephan Schmitt wrote:
>
>> Hello Carsten,
>>
>> when I clock in/out from the agenda (using I/O) the function
>> 'org-format-agenda
Hello Carsten,
when I clock in/out from the agenda (using I/O) the function
'org-format-agenda-item' is called with a non-nil 'noprefix'
argument. This leads to an error because the variable
'thecategory' is nil in line 4610 of file org-agenda.el.
I would supply a patch if I understood the meani
Hi Tassilo,
one solution would be:
| Datum| Anzahlung | Sonderzahlung | Monatsrate | Restbetrag |
|--+---+---++|
| | | || 79000 |
|--+---+-
x27;s setup, I can get the block expanded using C-i, but the
>> key itself is bound to org-cycle. When I say
>>
>> C-h c
>>
>> emacs says "", whereas if I say
>>
>> C-h c C-i
>>
>> emacs says "TAB". In an emacs without
Hi Eric,
apropos require: if the result of an emacs-lisp source block is a list, a
function from org-table.el is needed (orgtbl-to-orgtbl, or so) which is not
loaded by default. In other words, somewhere a (require org-table) is missing.
Nice tool, btw,
Stephan
Eric Schulte wrote:
Hello,
if you use magit mode for your git repositories and want to
create/follow links to magit status buffers (showing the current branch) like
this:
[[magit:/usr/local/emacs/org-mode/][/usr/local/emacs/org-mode/]]
you may want to use this code snippet:
--8<---cut here
>From 8e59b595b855f7cd9377598219a7b8dbb22e41f6 Mon Sep 17 00:00:00 2001
From: Stephan Schmitt
Date: Thu, 13 Aug 2009 11:19:30 +0200
Subject: [PATCH] added "MACRO" to org-additional-option-like-keywords
'#+MACRO' can now be auto-completed using M-Tab
---
lisp/org.el |2
Stephan wrote:
Stephan wrote:
Andrew wrote:
I'm afraid I can't quite wrap my head around this puzzle. I have a
little table:
| Budget | 640 | 640 |
| Some expense | -165 | 475 |
#+TBLFM: $3=$LR3+$2
So col C is supposed to add the previous line's col C to the current
line's col B.
Stephan wrote:
Andrew wrote:
I'm afraid I can't quite wrap my head around this puzzle. I have a
little table:
| Budget | 640 | 640 |
| Some expense | -165 | 475 |
#+TBLFM: $3=$LR3+$2
So col C is supposed to add the previous line's col C to the current
line's col B.
However, it seem
Andrew wrote:
I'm afraid I can't quite wrap my head around this puzzle. I have a little table:
| Budget | 640 | 640 |
| Some expense | -165 | 475 |
#+TBLFM: $3=$LR3+$2
So col C is supposed to add the previous line's col C to the current
line's col B.
However, it seems that $LR3 is ref
Thanks!
One of these too-obvious-bugs...
Greetings
Carsten Dominik wrote:
> There is a colon missing after #+macro
>
> HTH
>
> - Carsten
>
> On Aug 12, 2009, at 12:19 PM, Stephan Schmitt wrote:
>
>> Hello,
>>
>> using this minimal s
Hello,
using this minimal setup:
--8<---cut here---start->8---
(add-to-list 'load-path "/usr/local/emacs/org-mode/lisp")
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(require 'org-install)
--8<---cut here---end--->
Andreas Burtzlaff wrote:
> On Thu, 23 Jul 2009 02:29:30 +0200 meingbg wrote:
>> > | a | b | c |
>> > |---++---|
>> > | a | 2 | 2 |
>> > | b | 3 | 7 |
>> > | c | -3 | 4 |
>> > | d | 5 | 9 |
>> > #+TBLFM: $3=...@-1::@2$3=$2
>
> If @2$3 is manually set to 2 in the table, then the formulas p
Hello,
evaluating a source-block with org-babel raised an error about 'looking-at-p'
not defined.
Best,
Stephan
diff --git lisp/org-babel.el lisp/org-babel.el
index a6345eb..e2a24eb 100644
--- lisp/org-babel.el
+++ lisp/org-babel.el
@@ -454,7 +454,7 @@ relies on `org-babel-insert-result'.
> > (eval-after-load 'org
> > '(progn
> > ;;^--HERE.
> > (add-to-list 'org-todo-setup-filter-hook
> > #'org-choose-setup-filter)
> > (add-to-list 'org-todo-get-default-hook
> > #'org-choose-get-default-mark)
> > (add-to-list 'org-trigger-hook
> >
Here's my customization:
in todo.org:
#+STARTUP: content
#+STARTUP: lognotedone
#+SEQ_TODO: TODO(t@) STARTED(s) WAITING(w@/@) DELEGATED(d@) | DONE(D@)
DEFERRED(F@) CANCELLED(C@)
#+SEQ_TODO: APPT(a) RESCHEDULE(r@) | APPTDONE(A@) APPTCANCELLED(P@)
in .emacs:
(custom-set-variables
'(org-agenda-file
good alternatives - but maybe we are obliged to keep
> the old convention
>
> - Carsten
>
> On Dec 18, 2008, at 4:01 PM, Stephan Schmitt wrote:
>
>> Hello,
>>
>> the reference to the last row @0 led to incompatible changes:
>>
>> * sprea
Hello,
the reference to the last row @0 led to incompatible changes:
* spreadsheet: relative reference to same row
(using Org mode version 6.15d)
The Org mode version 6.15 introduced @0 as a reference to the last
row for spreadsheet (org-table) formulas. This leads to problems if
you us
Eric Schulte wrote:
On Tuesday, August 26, at 14:36, Sebastian Rose wrote:
> The buffer is modified after C-M-g and emacs asks if I want to save it.
That is certainly something to figure out.
This happens already if you press tab with the cursor
located inside a table, so this is probably a
Hi Scott,
for me it works like intended.
Perhaps you're confusing the keystrokes:
M-S- does not mean
Meta-Shift-s
but
Meta-Shift-
i.e. the capital S denotes the Shift key.
Then you just have to press two keys with the left hand...
hth,
Stephan
[EMAIL PROTECTED] wrote:
Date: Sat, 16 A
Nick Dokos wrote:
Chris Randle wrote:
I had problems getting date arithmetic to work in tables. I posted my
findings and solutions here:
http://article.gmane.org/gmane.emacs.orgmode/6536/
Don't know if it will fix your problem (too lazy to try!) but I suspect
it will.
It did! I don't underst
rsten
On Jul 17, 2008, at 12:27 AM, Stephan Schmitt wrote:
Hello,
is there an easy way to export an org-table to an elisp data
structure, e.g. a list of lists or an array of arrays? Or, to be
more exact, to get this data structure as a return value from a
function like orgtbl-to-elisp.
Hello,
is there an easy way to export an org-table to an elisp data
structure, e.g. a list of lists or an array of arrays? Or,
to be more exact, to get this data structure as a return
value from a function like orgtbl-to-elisp.
I was looking at the org-table-export function, but found
only
Hello,
if you're annoyed by slow formula evaluation in tables
(org version 5.13h), kill (or comment out) line 9783 in
org.el:
> (message "form %s" f) (sit-for 1)
best regards,
Stephan
___
Emacs-orgmode mailing list
Remember: use `Reply All' t
Hi,
thanks for org-mode!
I found a bug org-mode 5.11b.
Carsten Dominik wrote:
>- The function `org-remember' can now be called with a
> template selection key as argument. This helps to make key
> bindings that go directly to a specific template without
> being prompted for a
Hello,
I think there are two possible interpretations of 'priority', /importance/ and
/urgency/.
It is up to the user which is preferred. You propose the interpretation as
urgency: "I have to do that thing today/this week/sometime". Importance may
come into play with your daily decision, w
hello,
i use org-mode 4.67 in emacs 21.4.1 on linux and
get a hang-up when i try to follow an internal
link (C-c C-o, Mouse-2).
simple test case:
[[foo%20is%20explained%20here][foo]]
foo is explained here.
(end test case)
emacs seems to be trapped in an infinite loop
somewhere in org-sea
hello,
i just downloaded org-mode 4.64 and
got an error when i tried to open
the org agenda buffer (C-c a a).
i added line 12488 from version 4.63,
that fixed the problem:
org-4.64 $ diff org.el org.el~
12488,12492c12488,12490
< (when (boundp 'buffer-substring-filters)
< (org-set-local 'b
hello,
i just downloaded org-mode 4.50 and
got an error when i tried to follow
an internal link (C-c C-o, Mouse-2).
i traced the problem back to following
function in org.el:
(defun org-file-remote-p (file)
"Test whether FILE specifies a location on a remote system.
Return non-nil if the locat
67 matches
Mail list logo