emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [patch] better(?) indention for cdlatex-environment


From: Rasmus
Subject: Re: [O] [patch] better(?) indention for cdlatex-environment
Date: Tue, 17 Feb 2015 01:41:45 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

Hi,

> Another idea: [...]

Good trick.  I used it in attached, which I think works well.

—Rasmus

-- 
With monopolies the cake is a lie!
>From 4ab1df88e5bf87d01594e280af7887cc6cd0d3ca Mon Sep 17 00:00:00 2001
From: rasmus <address@hidden>
Date: Tue, 10 Feb 2015 12:02:59 +0100
Subject: [PATCH] org.el: Change indention for cdlatex environments

* org.el (org-cdlatex-environment-indent): Use different indent
  algorithm based on content above the new latex-environment.
---
 lisp/org.el | 52 +++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 47 insertions(+), 5 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index 4f047b2..6de53f1 100755
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -18645,12 +18645,54 @@ Revert to the normal definition outside of these 
fragments."
       (call-interactively (key-binding (vector last-input-event))))))
 
 (defun org-cdlatex-environment-indent (&optional environment item)
-  "Execute `cdlatex-environment' and indent the inserted environment."
+  "Execute `cdlatex-environment' and indent the inserted environment.
+
+ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
+
+The inserted environment is indented to current indentation
+unless point is at the beginning of the line, in which the
+environment remains unintended."
   (interactive)
-  (cdlatex-environment environment item)
-  (let ((element (org-element-at-point)))
-    (org-indent-region (org-element-property :begin element)
-                      (org-element-property :end element))))
+  ;; cdlatex-environment always return nil.  Therefore, capture output
+  ;; first and determine if an environment was selected.
+  (let* ((beg (point-marker))
+        (end (copy-marker (point) t))
+        (env (org-trim
+              (or (progn (ignore-errors (cdlatex-environment environment item))
+                         (delete-and-extract-region beg end))
+                  ""))))
+    (when (org-string-nw-p env)
+      ;; Get indentation of next line unless at column 0.
+      (let ((ind (if (bolp) 0
+                  (save-excursion
+                    (org-return-indent)
+                    (prog1 (org-get-indentation)
+                      (when (and (skip-chars-forward " \t") (eolp))
+                        (delete-region beg (point)))))))
+           (bol (and (skip-chars-backward " \t") (bolp))))
+       ;; Insert a newline before environment unless at column zero
+       ;; to "escape" the current line.  Insert a newline if
+       ;; something is one the same line as \end{ENVIRONMENT}.
+       (insert (concat (unless bol "\n")
+                       env
+                       (and (skip-chars-forward " \t") (not (eolp)) "\n")))
+       (unless (zerop ind)
+         (let* ((element (org-element-at-point))
+                (elm-beg (org-element-property :begin element))
+                (elm-end (copy-marker
+                          (save-excursion
+                            (goto-char (org-element-property :end element))
+                            (skip-chars-backward " \t\n\r")
+                            (point)))))
+           (save-excursion
+             (goto-char elm-beg)
+             (beginning-of-line)
+             (while (<= (point) elm-end)
+               (org-indent-to-column ind)
+               (forward-line)))
+           (set-marker elm-end nil)))))
+    (set-marker beg nil)
+    (set-marker end nil)))
 
 
 ;;;; LaTeX fragments
-- 
2.3.0


reply via email to

[Prev in Thread] Current Thread [Next in Thread]