On Dec 29, 2007 5:28 AM, Rainer Stengele <[EMAIL PROTECTED]> wrote:
> Many times I am writing a protocol which needs to have timestamped
> entries (see Skype or Yahoo Messenger chats) like:
>
> ...
> - [2007-12-29 Sa 00:48] blah
> - [2007-12-29 Sa 00:56] blub
> ...
>
> For that I have to enter:
>
>
Many times I am writing a protocol which needs to have timestamped
entries (see Skype or Yahoo Messenger chats) like:
...
- [2007-12-29 Sa 00:48] blah
- [2007-12-29 Sa 00:56] blub
...
For that I have to enter:
M-
C-u C-c !
I would really like it having a key chord giving me the next line wit
On Dec 28, 2007 9:12 PM, Hugo Schmitt <[EMAIL PROTECTED]> wrote:
> You can easily write a couple more lines so that the branch that will
> be opened is configured on the top of the file itself.
Or you can put a call like '(my-open-some-branch "Finances")' directly
in the org file using the same em
Here's what I get:
$ make
emacs -batch -q -eval "(add-to-list (quote load-path) \".\")" -f
batch-byte-compile org.el
In toplevel form:
org.el:12977:10:Error: Wrong type argument: listp, t
make: *** [org.elc] Error 1
I am using Emacs 23.0.50.1 from CVS, Nov 28, 2007.
___
Hello.
Something like this already works fine for me:
(add-hook 'org-mode-hook 'my-open-some-branch)
(defun my-open-some-branch ()
"Start org file with some particular branch opened."
(org-overview)
(save-excursion
(search-forward "Finances")
(org-show-entry)))
You can easily write a co
I'm sure that you could write a function that you could call from an
org-mode hook to do an occur or something like that. Unfortunately, I
don't use org-occur much and the hook I think you need is in my .emacs
at work. Given the right org-mode search function and the name of the
hook, I think it
hi,
I just returned to org after a short absence.
I got the following error report when, in column mode, I tried to widen
a column
,
| Wrong type argument: listp, #
| call-interactively: Wrong type argument: number-or-marker-p, nil
| Mark activated
`
(> command)
org mode version is 5.
Carsten Dominik gmail.com> writes:
> Hi Jose,
>
(snip)
>
> In 5.17, you will be able to do this:
>
> (setq org-refile-use-outline-path t)
>
> The refile targets will then be represented by "/"-separated
> paths just like you suggested.
>
> Thanks.
>
> - Carsten
Hi Carsten,
First of