emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Allow S-left/S-right editing in indented clocktables
@ 2011-06-13 17:00 Achim Gratz
  2011-06-15  6:55 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Achim Gratz @ 2011-06-13 17:00 UTC (permalink / raw)
  To: emacs-orgmode

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


It wasn't possible to use S-up/down/left/right on the clocktable BEGIN
line when the whole table was indented.  Interestingly enough calling
the function directly would work, it turned out to be a regexp in org.el
that was still pinned to bol.  There was a second one further down that
is used to recognize dynamic blocks that got the same treatment.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Allow shift editing of indented clocktables --]
[-- Type: text/x-patch, Size: 1331 bytes --]

From ab9cb1d760f6f45eee026b30793dff0df5d5f719 Mon Sep 17 00:00:00 2001
From: Achim Gratz <Stromeko@Stromeko.DE>
Date: Mon, 13 Jun 2011 18:32:53 +0200
Subject: [PATCH] Allow S-left/S-right editing in indented clocktables

* lisp/org.el (org-clocktable-try-shift, org-find-dblock): Fix regexp
  to allow space and tab before the #+BEGIN: cookie

TINYCHANGE
---
 lisp/org.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index 1b342a6..6c6843b 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -3902,7 +3902,7 @@ If yes, offer to stop it and to save the buffer with the changes."
 
 (defun org-clocktable-try-shift (dir n)
   "Check if this line starts a clock table, if yes, shift the time block."
-  (when (org-match-line "#\\+BEGIN: clocktable\\>")
+  (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
     (org-clocktable-shift dir n)))
 
 ;; Autoload org-timer.el
@@ -10594,7 +10594,7 @@ If not found, stay at current position and return nil."
   (let (pos)
     (save-excursion
       (goto-char (point-min))
-      (setq pos (and (re-search-forward (concat "^#\\+BEGIN:[ \t]+" name "\\>")
+      (setq pos (and (re-search-forward (concat "^[ \t]*#\\+BEGIN:[ \t]+" name "\\>")
 					nil t)
 		     (match-beginning 0))))
     (if pos (goto-char pos))
-- 
1.7.5.4


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



Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Samples for the Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#BlofeldSamplesExtra

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

* Re: [PATCH] Allow S-left/S-right editing in indented clocktables
  2011-06-13 17:00 [PATCH] Allow S-left/S-right editing in indented clocktables Achim Gratz
@ 2011-06-15  6:55 ` Carsten Dominik
  0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2011-06-15  6:55 UTC (permalink / raw)
  To: Achim Gratz; +Cc: emacs-orgmode

Applied, thanks.

- Carsten

On 13.6.2011, at 19:00, Achim Gratz wrote:

> 
> It wasn't possible to use S-up/down/left/right on the clocktable BEGIN
> line when the whole table was indented.  Interestingly enough calling
> the function directly would work, it turned out to be a regexp in org.el
> that was still pinned to bol.  There was a second one further down that
> is used to recognize dynamic blocks that got the same treatment.
> 
> <0001-Allow-S-left-S-right-editing-in-indented-clocktables.patch>
> 
> Achim.
> -- 
> +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+
> 
> Samples for the Waldorf Blofeld:
> http://Synth.Stromeko.net/Downloads.html#BlofeldSamplesExtra

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

end of thread, other threads:[~2011-06-15  6:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-13 17:00 [PATCH] Allow S-left/S-right editing in indented clocktables Achim Gratz
2011-06-15  6:55 ` 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).