emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Propagating Workflow States
@ 2014-03-30 22:03 Esben Stien
  2014-03-31  5:39 ` Bastien
  2014-03-31 11:51 ` Nicolas Richard
  0 siblings, 2 replies; 6+ messages in thread
From: Esben Stien @ 2014-03-30 22:03 UTC (permalink / raw)
  To: emacs-orgmode


I have this entry in an org file:

***** MAIL 1337445 foo

Now, if I do C-RET after this entry, I get a new one with the workflow
state the same, MAIL, so somehow the workflow state from the previous
entry propagates to the next and new one. 

Any way to disable this?; it should start with TODO.

-- 
Esben Stien is b0ef@e     s      a             
         http://www. s     t    n m
          irc://irc.  b  -  i  .   e/%23contact
           sip:b0ef@   e     e 
           jid:b0ef@    n     n

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Propagating Workflow States
  2014-03-30 22:03 Propagating Workflow States Esben Stien
@ 2014-03-31  5:39 ` Bastien
  2014-03-31 18:12   ` Esben Stien
  2014-03-31 11:51 ` Nicolas Richard
  1 sibling, 1 reply; 6+ messages in thread
From: Bastien @ 2014-03-31  5:39 UTC (permalink / raw)
  To: Esben Stien; +Cc: emacs-orgmode

Hi Esben,

Esben Stien <b0ef@esben-stien.name> writes:

> I have this entry in an org file:
>
> ***** MAIL 1337445 foo
>
> Now, if I do C-RET after this entry, I get a new one with the workflow
> state the same, MAIL, so somehow the workflow state from the previous
> entry propagates to the next and new one.

I guess you meant C-S-RET, bound to `org-insert-todo-heading' not
C-RET, boud to `org-insert-heading'.

> Any way to disable this?; it should start with TODO.

Just use C-RET or track what's wrong in your config.

-- 
 Bastien

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Propagating Workflow States
  2014-03-30 22:03 Propagating Workflow States Esben Stien
  2014-03-31  5:39 ` Bastien
@ 2014-03-31 11:51 ` Nicolas Richard
  2014-03-31 18:13   ` Esben Stien
  1 sibling, 1 reply; 6+ messages in thread
From: Nicolas Richard @ 2014-03-31 11:51 UTC (permalink / raw)
  To: Esben Stien; +Cc: emacs-orgmode

Esben Stien <b0ef@esben-stien.name> writes:
> Any way to disable this?; it should start with TODO.

If I'm reading the docstring correctly, try C-u C-S-RET

HTH,

-- 
Nico.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Propagating Workflow States
  2014-03-31  5:39 ` Bastien
@ 2014-03-31 18:12   ` Esben Stien
  0 siblings, 0 replies; 6+ messages in thread
From: Esben Stien @ 2014-03-31 18:12 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

Bastien <bzg@gnu.org> writes:

> I guess you meant C-S-RET, bound to `org-insert-todo-heading' not
> C-RET, boud to `org-insert-heading'.

Sorry, what I meant was M-RET. Actually M-RET and M-S-RET returns the
same when I do M-x describe-key: 

C-M-j runs the command org-insert-todo-heading, which is an
interactive compiled Lisp function in `org.el'.

>> Any way to disable this?; it should start with TODO.
> Just use C-RET or track what's wrong in your config.

Hmm, yeah, easier said than done;). I do M-S-RET below this line: 

*** MAIL foo

.. and I get

*** MAIL 

, instead of: 

*** TODO 

, but if I do M-S-RET below a TOTO heading, I get a TODO.

So there's something that "remembers" the last state. 

Weird..

-- 
Esben Stien is b0ef@e     s      a             
         http://www. s     t    n m
          irc://irc.  b  -  i  .   e/%23contact
           sip:b0ef@   e     e 
           jid:b0ef@    n     n

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Propagating Workflow States
  2014-03-31 11:51 ` Nicolas Richard
@ 2014-03-31 18:13   ` Esben Stien
  2014-03-31 19:49     ` Nicolas Richard
  0 siblings, 1 reply; 6+ messages in thread
From: Esben Stien @ 2014-03-31 18:13 UTC (permalink / raw)
  To: Nicolas Richard; +Cc: emacs-orgmode

Nicolas Richard <theonewiththeevillook@yahoo.fr> writes:

>> Any way to disable this?; it should start with TODO.
> If I'm reading the docstring correctly, try C-u C-S-RET

C-S-RET returns: 

C-j runs the command org-return-indent, which is an interactive
compiled Lisp function in `org.el'.

-- 
Esben Stien is b0ef@e     s      a             
         http://www. s     t    n m
          irc://irc.  b  -  i  .   e/%23contact
           sip:b0ef@   e     e 
           jid:b0ef@    n     n

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Propagating Workflow States
  2014-03-31 18:13   ` Esben Stien
@ 2014-03-31 19:49     ` Nicolas Richard
  0 siblings, 0 replies; 6+ messages in thread
From: Nicolas Richard @ 2014-03-31 19:49 UTC (permalink / raw)
  To: Esben Stien; +Cc: Nicolas Richard, emacs-orgmode

Esben Stien <b0ef@esben-stien.name> writes:
> C-S-RET returns: 
>
> C-j runs the command org-return-indent, which is an interactive
> compiled Lisp function in `org.el'.

Ah you're using non-GUI emacs. That's ok, just use C-u (that is called a
prefix argument) before whatever key chord you hit to do what you
described.

-- 
Nico.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-03-31 19:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-30 22:03 Propagating Workflow States Esben Stien
2014-03-31  5:39 ` Bastien
2014-03-31 18:12   ` Esben Stien
2014-03-31 11:51 ` Nicolas Richard
2014-03-31 18:13   ` Esben Stien
2014-03-31 19:49     ` Nicolas Richard

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).