emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* s in agenda saves all org-mode buffers, does not mark entry for bulk action
@ 2010-02-04 23:01 Markus Heller
  2010-02-04 23:40 ` Nick Dokos
  2010-02-04 23:41 ` Tyler Smith
  0 siblings, 2 replies; 8+ messages in thread
From: Markus Heller @ 2010-02-04 23:01 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.

In any agenda view, pressing s saves all org mode buffers and does not 
mark the item for bulk action.  I went through my .emacs and couldn't 
find anything that looked like re-defining a key binding to configure 
this behaviour.

How can I find out where this faulty behavior comes from?  I don't get 
any error messages ...

Thanks
Markus

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

* Re: s in agenda saves all org-mode buffers, does not mark entry for bulk action
  2010-02-04 23:01 s in agenda saves all org-mode buffers, does not mark entry for bulk action Markus Heller
@ 2010-02-04 23:40 ` Nick Dokos
  2010-02-05  0:57   ` Markus Heller
  2010-02-04 23:41 ` Tyler Smith
  1 sibling, 1 reply; 8+ messages in thread
From: Nick Dokos @ 2010-02-04 23:40 UTC (permalink / raw)
  To: Markus Heller; +Cc: emacs-orgmode

Markus Heller <hellerm2@gmail.com> wrote:


> I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.
> 
> In any agenda view, pressing s saves all org mode buffers and does not
> mark the item for bulk action.  I went through my .emacs and couldn't
> find anything that looked like re-defining a key binding to configure
> this behaviour.
> 
> How can I find out where this faulty behavior comes from?  I don't get
> any error messages ...
> 

I don't think there is faulty behavior here - if you do C-h m in the
agenda buffer, you get (at least, *I* get) these bindings:

B               org-agenda-bulk-action
...
U               org-agenda-bulk-remove-all-marks
...
m               org-agenda-bulk-mark
...
s               org-save-all-org-buffers
...
u               org-agenda-bulk-unmark

I guess you are looking for the m key?

HTH,
Nick

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

* Re: s in agenda saves all org-mode buffers, does not mark entry for bulk action
  2010-02-04 23:01 s in agenda saves all org-mode buffers, does not mark entry for bulk action Markus Heller
  2010-02-04 23:40 ` Nick Dokos
@ 2010-02-04 23:41 ` Tyler Smith
  2010-02-05  0:08   ` Markus Heller
  2010-02-05  5:43   ` [PATCH] " Noorul Islam K M
  1 sibling, 2 replies; 8+ messages in thread
From: Tyler Smith @ 2010-02-04 23:41 UTC (permalink / raw)
  To: emacs-orgmode

Markus Heller <hellerm2@gmail.com> writes:

> I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.
>
> In any agenda view, pressing s saves all org mode buffers and does not
> mark the item for bulk action. I went through my .emacs and couldn't
> find anything that looked like re-defining a key binding to configure
> this behaviour.
>
> How can I find out where this faulty behavior comes from? I don't get
> any error messages ...

I think that's a bug in the documentation. `m' is the default key for
marking items for bulk action, hard-coded into org-agenda.el. The info
page lists s as the key for both `save all org buffers' and `mark for bulk
action'.

Tyler

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

* Re: s in agenda saves all org-mode buffers, does not mark entry for bulk action
  2010-02-04 23:41 ` Tyler Smith
@ 2010-02-05  0:08   ` Markus Heller
  2010-02-05  0:57     ` Tyler Smith
  2010-02-05  5:43   ` [PATCH] " Noorul Islam K M
  1 sibling, 1 reply; 8+ messages in thread
From: Markus Heller @ 2010-02-05  0:08 UTC (permalink / raw)
  To: emacs-orgmode

