From 09ae8a0b1d388fbf54588f90748ef5cfcb99b058 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sat, 31 Jul 2010 18:19:11 +0200 Subject: [PATCH] Add restriction (un)lock to `org-speed-commands-default'. You can now use "<" and ">" as speedy key commands for org-agenda-set-restriction-lock and org-agenda-remove-restriction-lock. --- lisp/org.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/org.el b/lisp/org.el index 41c3e90c6..b876ad5b7 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -16356,6 +16356,8 @@ BEG and END default to the buffer boundaries." ("Misc") ("o" . org-open-at-point) ("?" . org-speed-command-help) + ("<" . (org-agenda-set-restriction-lock 'subtree)) + (">" . (org-agenda-remove-restriction-lock)) ) "The default speed commands.")