From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Problem: Moving rows in a table changes vsum start and end Date: Fri, 28 Sep 2012 18:56:33 +0200 Message-ID: <87sja2qe66.fsf@bzg.ath.cx> References: <87k3veilfz.fsf@bzg.ath.cx> <877greuud7.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:33328) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THdrc-0003Gr-2X for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 12:56:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THdrZ-0007Se-WC for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 12:56:31 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:37256) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THdrZ-0007Ry-Lm for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 12:56:29 -0400 Received: by weyu3 with SMTP id u3so1723614wey.0 for ; Fri, 28 Sep 2012 09:56:28 -0700 (PDT) In-Reply-To: (Torsten Wagner's message of "Sat, 29 Sep 2012 01:17:23 +0900") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Torsten Wagner Cc: Org Mode Mailing List Hi Torsten, Torsten Wagner writes: > ok, I think it should be in org-table.el > > and the function in question might be org-table-fix-formulas Right. > I added > > (defface org-table-formular-change-face > '((t (:background "red"))) > "Used parts of tabe formulars which change by row and column moving > operations.") Faces are for visual clues that are here to stay, for transitory highlighting, you'd better use overlays. (See "Overlays" in the Elisp manual.) > to define a new face for changes in the formular. > > Then I looked around how to do the face changing. By that I noticed, > org-mode uses its own set of functions (org-table-highlight-rectangle, > org-table-remove-rectangle-highlight). > Searching more around I figured out that emacs already comes with a > function for highlighting. > > http://www.gnu.org/software/emacs/manual/html_node/emacs/Highlight-Interactively.html#Highlight-Interactively > > Which makes me wonder why org-mode don't use that (maybe historical > reasons, the above function is not that old). I haven't closely looked at hi-lock.el but I think this is more for ad-hoc highlighting rather than for mode highlighting. I guess it's faster to set the face text property than to use these functions. > From this there are mainly two functions of interest > > highlight-regexp > unhighlight-regexp (btw. a not very emacs conform naming) > > they take a regular expression as input and optional the face to be set. > It works great in interactive mode. > > So I was looking how to modify the function org-table-fix-formulas > using the above commands > > I ended up with a very small change > > (defun org-table-fix-formulas (key replace &optional limit delta remove) > "Modify the equations after the table structure has been edited. > KEY is \"@\" or \"$\". REPLACE is an alist of numbers to replace. > For all numbers larger than LIMIT, shift them by DELTA." > (save-excursion > (goto-char (org-table-end)) > (when (let ((case-fold-search t)) (looking-at "[ \t]*#\\+tblfm:")) > (let ((re (concat key "\\([0-9]+\\)")) > (re2 > (when remove > (if (or (equal key "$") (equal key "$LR")) > (format "\\(@[0-9]+\\)?%s%d=.*?\\(::\\|$\\)" > (regexp-quote key) remove) > (format "@%d\\$[0-9]+=.*?\\(::\\|$\\)" remove)))) > s n a) > (when remove > (while (re-search-forward re2 (point-at-eol) t) > (unless (save-match-data (org-in-regexp "remote([^)]+?)")) > (if (equal (char-before (match-beginning 0)) ?.) > (error "Change makes TBLFM term %s invalid. Use undo to recover." > (match-string 0)) > (replace-match ""))))) > (while (re-search-forward re (point-at-eol) t) > (unless (save-match-data (org-in-regexp "remote([^)]+?)")) > (setq s (match-string 1) n (string-to-number s)) > (cond > ((setq a (assoc s replace)) > (replace-match (concat key (cdr a)) t t)) > ((and limit (> n limit)) > (replace-match (concat key (int-to-string (+ n delta))) > t t))) > > ;Added the single line below > (highlight-regexp re 'org-table-formular-change-face) > ; really only the above line > > )))))) This cannot work because `re' is the regular expression you are searching for -- thus the string matched by the re will be replaced. What we want is to add an overlay on the part of the formula that has been updated, namely the string in (replace-match STRING ...) constructs. > However, it does not work. > Defining the face and using the above line works correct in the scratch buffer, > However, calling the function within org-mode (moving rows in a table) > I do not get an error message and do not get a highlight... > I made sure my modified version but no luck yet. Another thing(y): I'd like the overlay to be transient... So maybe overlaying the replacement with a timer to fade it away is the way to go. If you didn't already, you can have a look at how `org-table-edit-formulas' does its job. > Furthermore, you might like to check about the highlight functions. > You might be able to simplify some of the org-table.el code by > relying on those functions instead of defining own functions. If we > get this started, I dream of > slightly different face different parts of org-tables: > * cells base on a formula and not been updated, despite changes were > made in the table, > * cells base on a formula but good overwritten by the user (this is > another dangerous situation I found myself in) > * highlight the formulas for the cell in which the pointer is located > (kind of reveres of the current fomular editor highlighting) > * highlight changes after recalculation of an table > > As for the last point. I also found the minor mode "highlight-changes-mode" > This is a great mode and calling it before starting to manipulate a > org-table, already ticks some of the above points. Please try if you > are not aware of it (create a table with some forms, call > highlight-changes-mode, do some operations on the table). Thanks for the tip! I'm aware of it but don't use it that much in tables because a simple M- will highlight the whole table... but yes, this is one of the great libraries in Emacs. (Did I already acknowledge Emacs is great?) If you want to dig further for the temporary overlay, you may have a look at this library: http://sachachua.com/notebook/emacs/highlight-tail.el Best, -- Bastien