On 2/4/2010 3:41 PM, Tyler Smith wrote:
> Markus Heller<hellerm2@gmail.com>  writes:
>
>> I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.
>>
>> In any agenda view, pressing s saves all org mode buffers and does not
>> mark the item for bulk action. I went through my .emacs and couldn't
>> find anything that looked like re-defining a key binding to configure
>> this behaviour.
>>
>> How can I find out where this faulty behavior comes from? I don't get
>> any error messages ...
>
> I think that's a bug in the documentation. `m' is the default key for
> marking items for bulk action, hard-coded into org-agenda.el. The info
> page lists s as the key for both `save all org buffers' and `mark for bulk
> action'.

Ah, `m' does the trick!  Thanks for pointing this out, Tyler!

One more question: How can I access the info list you're talking about?

Thanks
Marku

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

* Re: s in agenda saves all org-mode buffers, does not mark entry for bulk action
  2010-02-04 23:40 ` Nick Dokos
@ 2010-02-05  0:57   ` Markus Heller
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Heller @ 2010-02-05  0:57 UTC (permalink / raw)
  To: emacs-orgmode

On 2/4/2010 3:40 PM, Nick Dokos wrote:
> Markus Heller<hellerm2@gmail.com>  wrote:
>
>
>> I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.
>>
>> In any agenda view, pressing s saves all org mode buffers and does not
>> mark the item for bulk action.  I went through my .emacs and couldn't
>> find anything that looked like re-defining a key binding to configure
>> this behaviour.
>>
>> How can I find out where this faulty behavior comes from?  I don't get
>> any error messages ...
>>
>
> I don't think there is faulty behavior here - if you do C-h m in the
> agenda buffer, you get (at least, *I* get) these bindings:
>
> B               org-agenda-bulk-action
> ...
> U               org-agenda-bulk-remove-all-marks
> ...
> m               org-agenda-bulk-mark
> ...
> s               org-save-all-org-buffers
> ...
> u               org-agenda-bulk-unmark

Hi Nick,

I was looking for the `m' key.  I do get the same output as you.  As 
Tyler pointed out, this seems to be a bug in the docu.

Thanks and Cheers
Markus

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

* Re: s in agenda saves all org-mode buffers, does not mark entry for bulk action
  2010-02-05  0:08   ` Markus Heller
@ 2010-02-05  0:57     ` Tyler Smith
  0 siblings, 0 replies; 8+ messages in thread
From: Tyler Smith @ 2010-02-05  0:57 UTC (permalink / raw)
  To: emacs-orgmode

Markus Heller <hellerm2@gmail.com> writes:

> On 2/4/2010 3:41 PM, Tyler Smith wrote:
>> Markus Heller<hellerm2@gmail.com>  writes:
>>
>>> I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.
>>>
>>> In any agenda view, pressing s saves all org mode buffers and does not
>>> mark the item for bulk action. I went through my .emacs and couldn't
>>> find anything that looked like re-defining a key binding to configure
>>> this behaviour.
>>>
>>> How can I find out where this faulty behavior comes from? I don't get
>>> any error messages ...
>>
>> I think that's a bug in the documentation. `m' is the default key for
>> marking items for bulk action, hard-coded into org-agenda.el. The info
>> page lists s as the key for both `save all org buffers' and `mark for bulk
>> action'.
>
> Ah, `m' does the trick!  Thanks for pointing this out, Tyler!
>
> One more question: How can I access the info list you're talking about?
>

`C-h i' will open the info system, which will give you a window listing
all the help files for your Emacs installation. Move the cursor to `Org
Mode' and press enter. Alternatively, press m org<tab><return>. That
brings you to the menu for the org-info manual. The info regarding the
agenda view is in section 10, titled, funnily enough, `Agenda Views'.

Cheers,

Tyler

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

* [PATCH] s in agenda saves all org-mode buffers, does not mark entry for bulk action
  2010-02-04 23:41 ` Tyler Smith
  2010-02-05  0:08   ` Markus Heller
@ 2010-02-05  5:43   ` Noorul Islam K M
  2010-02-05  6:13     ` Carsten Dominik
  1 sibling, 1 reply; 8+ messages in thread
From: Noorul Islam K M @ 2010-02-05  5:43 UTC (permalink / raw)
  To: Tyler Smith; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 789 bytes --]

Tyler Smith <tyler.smith@eku.edu> writes:

> Markus Heller <hellerm2@gmail.com> writes:
>
>> I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.
>>
>> In any agenda view, pressing s saves all org mode buffers and does not
>> mark the item for bulk action. I went through my .emacs and couldn't
>> find anything that looked like re-defining a key binding to configure
>> this behaviour.
>>
>> How can I find out where this faulty behavior comes from? I don't get
>> any error messages ...
>
> I think that's a bug in the documentation. `m' is the default key for
> marking items for bulk action, hard-coded into org-agenda.el. The info
> page lists s as the key for both `save all org buffers' and `mark for bulk
> action'.

Minor documentation fix.

Thanks and Regards
Noorul

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: org.texi.diff --]
[-- Type: text/x-diff, Size: 305 bytes --]

diff --git a/doc/org.texi b/doc/org.texi
index 9acbb9e..ec9be91 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -7626,7 +7626,7 @@ Jump to the running clock in another window.
 @cindex remote editing, bulk, from agenda
 
 @kindex m
-@item s
+@item m
 Mark the entry at point for bulk action.
 
 @kindex u

[-- Attachment #3: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: [PATCH] s in agenda saves all org-mode buffers, does not mark entry for bulk action
  2010-02-05  5:43   ` [PATCH] " Noorul Islam K M
@ 2010-02-05  6:13     ` Carsten Dominik
  0 siblings, 0 replies; 8+ messages in thread
From: Carsten Dominik @ 2010-02-05  6:13 UTC (permalink / raw)
  To: Noorul Islam K M; +Cc: Tyler Smith, emacs-orgmode

Applied, thanks.

- Carsten

On Feb 5, 2010, at 6:43 AM, Noorul Islam K M wrote:

> Tyler Smith <tyler.smith@eku.edu> writes:
>
>> Markus Heller <hellerm2@gmail.com> writes:
>>
>>> I'm using org-mode version 6.34a on Windoze XP end emacs 23.1.1.
>>>
>>> In any agenda view, pressing s saves all org mode buffers and does  
>>> not
>>> mark the item for bulk action. I went through my .emacs and couldn't
>>> find anything that looked like re-defining a key binding to  
>>> configure
>>> this behaviour.
>>>
>>> How can I find out where this faulty behavior comes from? I don't  
>>> get
>>> any error messages ...
>>
>> I think that's a bug in the documentation. `m' is the default key for
>> marking items for bulk action, hard-coded into org-agenda.el. The  
>> info
>> page lists s as the key for both `save all org buffers' and `mark  
>> for bulk
>> action'.
>
> Minor documentation fix.
>
> Thanks and Regards
> Noorul
> diff --git a/doc/org.texi b/doc/org.texi
> index 9acbb9e..ec9be91 100644
> --- a/doc/org.texi
> +++ b/doc/org.texi
> @@ -7626,7 +7626,7 @@ Jump to the running clock in another window.
> @cindex remote editing, bulk, from agenda
>
> @kindex m
> -@item s
> +@item m
> Mark the entry at point for bulk action.
>
> @kindex u
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten

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

end of thread, other threads:[~2010-02-05  6:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-04 23:01 s in agenda saves all org-mode buffers, does not mark entry for bulk action Markus Heller
2010-02-04 23:40 ` Nick Dokos
2010-02-05  0:57   ` Markus Heller
2010-02-04 23:41 ` Tyler Smith
2010-02-05  0:08   ` Markus Heller
2010-02-05  0:57     ` Tyler Smith
2010-02-05  5:43   ` [PATCH] " Noorul Islam K M
2010-02-05  6:13     ` Carsten Dominik

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).