Update copyright years
[org-mode/org-tableheadings.git] / lisp / org-table.el
blob863ba98d33b7f72731fcbd04193ed6ee893c695c
1 ;;; org-table.el --- The table editor for Org mode
3 ;; Copyright (C) 2004-2016 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the table editor and spreadsheet for Org mode.
29 ;; Watch out: Here we are talking about two different kind of tables.
30 ;; Most of the code is for the tables created with the Org mode table editor.
31 ;; Sometimes, we talk about tables created and edited with the table.el
32 ;; Emacs package. We call the former org-type tables, and the latter
33 ;; table.el-type tables.
35 ;;; Code:
37 (eval-when-compile
38 (require 'cl))
39 (require 'org)
41 (declare-function org-element-at-point "org-element" ())
42 (declare-function org-element-contents "org-element" (element))
43 (declare-function org-element-extract-element "org-element" (element))
44 (declare-function org-element-interpret-data "org-element" (data))
45 (declare-function org-element-lineage "org-element"
46 (blob &optional types with-self))
47 (declare-function org-element-map "org-element"
48 (data types fun
49 &optional info first-match no-recursion with-affiliated))
50 (declare-function org-element-parse-buffer "org-element"
51 (&optional granularity visible-only))
52 (declare-function org-element-property "org-element" (property element))
53 (declare-function org-element-type "org-element" (element))
55 (declare-function org-export-create-backend "org-export" (&rest rest))
56 (declare-function org-export-data-with-backend "org-export" (arg1 arg2 arg3))
57 (declare-function org-export-first-sibling-p "org-export" (arg1 arg2))
58 (declare-function org-export-get-backend "org-export" (arg1))
59 (declare-function org-export-get-environment "org-export" (&optional arg1 arg2 arg3))
60 (declare-function org-export-table-has-special-column-p "org-export" (arg1))
61 (declare-function org-export-table-row-is-special-p "org-export" (arg1 arg2))
63 (declare-function calc-eval "calc" (str &optional separator &rest args))
65 (defvar orgtbl-mode) ; defined below
66 (defvar orgtbl-mode-menu) ; defined when orgtbl mode get initialized
67 (defvar constants-unit-system)
68 (defvar org-table-follow-field-mode)
70 (defvar orgtbl-after-send-table-hook nil
71 "Hook for functions attaching to `C-c C-c', if the table is sent.
72 This can be used to add additional functionality after the table is sent
73 to the receiver position, otherwise, if table is not sent, the functions
74 are not run.")
76 (defvar org-table-TBLFM-begin-regexp "^[ \t]*|.*\n[ \t]*#\\+TBLFM: ")
78 (defcustom orgtbl-optimized (eq org-enable-table-editor 'optimized)
79 "Non-nil means use the optimized table editor version for `orgtbl-mode'.
80 In the optimized version, the table editor takes over all simple keys that
81 normally just insert a character. In tables, the characters are inserted
82 in a way to minimize disturbing the table structure (i.e. in overwrite mode
83 for empty fields). Outside tables, the correct binding of the keys is
84 restored.
86 The default for this option is t if the optimized version is also used in
87 Org-mode. See the variable `org-enable-table-editor' for details. Changing
88 this variable requires a restart of Emacs to become effective."
89 :group 'org-table
90 :type 'boolean)
92 (defcustom orgtbl-radio-table-templates
93 '((latex-mode "% BEGIN RECEIVE ORGTBL %n
94 % END RECEIVE ORGTBL %n
95 \\begin{comment}
96 #+ORGTBL: SEND %n orgtbl-to-latex :splice nil :skip 0
97 | | |
98 \\end{comment}\n")
99 (texinfo-mode "@c BEGIN RECEIVE ORGTBL %n
100 @c END RECEIVE ORGTBL %n
101 @ignore
102 #+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
103 | | |
104 @end ignore\n")
105 (html-mode "<!-- BEGIN RECEIVE ORGTBL %n -->
106 <!-- END RECEIVE ORGTBL %n -->
107 <!--
108 #+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
109 | | |
110 -->\n")
111 (org-mode "#+ BEGIN RECEIVE ORGTBL %n
112 #+ END RECEIVE ORGTBL %n
114 #+ORGTBL: SEND %n orgtbl-to-orgtbl :splice nil :skip 0
115 | | |
117 "Templates for radio tables in different major modes.
118 Each template must define lines that will be treated as a comment and that
119 must contain the \"BEGIN RECEIVE ORGTBL %n\" and \"END RECEIVE ORGTBL\"
120 lines where \"%n\" will be replaced with the name of the table during
121 insertion of the template. The transformed table will later be inserted
122 between these lines.
124 The template should also contain a minimal table in a multiline comment.
125 If multiline comments are not possible in the buffer language,
126 you can pack it into a string that will not be used when the code
127 is compiled or executed. Above the table will you need a line with
128 the fixed string \"#+ORGTBL: SEND\", followed by instruction on how to
129 convert the table into a data structure useful in the
130 language of the buffer. Check the manual for the section on
131 \"Translator functions\", and more generally check out
132 http://orgmode.org/manual/Tables-in-arbitrary-syntax.html#Tables-in-arbitrary-syntax
134 All occurrences of %n in a template will be replaced with the name of the
135 table, obtained by prompting the user."
136 :group 'org-table
137 :type '(repeat
138 (list (symbol :tag "Major mode")
139 (string :tag "Format"))))
141 (defgroup org-table-settings nil
142 "Settings for tables in Org-mode."
143 :tag "Org Table Settings"
144 :group 'org-table)
146 (defcustom org-table-default-size "5x2"
147 "The default size for newly created tables, Columns x Rows."
148 :group 'org-table-settings
149 :type 'string)
151 (defcustom org-table-number-regexp
152 "^\\([<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%:]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$"
153 "Regular expression for recognizing numbers in table columns.
154 If a table column contains mostly numbers, it will be aligned to the
155 right. If not, it will be aligned to the left.
157 The default value of this option is a regular expression which allows
158 anything which looks remotely like a number as used in scientific
159 context. For example, all of the following will be considered a
160 number:
161 12 12.2 2.4e-08 2x10^12 4.034+-0.02 2.7(10) >3.5
163 Other options offered by the customize interface are more restrictive."
164 :group 'org-table-settings
165 :type '(choice
166 (const :tag "Positive Integers"
167 "^[0-9]+$")
168 (const :tag "Integers"
169 "^[-+]?[0-9]+$")
170 (const :tag "Floating Point Numbers"
171 "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.[0-9]*\\)$")
172 (const :tag "Floating Point Number or Integer"
173 "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.?[0-9]*\\)$")
174 (const :tag "Exponential, Floating point, Integer"
175 "^[-+]?[0-9.]+\\([eEdD][-+0-9]+\\)?$")
176 (const :tag "Very General Number-Like, including hex and Calc radix"
177 "^\\([<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$")
178 (const :tag "Very General Number-Like, including hex and Calc radix, allows comma as decimal mark"
179 "^\\([<>]?[-+^.,0-9]*[0-9][-+^.0-9eEdDx()%]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$")
180 (string :tag "Regexp:")))
182 (defcustom org-table-number-fraction 0.5
183 "Fraction of numbers in a column required to make the column align right.
184 In a column all non-white fields are considered. If at least
185 this fraction of fields is matched by `org-table-number-regexp',
186 alignment to the right border applies."
187 :group 'org-table-settings
188 :type 'number)
190 (defgroup org-table-editing nil
191 "Behavior of tables during editing in Org-mode."
192 :tag "Org Table Editing"
193 :group 'org-table)
195 (defcustom org-table-automatic-realign t
196 "Non-nil means automatically re-align table when pressing TAB or RETURN.
197 When nil, aligning is only done with \\[org-table-align], or after column
198 removal/insertion."
199 :group 'org-table-editing
200 :type 'boolean)
202 (defcustom org-table-auto-blank-field t
203 "Non-nil means automatically blank table field when starting to type into it.
204 This only happens when typing immediately after a field motion
205 command (TAB, S-TAB or RET).
206 Only relevant when `org-enable-table-editor' is equal to `optimized'."
207 :group 'org-table-editing
208 :type 'boolean)
210 (defcustom org-table-exit-follow-field-mode-when-leaving-table t
211 "Non-nil means automatically exit the follow mode.
212 When nil, the follow mode will stay on and be active in any table
213 the cursor enters. Since the table follow filed mode messes with the
214 window configuration, it is not recommended to set this variable to nil,
215 except maybe locally in a special file that has mostly tables with long
216 fields."
217 :group 'org-table
218 :version "24.1"
219 :type 'boolean)
221 (defcustom org-table-fix-formulas-confirm nil
222 "Whether the user should confirm when Org fixes formulas."
223 :group 'org-table-editing
224 :version "24.1"
225 :type '(choice
226 (const :tag "with yes-or-no" yes-or-no-p)
227 (const :tag "with y-or-n" y-or-n-p)
228 (const :tag "no confirmation" nil)))
229 (put 'org-table-fix-formulas-confirm
230 'safe-local-variable
231 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
233 (defcustom org-table-tab-jumps-over-hlines t
234 "Non-nil means tab in the last column of a table with jump over a hline.
235 If a horizontal separator line is following the current line,
236 `org-table-next-field' can either create a new row before that line, or jump
237 over the line. When this option is nil, a new line will be created before
238 this line."
239 :group 'org-table-editing
240 :type 'boolean)
242 (defgroup org-table-calculation nil
243 "Options concerning tables in Org-mode."
244 :tag "Org Table Calculation"
245 :group 'org-table)
247 (defcustom org-table-use-standard-references 'from
248 "Should org-mode work with table references like B3 instead of @3$2?
249 Possible values are:
250 nil never use them
251 from accept as input, do not present for editing
252 t accept as input and present for editing"
253 :group 'org-table-calculation
254 :type '(choice
255 (const :tag "Never, don't even check user input for them" nil)
256 (const :tag "Always, both as user input, and when editing" t)
257 (const :tag "Convert user input, don't offer during editing" from)))
259 (defcustom org-table-copy-increment t
260 "Non-nil means increment when copying current field with \\[org-table-copy-down]."
261 :group 'org-table-calculation
262 :version "25.1"
263 :package-version '(Org . "8.3")
264 :type '(choice
265 (const :tag "Use the difference between the current and the above fields" t)
266 (integer :tag "Use a number" 1)
267 (const :tag "Don't increment the value when copying a field" nil)))
269 (defcustom org-calc-default-modes
270 '(calc-internal-prec 12
271 calc-float-format (float 8)
272 calc-angle-mode deg
273 calc-prefer-frac nil
274 calc-symbolic-mode nil
275 calc-date-format (YYYY "-" MM "-" DD " " Www (" " hh ":" mm))
276 calc-display-working-message t
278 "List with Calc mode settings for use in `calc-eval' for table formulas.
279 The list must contain alternating symbols (Calc modes variables and values).
280 Don't remove any of the default settings, just change the values. Org-mode
281 relies on the variables to be present in the list."
282 :group 'org-table-calculation
283 :type 'plist)
285 (defcustom org-table-duration-custom-format 'hours
286 "Format for the output of calc computations like $1+$2;t.
287 The default value is `hours', and will output the results as a
288 number of hours. Other allowed values are `seconds', `minutes' and
289 `days', and the output will be a fraction of seconds, minutes or
290 days."
291 :group 'org-table-calculation
292 :version "24.1"
293 :type '(choice (symbol :tag "Seconds" 'seconds)
294 (symbol :tag "Minutes" 'minutes)
295 (symbol :tag "Hours " 'hours)
296 (symbol :tag "Days " 'days)))
298 (defcustom org-table-formula-field-format "%s"
299 "Format for fields which contain the result of a formula.
300 For example, using \"~%s~\" will display the result within tilde
301 characters. Beware that modifying the display can prevent the
302 field from being used in another formula."
303 :group 'org-table-settings
304 :version "24.1"
305 :type 'string)
307 (defcustom org-table-formula-evaluate-inline t
308 "Non-nil means TAB and RET evaluate a formula in current table field.
309 If the current field starts with an equal sign, it is assumed to be a formula
310 which should be evaluated as described in the manual and in the documentation
311 string of the command `org-table-eval-formula'. This feature requires the
312 Emacs calc package.
313 When this variable is nil, formula calculation is only available through
314 the command \\[org-table-eval-formula]."
315 :group 'org-table-calculation
316 :type 'boolean)
318 (defcustom org-table-formula-use-constants t
319 "Non-nil means interpret constants in formulas in tables.
320 A constant looks like `$c' or `$Grav' and will be replaced before evaluation
321 by the value given in `org-table-formula-constants', or by a value obtained
322 from the `constants.el' package."
323 :group 'org-table-calculation
324 :type 'boolean)
326 (defcustom org-table-formula-constants nil
327 "Alist with constant names and values, for use in table formulas.
328 The car of each element is a name of a constant, without the `$' before it.
329 The cdr is the value as a string. For example, if you'd like to use the
330 speed of light in a formula, you would configure
332 (setq org-table-formula-constants \\='((\"c\" . \"299792458.\")))
334 and then use it in an equation like `$1*$c'.
336 Constants can also be defined on a per-file basis using a line like
338 #+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6"
339 :group 'org-table-calculation
340 :type '(repeat
341 (cons (string :tag "name")
342 (string :tag "value"))))
344 (defcustom org-table-allow-automatic-line-recalculation t
345 "Non-nil means lines marked with |#| or |*| will be recomputed automatically.
346 \\<org-mode-map>\
347 Automatically means when TAB or RET or \\[org-ctrl-c-ctrl-c] \
348 are pressed in the line."
349 :group 'org-table-calculation
350 :type 'boolean)
352 (defcustom org-table-relative-ref-may-cross-hline t
353 "Non-nil means relative formula references may cross hlines.
354 Here are the allowed values:
356 nil Relative references may not cross hlines. They will reference the
357 field next to the hline instead. Coming from below, the reference
358 will be to the field below the hline. Coming from above, it will be
359 to the field above.
360 t Relative references may cross hlines.
361 error An attempt to cross a hline will throw an error.
363 It is probably good to never set this variable to nil, for the sake of
364 portability of tables."
365 :group 'org-table-calculation
366 :type '(choice
367 (const :tag "Allow to cross" t)
368 (const :tag "Stick to hline" nil)
369 (const :tag "Error on attempt to cross" error)))
371 (defcustom org-table-formula-create-columns nil
372 "Non-nil means that evaluation of a field formula can add new
373 columns if an out-of-bounds field is being set."
374 :group 'org-table-calculation
375 :version "25.1"
376 :package-version '(Org . "8.3")
377 :type '(choice
378 (const :tag "Setting an out-of-bounds field generates an error (default)" nil)
379 (const :tag "Setting an out-of-bounds field silently adds columns as needed" t)
380 (const :tag "Setting an out-of-bounds field adds columns as needed, but issues a warning message" warn)
381 (const :tag "When setting an out-of-bounds field, the user is prompted" prompt)))
383 (defgroup org-table-import-export nil
384 "Options concerning table import and export in Org-mode."
385 :tag "Org Table Import Export"
386 :group 'org-table)
388 (defcustom org-table-export-default-format "orgtbl-to-tsv"
389 "Default export parameters for `org-table-export'.
390 These can be overridden for a specific table by setting the
391 TABLE_EXPORT_FORMAT property. See the manual section on orgtbl
392 radio tables for the different export transformations and
393 available parameters."
394 :group 'org-table-import-export
395 :type 'string)
397 (defcustom org-table-convert-region-max-lines 999
398 "Max lines that `org-table-convert-region' will attempt to process.
400 The function can be slow on larger regions; this safety feature
401 prevents it from hanging emacs."
402 :group 'org-table-import-export
403 :type 'integer
404 :version "25.1"
405 :package-version '(Org . "8.3"))
407 (defconst org-table-auto-recalculate-regexp "^[ \t]*| *# *\\(|\\|$\\)"
408 "Regexp matching a line marked for automatic recalculation.")
410 (defconst org-table-recalculate-regexp "^[ \t]*| *[#*] *\\(|\\|$\\)"
411 "Regexp matching a line marked for recalculation.")
413 (defconst org-table-calculate-mark-regexp "^[ \t]*| *[!$^_#*] *\\(|\\|$\\)"
414 "Regexp matching a line marked for calculation.")
416 (defconst org-table-border-regexp "^[ \t]*[^| \t]"
417 "Regexp matching any line outside an Org table.")
419 (defvar org-table-last-highlighted-reference nil)
421 (defvar org-table-formula-history nil)
423 (defvar org-table-column-names nil
424 "Alist with column names, derived from the `!' line.
425 This variable is initialized with `org-table-analyze'.")
427 (defvar org-table-column-name-regexp nil
428 "Regular expression matching the current column names.
429 This variable is initialized with `org-table-analyze'.")
431 (defvar org-table-local-parameters nil
432 "Alist with parameter names, derived from the `$' line.
433 This variable is initialized with `org-table-analyze'.")
435 (defvar org-table-named-field-locations nil
436 "Alist with locations of named fields.
437 Associations follow the pattern (NAME LINE COLUMN) where
438 NAME is the name of the field as a string,
439 LINE is the number of lines from the beginning of the table,
440 COLUMN is the column of the field, as an integer.
441 This variable is initialized with `org-table-analyze'.")
443 (defvar org-table-current-line-types nil
444 "Table row types in current table.
445 This variable is initialized with `org-table-analyze'.")
447 (defvar org-table-current-begin-pos nil
448 "Current table begin position, as a marker.
449 This variable is initialized with `org-table-analyze'.")
451 (defvar org-table-current-ncol nil
452 "Number of columns in current table.
453 This variable is initialized with `org-table-analyze'.")
455 (defvar org-table-dlines nil
456 "Vector of data line line numbers in the current table.
457 Line numbers are counted from the beginning of the table. This
458 variable is initialized with `org-table-analyze'.")
460 (defvar org-table-hlines nil
461 "Vector of hline line numbers in the current table.
462 Line numbers are counted from the beginning of the table. This
463 variable is initialized with `org-table-analyze'.")
465 (defconst org-table-range-regexp
466 "@\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\(\\.\\.@?\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\)?"
467 ;; 1 2 3 4 5
468 "Regular expression for matching ranges in formulas.")
470 (defconst org-table-range-regexp2
471 (concat
472 "\\(" "@[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)"
473 "\\.\\."
474 "\\(" "@?[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)")
475 "Match a range for reference display.")
477 (defconst org-table-translate-regexp
478 (concat "\\(" "@[-0-9I$]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\)")
479 "Match a reference that needs translation, for reference display.")
481 (defmacro org-table-save-field (&rest body)
482 "Save current field; execute BODY; restore field.
483 Field is restored even in case of abnormal exit."
484 (declare (debug (body)))
485 (org-with-gensyms (line column)
486 `(let ((,line (copy-marker (line-beginning-position)))
487 (,column (org-table-current-column)))
488 (unwind-protect
489 (progn ,@body)
490 (goto-char ,line)
491 (org-table-goto-column ,column)
492 (set-marker ,line nil)))))
494 ;;;###autoload
495 (defun org-table-create-with-table.el ()
496 "Use the table.el package to insert a new table.
497 If there is already a table at point, convert between Org-mode tables
498 and table.el tables."
499 (interactive)
500 (require 'table)
501 (cond
502 ((org-at-table.el-p)
503 (if (y-or-n-p "Convert table to Org-mode table? ")
504 (org-table-convert)))
505 ((org-at-table-p)
506 (when (y-or-n-p "Convert table to table.el table? ")
507 (org-table-align)
508 (org-table-convert)))
509 (t (call-interactively 'table-insert))))
511 ;;;###autoload
512 (defun org-table-create-or-convert-from-region (arg)
513 "Convert region to table, or create an empty table.
514 If there is an active region, convert it to a table, using the function
515 `org-table-convert-region'. See the documentation of that function
516 to learn how the prefix argument is interpreted to determine the field
517 separator.
518 If there is no such region, create an empty table with `org-table-create'."
519 (interactive "P")
520 (if (org-region-active-p)
521 (org-table-convert-region (region-beginning) (region-end) arg)
522 (org-table-create arg)))
524 ;;;###autoload
525 (defun org-table-create (&optional size)
526 "Query for a size and insert a table skeleton.
527 SIZE is a string Columns x Rows like for example \"3x2\"."
528 (interactive "P")
529 (unless size
530 (setq size (read-string
531 (concat "Table size Columns x Rows [e.g. "
532 org-table-default-size "]: ")
533 "" nil org-table-default-size)))
535 (let* ((pos (point))
536 (indent (make-string (current-column) ?\ ))
537 (split (org-split-string size " *x *"))
538 (rows (string-to-number (nth 1 split)))
539 (columns (string-to-number (car split)))
540 (line (concat (apply 'concat indent "|" (make-list columns " |"))
541 "\n")))
542 (if (string-match "^[ \t]*$" (buffer-substring-no-properties
543 (point-at-bol) (point)))
544 (beginning-of-line 1)
545 (newline))
546 ;; (mapcar (lambda (x) (insert line)) (make-list rows t))
547 (dotimes (i rows) (insert line))
548 (goto-char pos)
549 (if (> rows 1)
550 ;; Insert a hline after the first row.
551 (progn
552 (end-of-line 1)
553 (insert "\n|-")
554 (goto-char pos)))
555 (org-table-align)))
557 ;;;###autoload
558 (defun org-table-convert-region (beg0 end0 &optional separator)
559 "Convert region to a table.
560 The region goes from BEG0 to END0, but these borders will be moved
561 slightly, to make sure a beginning of line in the first line is included.
563 SEPARATOR specifies the field separator in the lines. It can have the
564 following values:
566 (4) Use the comma as a field separator
567 (16) Use a TAB as field separator
568 (64) Prompt for a regular expression as field separator
569 integer When a number, use that many spaces as field separator
570 regexp When a regular expression, use it to match the separator
571 nil When nil, the command tries to be smart and figure out the
572 separator in the following way:
573 - when each line contains a TAB, assume TAB-separated material
574 - when each line contains a comma, assume CSV material
575 - else, assume one or more SPACE characters as separator."
576 (interactive "r\nP")
577 (let* ((beg (min beg0 end0))
578 (end (max beg0 end0))
580 (if (> (count-lines beg end) org-table-convert-region-max-lines)
581 (user-error "Region is longer than `org-table-convert-region-max-lines' (%s) lines; not converting"
582 org-table-convert-region-max-lines)
583 (if (equal separator '(64))
584 (setq separator (read-regexp "Regexp for field separator")))
585 (goto-char beg)
586 (beginning-of-line 1)
587 (setq beg (point-marker))
588 (goto-char end)
589 (if (bolp) (backward-char 1) (end-of-line 1))
590 (setq end (point-marker))
591 ;; Get the right field separator
592 (unless separator
593 (goto-char beg)
594 (setq separator
595 (cond
596 ((not (re-search-forward "^[^\n\t]+$" end t)) '(16))
597 ((not (re-search-forward "^[^\n,]+$" end t)) '(4))
598 (t 1))))
599 (goto-char beg)
600 (if (equal separator '(4))
601 (while (< (point) end)
602 ;; parse the csv stuff
603 (cond
604 ((looking-at "^") (insert "| "))
605 ((looking-at "[ \t]*$") (replace-match " |") (beginning-of-line 2))
606 ((looking-at "[ \t]*\"\\([^\"\n]*\\)\"")
607 (replace-match "\\1")
608 (if (looking-at "\"") (insert "\"")))
609 ((looking-at "[^,\n]+") (goto-char (match-end 0)))
610 ((looking-at "[ \t]*,") (replace-match " | "))
611 (t (beginning-of-line 2))))
612 (setq re (cond
613 ((equal separator '(4)) "^\\|\"?[ \t]*,[ \t]*\"?")
614 ((equal separator '(16)) "^\\|\t")
615 ((integerp separator)
616 (if (< separator 1)
617 (user-error "Number of spaces in separator must be >= 1")
618 (format "^ *\\| *\t *\\| \\{%d,\\}" separator)))
619 ((stringp separator)
620 (format "^ *\\|%s" separator))
621 (t (error "This should not happen"))))
622 (while (re-search-forward re end t)
623 (replace-match "| " t t)))
624 (goto-char beg)
625 (org-table-align))))
627 ;;;###autoload
628 (defun org-table-import (file arg)
629 "Import FILE as a table.
630 The file is assumed to be tab-separated. Such files can be produced by most
631 spreadsheet and database applications. If no tabs (at least one per line)
632 are found, lines will be split on whitespace into fields."
633 (interactive "f\nP")
634 (or (bolp) (newline))
635 (let ((beg (point))
636 (pm (point-max)))
637 (insert-file-contents file)
638 (org-table-convert-region beg (+ (point) (- (point-max) pm)) arg)))
641 ;;;###autoload
642 (defun org-table-export (&optional file format)
643 "Export table to a file, with configurable format.
644 Such a file can be imported into usual spreadsheet programs.
646 FILE can be the output file name. If not given, it will be taken
647 from a TABLE_EXPORT_FILE property in the current entry or higher
648 up in the hierarchy, or the user will be prompted for a file
649 name. FORMAT can be an export format, of the same kind as it
650 used when `orgtbl-mode' sends a table in a different format.
652 The command suggests a format depending on TABLE_EXPORT_FORMAT,
653 whether it is set locally or up in the hierarchy, then on the
654 extension of the given file name, and finally on the variable
655 `org-table-export-default-format'."
656 (interactive)
657 (unless (org-at-table-p) (user-error "No table at point"))
658 (org-table-align) ; Make sure we have everything we need.
659 (let ((file (or file (org-entry-get (point) "TABLE_EXPORT_FILE" t))))
660 (unless file
661 (setq file (read-file-name "Export table to: "))
662 (unless (or (not (file-exists-p file))
663 (y-or-n-p (format "Overwrite file %s? " file)))
664 (user-error "File not written")))
665 (when (file-directory-p file)
666 (user-error "This is a directory path, not a file"))
667 (when (and (buffer-file-name (buffer-base-buffer))
668 (org-file-equal-p
669 (file-truename file)
670 (file-truename (buffer-file-name (buffer-base-buffer)))))
671 (user-error "Please specify a file name that is different from current"))
672 (let ((fileext (concat (file-name-extension file) "$"))
673 (format (or format (org-entry-get (point) "TABLE_EXPORT_FORMAT" t))))
674 (unless format
675 (let* ((formats '("orgtbl-to-tsv" "orgtbl-to-csv" "orgtbl-to-latex"
676 "orgtbl-to-html" "orgtbl-to-generic"
677 "orgtbl-to-texinfo" "orgtbl-to-orgtbl"
678 "orgtbl-to-unicode"))
679 (deffmt-readable
680 (replace-regexp-in-string
681 "\t" "\\t"
682 (replace-regexp-in-string
683 "\n" "\\n"
684 (or (car (delq nil
685 (mapcar
686 (lambda (f)
687 (and (org-string-match-p fileext f) f))
688 formats)))
689 org-table-export-default-format)
690 t t) t t)))
691 (setq format
692 (org-completing-read
693 "Format: " formats nil nil deffmt-readable))))
694 (if (string-match "\\([^ \t\r\n]+\\)\\( +.*\\)?" format)
695 (let ((transform (intern (match-string 1 format)))
696 (params (and (match-end 2)
697 (read (concat "(" (match-string 2 format) ")"))))
698 (table (org-table-to-lisp
699 (buffer-substring-no-properties
700 (org-table-begin) (org-table-end)))))
701 (unless (fboundp transform)
702 (user-error "No such transformation function %s" transform))
703 (let (buf)
704 (with-current-buffer (find-file-noselect file)
705 (setq buf (current-buffer))
706 (erase-buffer)
707 (fundamental-mode)
708 (insert (funcall transform table params) "\n")
709 (save-buffer))
710 (kill-buffer buf))
711 (message "Export done."))
712 (user-error "TABLE_EXPORT_FORMAT invalid")))))
714 (defvar org-table-aligned-begin-marker (make-marker)
715 "Marker at the beginning of the table last aligned.
716 Used to check if cursor still is in that table, to minimize realignment.")
717 (defvar org-table-aligned-end-marker (make-marker)
718 "Marker at the end of the table last aligned.
719 Used to check if cursor still is in that table, to minimize realignment.")
720 (defvar org-table-last-alignment nil
721 "List of flags for flushright alignment, from the last re-alignment.
722 This is being used to correctly align a single field after TAB or RET.")
723 (defvar org-table-last-column-widths nil
724 "List of max width of fields in each column.
725 This is being used to correctly align a single field after TAB or RET.")
726 (defvar org-table-formula-debug nil
727 "Non-nil means debug table formulas.
728 When nil, simply write \"#ERROR\" in corrupted fields.")
729 (make-variable-buffer-local 'org-table-formula-debug)
730 (defvar org-table-overlay-coordinates nil
731 "Overlay coordinates after each align of a table.")
732 (make-variable-buffer-local 'org-table-overlay-coordinates)
734 (defvar org-last-recalc-line nil)
735 (defvar org-table-do-narrow t) ; for dynamic scoping
736 (defconst org-narrow-column-arrow "=>"
737 "Used as display property in narrowed table columns.")
739 ;;;###autoload
740 (defun org-table-align ()
741 "Align the table at point by aligning all vertical bars."
742 (interactive)
743 (let* ((beg (org-table-begin))
744 (end (copy-marker (org-table-end))))
745 (org-table-save-field
746 ;; Make sure invisible characters in the table are at the right
747 ;; place since column widths take them into account.
748 (font-lock-fontify-region beg end)
749 (move-marker org-table-aligned-begin-marker beg)
750 (move-marker org-table-aligned-end-marker end)
751 (goto-char beg)
752 (let* ((indent (progn (looking-at "[ \t]*") (match-string 0)))
753 ;; Table's rows. Separators are replaced by nil. Trailing
754 ;; spaces are also removed.
755 (lines (mapcar (lambda (l)
756 (and (not (org-string-match-p "\\`[ \t]*|-" l))
757 (let ((l (org-trim l)))
758 (remove-text-properties
759 0 (length l) '(display t org-cwidth t) l)
760 l)))
761 (org-split-string (buffer-substring beg end) "\n")))
762 ;; Get the data fields by splitting the lines.
763 (fields (mapcar (lambda (l) (org-split-string l " *| *"))
764 (remq nil lines)))
765 ;; Compute number of fields in the longest line. If the
766 ;; table contains no field, create a default table.
767 (maxfields (if fields (apply #'max (mapcar #'length fields))
768 (kill-region beg end)
769 (org-table-create org-table-default-size)
770 (user-error "Empty table - created default table")))
771 ;; A list of empty strings to fill any short rows on output.
772 (emptycells (make-list maxfields ""))
773 lengths typenums)
774 ;; Check for special formatting.
775 (dotimes (i maxfields)
776 (let ((column (mapcar (lambda (x) (or (nth i x) "")) fields))
777 fmax falign)
778 ;; Look for an explicit width or alignment.
779 (when (save-excursion
780 (or (re-search-forward "| *<[lrc][0-9]*> *\\(|\\|$\\)" end t)
781 (and org-table-do-narrow
782 (re-search-forward
783 "| *<[lrc]?[0-9]+> *\\(|\\|$\\)" end t))))
784 (catch :exit
785 (dolist (cell column)
786 (when (string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'" cell)
787 (when (match-end 1) (setq falign (match-string 1 cell)))
788 (when (and org-table-do-narrow (match-end 2))
789 (setq fmax (string-to-number (match-string 2 cell))))
790 (when (or falign fmax) (throw :exit nil)))))
791 ;; Find fields that are wider than FMAX, and shorten them.
792 (when fmax
793 (dolist (x column)
794 (when (> (org-string-width x) fmax)
795 (org-add-props x nil
796 'help-echo
797 (concat
798 (substitute-command-keys
799 "Clipped table field, use \\[org-table-edit-field] to \
800 edit. Full value is:\n")
801 (substring-no-properties x)))
802 (let ((l (length x))
803 (f1 (min fmax
804 (or (string-match org-bracket-link-regexp x)
805 fmax)))
806 (f2 1))
807 (unless (> f1 1)
808 (user-error
809 "Cannot narrow field starting with wide link \"%s\""
810 (match-string 0 x)))
811 (if (= (org-string-width x) l) (setq f2 f1)
812 (setq f2 1)
813 (while (< (org-string-width (substring x 0 f2)) f1)
814 (incf f2)))
815 (add-text-properties f2 l (list 'org-cwidth t) x)
816 (add-text-properties
817 (if (>= (string-width (substring x (1- f2) f2)) 2) (1- f2)
818 (- f2 2))
820 (list 'display org-narrow-column-arrow)
821 x))))))
822 ;; Get the maximum width for each column
823 (push (apply #'max (or fmax 1) 1 (mapcar #'org-string-width column))
824 lengths)
825 ;; Get the fraction of numbers among non-empty cells to
826 ;; decide about alignment of the column.
827 (if falign (push (equal (downcase falign) "r") typenums)
828 (let ((cnt 0)
829 (frac 0.0))
830 (dolist (x column)
831 (unless (equal x "")
832 (setq frac
833 (/ (+ (* frac cnt)
834 (if (org-string-match-p org-table-number-regexp x)
837 (incf cnt)))))
838 (push (>= frac org-table-number-fraction) typenums)))))
839 (setq lengths (nreverse lengths))
840 (setq typenums (nreverse typenums))
841 ;; Store alignment of this table, for later editing of single
842 ;; fields.
843 (setq org-table-last-alignment typenums)
844 (setq org-table-last-column-widths lengths)
845 ;; With invisible characters, `format' does not get the field
846 ;; width right So we need to make these fields wide by hand.
847 ;; Invisible characters may be introduced by fontified links,
848 ;; emphasis, macros or sub/superscripts.
849 (when (or (text-property-any beg end 'invisible 'org-link)
850 (text-property-any beg end 'invisible t))
851 (dotimes (i maxfields)
852 (let ((len (nth i lengths)))
853 (dotimes (j (length fields))
854 (let* ((c (nthcdr i (nth j fields)))
855 (cell (car c)))
856 (when (and
857 (stringp cell)
858 (let ((l (length cell)))
859 (or (text-property-any 0 l 'invisible 'org-link cell)
860 (text-property-any beg end 'invisible t)))
861 (< (org-string-width cell) len))
862 (let ((s (make-string (- len (org-string-width cell)) ?\s)))
863 (setcar c (if (nth i typenums) (concat s cell)
864 (concat cell s))))))))))
866 ;; Compute the formats needed for output of the table.
867 (let ((hfmt (concat indent "|"))
868 (rfmt (concat indent "|"))
869 (rfmt1 " %%%s%ds |")
870 (hfmt1 "-%s-+"))
871 (dolist (l lengths (setq hfmt (concat (substring hfmt 0 -1) "|")))
872 (let ((ty (if (pop typenums) "" "-"))) ; Flush numbers right.
873 (setq rfmt (concat rfmt (format rfmt1 ty l)))
874 (setq hfmt (concat hfmt (format hfmt1 (make-string l ?-))))))
875 ;; Replace modified lines only. Check not only contents, but
876 ;; also columns' width.
877 (dolist (l lines)
878 (let ((line
879 (if l (apply #'format rfmt (append (pop fields) emptycells))
880 hfmt))
881 (previous (buffer-substring (point) (line-end-position))))
882 (if (and (equal previous line)
883 (let ((a 0)
884 (b 0))
885 (while (and (progn
886 (setq a (next-single-property-change
887 a 'org-cwidth previous))
888 (setq b (next-single-property-change
889 b 'org-cwidth line)))
890 (eq a b)))
891 (eq a b)))
892 (forward-line)
893 (insert line "\n")
894 (delete-region (point) (line-beginning-position 2))))))
895 (when (and orgtbl-mode (not (derived-mode-p 'org-mode)))
896 (goto-char org-table-aligned-begin-marker)
897 (while (org-hide-wide-columns org-table-aligned-end-marker)))
898 (set-marker end nil)
899 (when org-table-overlay-coordinates (org-table-overlay-coordinates))
900 (setq org-table-may-need-update nil)))))
902 ;;;###autoload
903 (defun org-table-begin (&optional table-type)
904 "Find the beginning of the table and return its position.
905 With a non-nil optional argument TABLE-TYPE, return the beginning
906 of a table.el-type table. This function assumes point is on
907 a table."
908 (cond (table-type
909 (org-element-property :post-affiliated (org-element-at-point)))
910 ((save-excursion
911 (and (re-search-backward org-table-border-regexp nil t)
912 (line-beginning-position 2))))
913 (t (point-min))))
915 ;;;###autoload
916 (defun org-table-end (&optional table-type)
917 "Find the end of the table and return its position.
918 With a non-nil optional argument TABLE-TYPE, return the end of
919 a table.el-type table. This function assumes point is on
920 a table."
921 (save-excursion
922 (cond (table-type
923 (goto-char (org-element-property :end (org-element-at-point)))
924 (skip-chars-backward " \t\n")
925 (line-beginning-position 2))
926 ((re-search-forward org-table-border-regexp nil t)
927 (match-beginning 0))
928 ;; When the line right after the table is the last line in
929 ;; the buffer with trailing spaces but no final newline
930 ;; character, trailing spaces, be sure to catch the correct
931 ;; ending at its beginning. In any other case, ending is
932 ;; expected to be at point max.
933 (t (goto-char (point-max))
934 (skip-chars-backward " \t")
935 (if (bolp) (point) (line-end-position))))))
937 ;;;###autoload
938 (defun org-table-justify-field-maybe (&optional new)
939 "Justify the current field, text to left, number to right.
940 Optional argument NEW may specify text to replace the current field content."
941 (cond
942 ((and (not new) org-table-may-need-update)) ; Realignment will happen anyway
943 ((org-at-table-hline-p))
944 ((and (not new)
945 (or (not (equal (marker-buffer org-table-aligned-begin-marker)
946 (current-buffer)))
947 (< (point) org-table-aligned-begin-marker)
948 (>= (point) org-table-aligned-end-marker)))
949 ;; This is not the same table, force a full re-align
950 (setq org-table-may-need-update t))
951 (t ;; realign the current field, based on previous full realign
952 (let* ((pos (point)) s
953 (col (org-table-current-column))
954 (num (if (> col 0) (nth (1- col) org-table-last-alignment)))
955 l f n o e)
956 (when (> col 0)
957 (skip-chars-backward "^|\n")
958 (if (looking-at " *\\([^|\n]*?\\) *\\(|\\|$\\)")
959 (progn
960 (setq s (match-string 1)
961 o (match-string 0)
962 l (max 1
963 (- (org-string-width
964 (buffer-substring-no-properties
965 (match-end 0) (match-beginning 0))) 3))
966 e (not (= (match-beginning 2) (match-end 2))))
967 (setq f (format (if num " %%%ds %s" " %%-%ds %s")
968 l (if e "|" (setq org-table-may-need-update t) ""))
969 n (format f s))
970 (if new
971 (if (<= (org-string-width new) l)
972 (setq n (format f new))
973 (setq n (concat new "|") org-table-may-need-update t)))
974 (if (equal (string-to-char n) ?-) (setq n (concat " " n)))
975 (or (equal n o)
976 (let (org-table-may-need-update)
977 (replace-match n t t))))
978 (setq org-table-may-need-update t))
979 (goto-char pos))))))
981 ;;;###autoload
982 (defun org-table-next-field ()
983 "Go to the next field in the current table, creating new lines as needed.
984 Before doing so, re-align the table if necessary."
985 (interactive)
986 (org-table-maybe-eval-formula)
987 (org-table-maybe-recalculate-line)
988 (if (and org-table-automatic-realign
989 org-table-may-need-update)
990 (org-table-align))
991 (let ((end (org-table-end)))
992 (if (org-at-table-hline-p)
993 (end-of-line 1))
994 (condition-case nil
995 (progn
996 (re-search-forward "|" end)
997 (if (looking-at "[ \t]*$")
998 (re-search-forward "|" end))
999 (if (and (looking-at "-")
1000 org-table-tab-jumps-over-hlines
1001 (re-search-forward "^[ \t]*|\\([^-]\\)" end t))
1002 (goto-char (match-beginning 1)))
1003 (if (looking-at "-")
1004 (progn
1005 (beginning-of-line 0)
1006 (org-table-insert-row 'below))
1007 (if (looking-at " ") (forward-char 1))))
1008 (error
1009 (org-table-insert-row 'below)))))
1011 ;;;###autoload
1012 (defun org-table-previous-field ()
1013 "Go to the previous field in the table.
1014 Before doing so, re-align the table if necessary."
1015 (interactive)
1016 (org-table-justify-field-maybe)
1017 (org-table-maybe-recalculate-line)
1018 (if (and org-table-automatic-realign
1019 org-table-may-need-update)
1020 (org-table-align))
1021 (if (org-at-table-hline-p)
1022 (end-of-line 1))
1023 (condition-case nil
1024 (progn
1025 (re-search-backward "|" (org-table-begin))
1026 (re-search-backward "|" (org-table-begin)))
1027 (error (user-error "Cannot move to previous table field")))
1028 (while (looking-at "|\\(-\\|[ \t]*$\\)")
1029 (re-search-backward "|" (org-table-begin)))
1030 (if (looking-at "| ?")
1031 (goto-char (match-end 0))))
1033 (defun org-table-beginning-of-field (&optional n)
1034 "Move to the beginning of the current table field.
1035 If already at or before the beginning, move to the beginning of the
1036 previous field.
1037 With numeric argument N, move N-1 fields backward first."
1038 (interactive "p")
1039 (let ((pos (point)))
1040 (while (> n 1)
1041 (setq n (1- n))
1042 (org-table-previous-field))
1043 (if (not (re-search-backward "|" (point-at-bol 0) t))
1044 (user-error "No more table fields before the current")
1045 (goto-char (match-end 0))
1046 (and (looking-at " ") (forward-char 1)))
1047 (if (>= (point) pos) (org-table-beginning-of-field 2))))
1049 (defun org-table-end-of-field (&optional n)
1050 "Move to the end of the current table field.
1051 If already at or after the end, move to the end of the next table field.
1052 With numeric argument N, move N-1 fields forward first."
1053 (interactive "p")
1054 (let ((pos (point)))
1055 (while (> n 1)
1056 (setq n (1- n))
1057 (org-table-next-field))
1058 (when (re-search-forward "|" (point-at-eol 1) t)
1059 (backward-char 1)
1060 (skip-chars-backward " ")
1061 (if (and (equal (char-before (point)) ?|) (looking-at " "))
1062 (forward-char 1)))
1063 (if (<= (point) pos) (org-table-end-of-field 2))))
1065 ;;;###autoload
1066 (defun org-table-next-row ()
1067 "Go to the next row (same column) in the current table.
1068 Before doing so, re-align the table if necessary."
1069 (interactive)
1070 (org-table-maybe-eval-formula)
1071 (org-table-maybe-recalculate-line)
1072 (if (or (looking-at "[ \t]*$")
1073 (save-excursion (skip-chars-backward " \t") (bolp)))
1074 (newline)
1075 (if (and org-table-automatic-realign
1076 org-table-may-need-update)
1077 (org-table-align))
1078 (let ((col (org-table-current-column)))
1079 (beginning-of-line 2)
1080 (if (or (not (org-at-table-p))
1081 (org-at-table-hline-p))
1082 (progn
1083 (beginning-of-line 0)
1084 (org-table-insert-row 'below)))
1085 (org-table-goto-column col)
1086 (skip-chars-backward "^|\n\r")
1087 (if (looking-at " ") (forward-char 1)))))
1089 ;;;###autoload
1090 (defun org-table-copy-down (n)
1091 "Copy the value of the current field one row below.
1093 If the field at the cursor is empty, copy the content of the
1094 nearest non-empty field above. With argument N, use the Nth
1095 non-empty field.
1097 If the current field is not empty, it is copied down to the next
1098 row, and the cursor is moved with it. Therefore, repeating this
1099 command causes the column to be filled row-by-row.
1101 If the variable `org-table-copy-increment' is non-nil and the
1102 field is an integer or a timestamp, it will be incremented while
1103 copying. By default, increment by the difference between the
1104 value in the current field and the one in the field above. To
1105 increment using a fixed integer, set `org-table-copy-increment'
1106 to a number. In the case of a timestamp, increment by days."
1107 (interactive "p")
1108 (let* ((colpos (org-table-current-column))
1109 (col (current-column))
1110 (field (save-excursion (org-table-get-field)))
1111 (field-up (or (save-excursion
1112 (org-table-get (1- (org-table-current-line))
1113 (org-table-current-column))) ""))
1114 (non-empty (string-match "[^ \t]" field))
1115 (non-empty-up (string-match "[^ \t]" field-up))
1116 (beg (org-table-begin))
1117 (orig-n n)
1118 txt txt-up inc)
1119 (org-table-check-inside-data-field)
1120 (if (not non-empty)
1121 (save-excursion
1122 (setq txt
1123 (catch 'exit
1124 (while (progn (beginning-of-line 1)
1125 (re-search-backward org-table-dataline-regexp
1126 beg t))
1127 (org-table-goto-column colpos t)
1128 (if (and (looking-at
1129 "|[ \t]*\\([^| \t][^|]*?\\)[ \t]*|")
1130 (<= (setq n (1- n)) 0))
1131 (throw 'exit (match-string 1))))))
1132 (setq field-up
1133 (catch 'exit
1134 (while (progn (beginning-of-line 1)
1135 (re-search-backward org-table-dataline-regexp
1136 beg t))
1137 (org-table-goto-column colpos t)
1138 (if (and (looking-at
1139 "|[ \t]*\\([^| \t][^|]*?\\)[ \t]*|")
1140 (<= (setq n (1- n)) 0))
1141 (throw 'exit (match-string 1))))))
1142 (setq non-empty-up (and field-up (string-match "[^ \t]" field-up))))
1143 ;; Above field was not empty, go down to the next row
1144 (setq txt (org-trim field))
1145 (org-table-next-row)
1146 (org-table-blank-field))
1147 (if non-empty-up (setq txt-up (org-trim field-up)))
1148 (setq inc (cond
1149 ((numberp org-table-copy-increment) org-table-copy-increment)
1150 (txt-up (cond ((and (string-match org-ts-regexp3 txt-up)
1151 (string-match org-ts-regexp3 txt))
1152 (- (org-time-string-to-absolute txt)
1153 (org-time-string-to-absolute txt-up)))
1154 ((string-match org-ts-regexp3 txt) 1)
1155 ((string-match "^[0-9]+\\(\.[0-9]+\\)?" txt-up)
1156 (- (string-to-number txt)
1157 (string-to-number (match-string 0 txt-up))))
1158 (t 1)))
1159 (t 1)))
1160 (if (not txt)
1161 (user-error "No non-empty field found")
1162 (if (and org-table-copy-increment
1163 (not (equal orig-n 0))
1164 (string-match "^[-+^/*0-9eE.]+$" txt)
1165 (< (string-to-number txt) 100000000))
1166 (setq txt (calc-eval (concat txt "+" (number-to-string inc)))))
1167 (insert txt)
1168 (org-move-to-column col)
1169 (if (and org-table-copy-increment (org-at-timestamp-p t))
1170 (org-timestamp-up-day inc)
1171 (org-table-maybe-recalculate-line))
1172 (org-table-align)
1173 (org-move-to-column col))))
1175 (defun org-table-check-inside-data-field (&optional noerror)
1176 "Is point inside a table data field?
1177 I.e. not on a hline or before the first or after the last column?
1178 This actually throws an error, so it aborts the current command."
1179 (cond ((and (org-at-table-p)
1180 (not (save-excursion (skip-chars-backward " \t") (bolp)))
1181 (not (org-at-table-hline-p))
1182 (not (looking-at "[ \t]*$"))))
1183 (noerror nil)
1184 (t (user-error "Not in table data field"))))
1186 (defvar org-table-clip nil
1187 "Clipboard for table regions.")
1189 (defun org-table-get (line column)
1190 "Get the field in table line LINE, column COLUMN.
1191 If LINE is larger than the number of data lines in the table, the function
1192 returns nil. However, if COLUMN is too large, we will simply return an
1193 empty string.
1194 If LINE is nil, use the current line.
1195 If COLUMN is nil, use the current column."
1196 (setq column (or column (org-table-current-column)))
1197 (save-excursion
1198 (and (or (not line) (org-table-goto-line line))
1199 (org-trim (org-table-get-field column)))))
1201 (defun org-table-put (line column value &optional align)
1202 "Put VALUE into line LINE, column COLUMN.
1203 When ALIGN is set, also realign the table."
1204 (setq column (or column (org-table-current-column)))
1205 (prog1 (save-excursion
1206 (and (or (not line) (org-table-goto-line line))
1207 (progn (org-table-goto-column column nil 'force) t)
1208 (org-table-get-field column value)))
1209 (and align (org-table-align))))
1211 (defun org-table-current-line ()
1212 "Return the index of the current data line."
1213 (let ((pos (point)) (end (org-table-end)) (cnt 0))
1214 (save-excursion
1215 (goto-char (org-table-begin))
1216 (while (and (re-search-forward org-table-dataline-regexp end t)
1217 (setq cnt (1+ cnt))
1218 (< (point-at-eol) pos))))
1219 cnt))
1221 (defun org-table-goto-line (N)
1222 "Go to the Nth data line in the current table.
1223 Return t when the line exists, nil if it does not exist."
1224 (goto-char (org-table-begin))
1225 (let ((end (org-table-end)) (cnt 0))
1226 (while (and (re-search-forward org-table-dataline-regexp end t)
1227 (< (setq cnt (1+ cnt)) N)))
1228 (= cnt N)))
1230 ;;;###autoload
1231 (defun org-table-blank-field ()
1232 "Blank the current table field or active region."
1233 (interactive)
1234 (org-table-check-inside-data-field)
1235 (if (and (org-called-interactively-p 'any) (org-region-active-p))
1236 (let (org-table-clip)
1237 (org-table-cut-region (region-beginning) (region-end)))
1238 (skip-chars-backward "^|")
1239 (backward-char 1)
1240 (if (looking-at "|[^|\n]+")
1241 (let* ((pos (match-beginning 0))
1242 (match (match-string 0))
1243 (len (org-string-width match)))
1244 (replace-match (concat "|" (make-string (1- len) ?\ )))
1245 (goto-char (+ 2 pos))
1246 (substring match 1)))))
1248 (defun org-table-get-field (&optional n replace)
1249 "Return the value of the field in column N of current row.
1250 N defaults to current field.
1251 If REPLACE is a string, replace field with this value. The return value
1252 is always the old value."
1253 (and n (org-table-goto-column n))
1254 (skip-chars-backward "^|\n")
1255 (backward-char 1)
1256 (if (looking-at "|[^|\r\n]*")
1257 (let* ((pos (match-beginning 0))
1258 (val (buffer-substring (1+ pos) (match-end 0))))
1259 (if replace
1260 (replace-match (concat "|" (if (equal replace "") " " replace))
1261 t t))
1262 (goto-char (min (point-at-eol) (+ 2 pos)))
1263 val)
1264 (forward-char 1) ""))
1266 ;;;###autoload
1267 (defun org-table-field-info (arg)
1268 "Show info about the current field, and highlight any reference at point."
1269 (interactive "P")
1270 (unless (org-at-table-p) (user-error "Not at a table"))
1271 (org-table-analyze)
1272 (save-excursion
1273 (let* ((pos (point))
1274 (col (org-table-current-column))
1275 (cname (car (rassoc (int-to-string col) org-table-column-names)))
1276 (name (car (rassoc (list (count-lines org-table-current-begin-pos
1277 (line-beginning-position))
1278 col)
1279 org-table-named-field-locations)))
1280 (eql (org-table-expand-lhs-ranges
1281 (mapcar
1282 (lambda (e)
1283 (cons (org-table-formula-handle-first/last-rc (car e))
1284 (cdr e)))
1285 (org-table-get-stored-formulas))))
1286 (dline (org-table-current-dline))
1287 (ref (format "@%d$%d" dline col))
1288 (ref1 (org-table-convert-refs-to-an ref))
1289 ;; Prioritize field formulas over column formulas.
1290 (fequation (or (assoc name eql) (assoc ref eql)))
1291 (cequation (assoc (format "$%d" col) eql))
1292 (eqn (or fequation cequation)))
1293 (let ((p (and eqn (get-text-property 0 :orig-eqn (car eqn)))))
1294 (when p (setq eqn p)))
1295 (goto-char pos)
1296 (ignore-errors (org-table-show-reference 'local))
1297 (message "line @%d, col $%s%s, ref @%d$%d or %s%s%s"
1298 dline col
1299 (if cname (concat " or $" cname) "")
1300 dline col ref1
1301 (if name (concat " or $" name) "")
1302 ;; FIXME: formula info not correct if special table line
1303 (if eqn
1304 (concat ", formula: "
1305 (org-table-formula-to-user
1306 (concat
1307 (if (string-match "^[$@]"(car eqn)) "" "$")
1308 (car eqn) "=" (cdr eqn))))
1309 "")))))
1311 (defun org-table-current-column ()
1312 "Find out which column we are in."
1313 (interactive)
1314 (when (org-called-interactively-p 'any) (org-table-check-inside-data-field))
1315 (save-excursion
1316 (let ((column 0) (pos (point)))
1317 (beginning-of-line)
1318 (while (search-forward "|" pos t) (incf column))
1319 (when (org-called-interactively-p 'interactive)
1320 (message "In table column %d" column))
1321 column)))
1323 ;;;###autoload
1324 (defun org-table-current-dline ()
1325 "Find out what table data line we are in.
1326 Only data lines count for this."
1327 (interactive)
1328 (when (org-called-interactively-p 'any)
1329 (org-table-check-inside-data-field))
1330 (save-excursion
1331 (let ((c 0)
1332 (pos (point)))
1333 (goto-char (org-table-begin))
1334 (while (<= (point) pos)
1335 (when (looking-at org-table-dataline-regexp) (incf c))
1336 (forward-line))
1337 (when (org-called-interactively-p 'any)
1338 (message "This is table line %d" c))
1339 c)))
1341 ;;;###autoload
1342 (defun org-table-goto-column (n &optional on-delim force)
1343 "Move the cursor to the Nth column in the current table line.
1344 With optional argument ON-DELIM, stop with point before the left delimiter
1345 of the field.
1346 If there are less than N fields, just go to after the last delimiter.
1347 However, when FORCE is non-nil, create new columns if necessary."
1348 (interactive "p")
1349 (beginning-of-line 1)
1350 (when (> n 0)
1351 (while (and (> (setq n (1- n)) -1)
1352 (or (search-forward "|" (point-at-eol) t)
1353 (and force
1354 (progn (end-of-line 1)
1355 (skip-chars-backward "^|")
1356 (insert " | ")
1357 t)))))
1358 (when (and force (not (looking-at ".*|")))
1359 (save-excursion (end-of-line 1) (insert " | ")))
1360 (if on-delim
1361 (backward-char 1)
1362 (if (looking-at " ") (forward-char 1)))))
1364 ;;;###autoload
1365 (defun org-table-insert-column ()
1366 "Insert a new column into the table."
1367 (interactive)
1368 (unless (org-at-table-p) (user-error "Not at a table"))
1369 (org-table-find-dataline)
1370 (let* ((col (max 1 (org-table-current-column)))
1371 (beg (org-table-begin))
1372 (end (copy-marker (org-table-end))))
1373 (org-table-save-field
1374 (goto-char beg)
1375 (while (< (point) end)
1376 (unless (org-at-table-hline-p)
1377 (org-table-goto-column col t)
1378 (insert "| "))
1379 (forward-line)))
1380 (set-marker end nil)
1381 (org-table-align)
1382 (when (or (not org-table-fix-formulas-confirm)
1383 (funcall org-table-fix-formulas-confirm "Fix formulas? "))
1384 (org-table-fix-formulas "$" nil (1- col) 1)
1385 (org-table-fix-formulas "$LR" nil (1- col) 1))))
1387 (defun org-table-find-dataline ()
1388 "Find a data line in the current table, which is needed for column commands."
1389 (if (and (org-at-table-p)
1390 (not (org-at-table-hline-p)))
1392 (let ((col (current-column))
1393 (end (org-table-end)))
1394 (org-move-to-column col)
1395 (while (and (< (point) end)
1396 (or (not (= (current-column) col))
1397 (org-at-table-hline-p)))
1398 (beginning-of-line 2)
1399 (org-move-to-column col))
1400 (if (and (org-at-table-p)
1401 (not (org-at-table-hline-p)))
1403 (user-error
1404 "Please position cursor in a data line for column operations")))))
1406 (defun org-table-line-to-dline (line &optional above)
1407 "Turn a buffer line number into a data line number.
1409 If there is no data line in this line, return nil.
1411 If there is no matching dline (most likely the reference was
1412 a hline), the first dline below it is used. When ABOVE is
1413 non-nil, the one above is used."
1414 (let ((min 1)
1415 (max (1- (length org-table-dlines))))
1416 (cond ((or (> (aref org-table-dlines min) line)
1417 (< (aref org-table-dlines max) line))
1418 nil)
1419 ((= (aref org-table-dlines max) line) max)
1420 (t (catch 'exit
1421 (while (> (- max min) 1)
1422 (let* ((mean (/ (+ max min) 2))
1423 (v (aref org-table-dlines mean)))
1424 (cond ((= v line) (throw 'exit mean))
1425 ((> v line) (setq max mean))
1426 (t (setq min mean)))))
1427 (if above min max))))))
1429 ;;;###autoload
1430 (defun org-table-delete-column ()
1431 "Delete a column from the table."
1432 (interactive)
1433 (unless (org-at-table-p) (user-error "Not at a table"))
1434 (org-table-find-dataline)
1435 (org-table-check-inside-data-field)
1436 (let ((col (org-table-current-column))
1437 (beg (org-table-begin))
1438 (end (copy-marker (org-table-end))))
1439 (org-table-save-field
1440 (goto-char beg)
1441 (while (< (point) end)
1442 (if (org-at-table-hline-p)
1444 (org-table-goto-column col t)
1445 (and (looking-at "|[^|\n]+|")
1446 (replace-match "|")))
1447 (forward-line)))
1448 (set-marker end nil)
1449 (org-table-goto-column (max 1 (1- col)))
1450 (org-table-align)
1451 (when (or (not org-table-fix-formulas-confirm)
1452 (funcall org-table-fix-formulas-confirm "Fix formulas? "))
1453 (org-table-fix-formulas
1454 "$" (list (cons (number-to-string col) "INVALID")) col -1 col)
1455 (org-table-fix-formulas
1456 "$LR" (list (cons (number-to-string col) "INVALID")) col -1 col))))
1458 ;;;###autoload
1459 (defun org-table-move-column-right ()
1460 "Move column to the right."
1461 (interactive)
1462 (org-table-move-column nil))
1463 ;;;###autoload
1464 (defun org-table-move-column-left ()
1465 "Move column to the left."
1466 (interactive)
1467 (org-table-move-column 'left))
1469 ;;;###autoload
1470 (defun org-table-move-column (&optional left)
1471 "Move the current column to the right. With arg LEFT, move to the left."
1472 (interactive "P")
1473 (unless (org-at-table-p) (user-error "Not at a table"))
1474 (org-table-find-dataline)
1475 (org-table-check-inside-data-field)
1476 (let* ((col (org-table-current-column))
1477 (col1 (if left (1- col) col))
1478 (colpos (if left (1- col) (1+ col)))
1479 (beg (org-table-begin))
1480 (end (copy-marker (org-table-end))))
1481 (when (and left (= col 1))
1482 (user-error "Cannot move column further left"))
1483 (when (and (not left) (looking-at "[^|\n]*|[^|\n]*$"))
1484 (user-error "Cannot move column further right"))
1485 (org-table-save-field
1486 (goto-char beg)
1487 (while (< (point) end)
1488 (unless (org-at-table-hline-p)
1489 (org-table-goto-column col1 t)
1490 (when (looking-at "|\\([^|\n]+\\)|\\([^|\n]+\\)|")
1491 (replace-match "|\\2|\\1|")))
1492 (forward-line)))
1493 (set-marker end nil)
1494 (org-table-goto-column colpos)
1495 (org-table-align)
1496 (when (or (not org-table-fix-formulas-confirm)
1497 (funcall org-table-fix-formulas-confirm "Fix formulas? "))
1498 (org-table-fix-formulas
1499 "$" (list (cons (number-to-string col) (number-to-string colpos))
1500 (cons (number-to-string colpos) (number-to-string col))))
1501 (org-table-fix-formulas
1502 "$LR" (list (cons (number-to-string col) (number-to-string colpos))
1503 (cons (number-to-string colpos) (number-to-string col)))))))
1505 ;;;###autoload
1506 (defun org-table-move-row-down ()
1507 "Move table row down."
1508 (interactive)
1509 (org-table-move-row nil))
1510 ;;;###autoload
1511 (defun org-table-move-row-up ()
1512 "Move table row up."
1513 (interactive)
1514 (org-table-move-row 'up))
1516 ;;;###autoload
1517 (defun org-table-move-row (&optional up)
1518 "Move the current table line down. With arg UP, move it up."
1519 (interactive "P")
1520 (let* ((col (current-column))
1521 (pos (point))
1522 (hline1p (save-excursion (beginning-of-line 1)
1523 (looking-at org-table-hline-regexp)))
1524 (dline1 (org-table-current-dline))
1525 (dline2 (+ dline1 (if up -1 1)))
1526 (tonew (if up 0 2))
1527 txt hline2p)
1528 (beginning-of-line tonew)
1529 (unless (org-at-table-p)
1530 (goto-char pos)
1531 (user-error "Cannot move row further"))
1532 (setq hline2p (looking-at org-table-hline-regexp))
1533 (goto-char pos)
1534 (beginning-of-line 1)
1535 (setq pos (point))
1536 (setq txt (buffer-substring (point) (1+ (point-at-eol))))
1537 (delete-region (point) (1+ (point-at-eol)))
1538 (beginning-of-line tonew)
1539 (insert txt)
1540 (beginning-of-line 0)
1541 (org-move-to-column col)
1542 (unless (or hline1p hline2p
1543 (not (or (not org-table-fix-formulas-confirm)
1544 (funcall org-table-fix-formulas-confirm
1545 "Fix formulas? "))))
1546 (org-table-fix-formulas
1547 "@" (list (cons (number-to-string dline1) (number-to-string dline2))
1548 (cons (number-to-string dline2) (number-to-string dline1)))))))
1550 ;;;###autoload
1551 (defun org-table-insert-row (&optional arg)
1552 "Insert a new row above the current line into the table.
1553 With prefix ARG, insert below the current line."
1554 (interactive "P")
1555 (if (not (org-at-table-p))
1556 (user-error "Not at a table"))
1557 (let* ((line (buffer-substring (point-at-bol) (point-at-eol)))
1558 (new (org-table-clean-line line)))
1559 ;; Fix the first field if necessary
1560 (if (string-match "^[ \t]*| *[#$] *|" line)
1561 (setq new (replace-match (match-string 0 line) t t new)))
1562 (beginning-of-line (if arg 2 1))
1563 (let (org-table-may-need-update) (insert-before-markers new "\n"))
1564 (beginning-of-line 0)
1565 (re-search-forward "| ?" (point-at-eol) t)
1566 (and (or org-table-may-need-update org-table-overlay-coordinates)
1567 (org-table-align))
1568 (when (or (not org-table-fix-formulas-confirm)
1569 (funcall org-table-fix-formulas-confirm "Fix formulas? "))
1570 (org-table-fix-formulas "@" nil (1- (org-table-current-dline)) 1))))
1572 ;;;###autoload
1573 (defun org-table-insert-hline (&optional above)
1574 "Insert a horizontal-line below the current line into the table.
1575 With prefix ABOVE, insert above the current line."
1576 (interactive "P")
1577 (if (not (org-at-table-p))
1578 (user-error "Not at a table"))
1579 (when (eobp) (insert "\n") (backward-char 1))
1580 (if (not (string-match "|[ \t]*$" (org-current-line-string)))
1581 (org-table-align))
1582 (let ((line (org-table-clean-line
1583 (buffer-substring (point-at-bol) (point-at-eol))))
1584 (col (current-column)))
1585 (while (string-match "|\\( +\\)|" line)
1586 (setq line (replace-match
1587 (concat "+" (make-string (- (match-end 1) (match-beginning 1))
1588 ?-) "|") t t line)))
1589 (and (string-match "\\+" line) (setq line (replace-match "|" t t line)))
1590 (beginning-of-line (if above 1 2))
1591 (insert line "\n")
1592 (beginning-of-line (if above 1 -1))
1593 (org-move-to-column col)
1594 (and org-table-overlay-coordinates (org-table-align))))
1596 ;;;###autoload
1597 (defun org-table-hline-and-move (&optional same-column)
1598 "Insert a hline and move to the row below that line."
1599 (interactive "P")
1600 (let ((col (org-table-current-column)))
1601 (org-table-maybe-eval-formula)
1602 (org-table-maybe-recalculate-line)
1603 (org-table-insert-hline)
1604 (end-of-line 2)
1605 (if (looking-at "\n[ \t]*|-")
1606 (progn (insert "\n|") (org-table-align))
1607 (org-table-next-field))
1608 (if same-column (org-table-goto-column col))))
1610 (defun org-table-clean-line (s)
1611 "Convert a table line S into a string with only \"|\" and space.
1612 In particular, this does handle wide and invisible characters."
1613 (if (string-match "^[ \t]*|-" s)
1614 ;; It's a hline, just map the characters
1615 (setq s (mapconcat (lambda (x) (if (member x '(?| ?+)) "|" " ")) s ""))
1616 (while (string-match "|\\([ \t]*?[^ \t\r\n|][^\r\n|]*\\)|" s)
1617 (setq s (replace-match
1618 (concat "|" (make-string (org-string-width (match-string 1 s))
1619 ?\ ) "|")
1620 t t s)))
1623 ;;;###autoload
1624 (defun org-table-kill-row ()
1625 "Delete the current row or horizontal line from the table."
1626 (interactive)
1627 (if (not (org-at-table-p))
1628 (user-error "Not at a table"))
1629 (let ((col (current-column))
1630 (dline (org-table-current-dline)))
1631 (kill-region (point-at-bol) (min (1+ (point-at-eol)) (point-max)))
1632 (if (not (org-at-table-p)) (beginning-of-line 0))
1633 (org-move-to-column col)
1634 (when (or (not org-table-fix-formulas-confirm)
1635 (funcall org-table-fix-formulas-confirm "Fix formulas? "))
1636 (org-table-fix-formulas "@" (list (cons (number-to-string dline) "INVALID"))
1637 dline -1 dline))))
1639 ;;;###autoload
1640 (defun org-table-sort-lines (with-case &optional sorting-type getkey-func compare-func)
1641 "Sort table lines according to the column at point.
1643 The position of point indicates the column to be used for
1644 sorting, and the range of lines is the range between the nearest
1645 horizontal separator lines, or the entire table of no such lines
1646 exist. If point is before the first column, you will be prompted
1647 for the sorting column. If there is an active region, the mark
1648 specifies the first line and the sorting column, while point
1649 should be in the last line to be included into the sorting.
1651 The command then prompts for the sorting type which can be
1652 alphabetically, numerically, or by time (as given in a time stamp
1653 in the field, or as a HH:MM value). Sorting in reverse order is
1654 also possible.
1656 With prefix argument WITH-CASE, alphabetic sorting will be case-sensitive.
1658 If SORTING-TYPE is specified when this function is called from a Lisp
1659 program, no prompting will take place. SORTING-TYPE must be a character,
1660 any of (?a ?A ?n ?N ?t ?T ?f ?F) where the capital letters indicate that
1661 sorting should be done in reverse order.
1663 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
1664 a function to be called to extract the key. It must return either
1665 a string or a number that should serve as the sorting key for that
1666 row. It will then use COMPARE-FUNC to compare entries. If GETKEY-FUNC
1667 is specified interactively, the comparison will be either a string or
1668 numeric compare based on the type of the first key in the table."
1669 (interactive "P")
1670 (when (org-region-active-p) (goto-char (region-beginning)))
1671 ;; Point must be either within a field or before a data line.
1672 (save-excursion
1673 (skip-chars-backward " \t")
1674 (when (bolp) (search-forward "|" (line-end-position) t))
1675 (org-table-check-inside-data-field))
1676 ;; Set appropriate case sensitivity and column used for sorting.
1677 (let ((column (let ((c (org-table-current-column)))
1678 (cond ((> c 0) c)
1679 ((org-called-interactively-p 'any)
1680 (read-number "Use column N for sorting: "))
1681 (t 1))))
1682 (sorting-type
1683 (or sorting-type
1684 (read-char-exclusive "Sort Table: [a]lphabetic, [n]umeric, \
1685 \[t]ime, [f]unc. A/N/T/F means reversed: "))))
1686 (save-restriction
1687 ;; Narrow buffer to appropriate sorting area.
1688 (if (org-region-active-p)
1689 (progn (goto-char (region-beginning))
1690 (narrow-to-region
1691 (point)
1692 (save-excursion (goto-char (region-end))
1693 (line-beginning-position 2))))
1694 (let ((start (org-table-begin))
1695 (end (org-table-end)))
1696 (narrow-to-region
1697 (save-excursion
1698 (if (re-search-backward org-table-hline-regexp start t)
1699 (line-beginning-position 2)
1700 start))
1701 (if (save-excursion (re-search-forward org-table-hline-regexp end t))
1702 (match-beginning 0)
1703 end))))
1704 ;; Determine arguments for `sort-subr'. Also record original
1705 ;; position. `org-table-save-field' cannot help here since
1706 ;; sorting is too much destructive.
1707 (let* ((sort-fold-case (not with-case))
1708 (coordinates
1709 (cons (count-lines (point-min) (line-beginning-position))
1710 (current-column)))
1711 (extract-key-from-field
1712 ;; Function to be called on the contents of the field
1713 ;; used for sorting in the current row.
1714 (case sorting-type
1715 ((?n ?N) #'string-to-number)
1716 ((?a ?A) #'org-sort-remove-invisible)
1717 ((?t ?T)
1718 (lambda (f)
1719 (cond ((string-match org-ts-regexp-both f)
1720 (org-float-time
1721 (org-time-string-to-time (match-string 0 f))))
1722 ((string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" f)
1723 (org-hh:mm-string-to-minutes f))
1724 (t 0))))
1725 ((?f ?F)
1726 (or getkey-func
1727 (and (org-called-interactively-p 'any)
1728 (intern
1729 (completing-read "Sort using function: "
1730 obarray #'fboundp t)))
1731 (error "Missing key extractor to sort rows")))
1732 (t (user-error "Invalid sorting type `%c'" sorting-type))))
1733 (predicate
1734 (case sorting-type
1735 ((?n ?N ?t ?T) #'<)
1736 ((?a ?A) #'string<)
1737 ((?f ?F) compare-func))))
1738 (goto-char (point-min))
1739 (sort-subr (memq sorting-type '(?A ?N ?T ?F))
1740 (lambda ()
1741 (forward-line)
1742 (while (and (not (eobp))
1743 (not (looking-at org-table-dataline-regexp)))
1744 (forward-line)))
1745 #'end-of-line
1746 (lambda ()
1747 (funcall extract-key-from-field
1748 (org-trim (org-table-get-field column))))
1750 predicate)
1751 ;; Move back to initial field.
1752 (forward-line (car coordinates))
1753 (move-to-column (cdr coordinates))))))
1755 ;;;###autoload
1756 (defun org-table-cut-region (beg end)
1757 "Copy region in table to the clipboard and blank all relevant fields.
1758 If there is no active region, use just the field at point."
1759 (interactive (list
1760 (if (org-region-active-p) (region-beginning) (point))
1761 (if (org-region-active-p) (region-end) (point))))
1762 (org-table-copy-region beg end 'cut))
1764 ;;;###autoload
1765 (defun org-table-copy-region (beg end &optional cut)
1766 "Copy rectangular region in table to clipboard.
1767 A special clipboard is used which can only be accessed
1768 with `org-table-paste-rectangle'."
1769 (interactive (list
1770 (if (org-region-active-p) (region-beginning) (point))
1771 (if (org-region-active-p) (region-end) (point))
1772 current-prefix-arg))
1773 (goto-char (min beg end))
1774 (org-table-check-inside-data-field)
1775 (let ((beg (line-beginning-position))
1776 (c01 (org-table-current-column))
1777 region)
1778 (goto-char (max beg end))
1779 (org-table-check-inside-data-field)
1780 (let* ((end (copy-marker (line-end-position)))
1781 (c02 (org-table-current-column))
1782 (column-start (min c01 c02))
1783 (column-end (max c01 c02))
1784 (column-number (1+ (- column-end column-start)))
1785 (rpl (and cut " ")))
1786 (goto-char beg)
1787 (while (< (point) end)
1788 (unless (org-at-table-hline-p)
1789 ;; Collect every cell between COLUMN-START and COLUMN-END.
1790 (let (cols)
1791 (dotimes (c column-number)
1792 (push (org-table-get-field (+ c column-start) rpl) cols))
1793 (push (nreverse cols) region)))
1794 (forward-line))
1795 (set-marker end nil))
1796 (when cut (org-table-align))
1797 (setq org-table-clip (nreverse region))))
1799 ;;;###autoload
1800 (defun org-table-paste-rectangle ()
1801 "Paste a rectangular region into a table.
1802 The upper right corner ends up in the current field. All involved fields
1803 will be overwritten. If the rectangle does not fit into the present table,
1804 the table is enlarged as needed. The process ignores horizontal separator
1805 lines."
1806 (interactive)
1807 (unless (consp org-table-clip)
1808 (user-error "First cut/copy a region to paste!"))
1809 (org-table-check-inside-data-field)
1810 (let* ((column (org-table-current-column))
1811 (org-enable-table-editor t)
1812 (org-table-automatic-realign nil))
1813 (org-table-save-field
1814 (dolist (row org-table-clip)
1815 (while (org-at-table-hline-p) (forward-line))
1816 ;; If we left the table, create a new row.
1817 (when (and (bolp) (not (looking-at "[ \t]*|")))
1818 (end-of-line 0)
1819 (org-table-next-field))
1820 (let ((c column))
1821 (dolist (field row)
1822 (org-table-goto-column c nil 'force)
1823 (org-table-get-field nil field)
1824 (incf c)))
1825 (forward-line)))
1826 (org-table-align)))
1828 ;;;###autoload
1829 (defun org-table-convert ()
1830 "Convert from `org-mode' table to table.el and back.
1831 Obviously, this only works within limits. When an Org-mode table is
1832 converted to table.el, all horizontal separator lines get lost, because
1833 table.el uses these as cell boundaries and has no notion of horizontal lines.
1834 A table.el table can be converted to an Org-mode table only if it does not
1835 do row or column spanning. Multiline cells will become multiple cells.
1836 Beware, Org-mode does not test if the table can be successfully converted - it
1837 blindly applies a recipe that works for simple tables."
1838 (interactive)
1839 (require 'table)
1840 (if (org-at-table.el-p)
1841 ;; convert to Org-mode table
1842 (let ((beg (copy-marker (org-table-begin t)))
1843 (end (copy-marker (org-table-end t))))
1844 (table-unrecognize-region beg end)
1845 (goto-char beg)
1846 (while (re-search-forward "^\\([ \t]*\\)\\+-.*\n" end t)
1847 (replace-match ""))
1848 (goto-char beg))
1849 (if (org-at-table-p)
1850 ;; convert to table.el table
1851 (let ((beg (copy-marker (org-table-begin)))
1852 (end (copy-marker (org-table-end))))
1853 ;; first, get rid of all horizontal lines
1854 (goto-char beg)
1855 (while (re-search-forward "^\\([ \t]*\\)|-.*\n" end t)
1856 (replace-match ""))
1857 ;; insert a hline before first
1858 (goto-char beg)
1859 (org-table-insert-hline 'above)
1860 (beginning-of-line -1)
1861 ;; insert a hline after each line
1862 (while (progn (beginning-of-line 3) (< (point) end))
1863 (org-table-insert-hline))
1864 (goto-char beg)
1865 (setq end (move-marker end (org-table-end)))
1866 ;; replace "+" at beginning and ending of hlines
1867 (while (re-search-forward "^\\([ \t]*\\)|-" end t)
1868 (replace-match "\\1+-"))
1869 (goto-char beg)
1870 (while (re-search-forward "-|[ \t]*$" end t)
1871 (replace-match "-+"))
1872 (goto-char beg)))))
1874 (defun org-table-transpose-table-at-point ()
1875 "Transpose Org table at point and eliminate hlines.
1876 So a table like
1878 | 1 | 2 | 4 | 5 |
1879 |---+---+---+---|
1880 | a | b | c | d |
1881 | e | f | g | h |
1883 will be transposed as
1885 | 1 | a | e |
1886 | 2 | b | f |
1887 | 4 | c | g |
1888 | 5 | d | h |
1890 Note that horizontal lines disappear."
1891 (interactive)
1892 (let* ((table (delete 'hline (org-table-to-lisp)))
1893 (dline_old (org-table-current-line))
1894 (col_old (org-table-current-column))
1895 (contents (mapcar (lambda (p)
1896 (let ((tp table))
1897 (mapcar
1898 (lambda (rown)
1899 (prog1
1900 (pop (car tp))
1901 (setq tp (cdr tp))))
1902 table)))
1903 (car table))))
1904 (goto-char (org-table-begin))
1905 (re-search-forward "|")
1906 (backward-char)
1907 (delete-region (point) (org-table-end))
1908 (insert (mapconcat
1909 (lambda(x)
1910 (concat "| " (mapconcat 'identity x " | " ) " |\n" ))
1911 contents ""))
1912 (org-table-goto-line col_old)
1913 (org-table-goto-column dline_old))
1914 (org-table-align))
1916 ;;;###autoload
1917 (defun org-table-wrap-region (arg)
1918 "Wrap several fields in a column like a paragraph.
1919 This is useful if you'd like to spread the contents of a field over several
1920 lines, in order to keep the table compact.
1922 If there is an active region, and both point and mark are in the same column,
1923 the text in the column is wrapped to minimum width for the given number of
1924 lines. Generally, this makes the table more compact. A prefix ARG may be
1925 used to change the number of desired lines. For example, \
1926 `C-2 \\[org-table-wrap-region]'
1927 formats the selected text to two lines. If the region was longer than two
1928 lines, the remaining lines remain empty. A negative prefix argument reduces
1929 the current number of lines by that amount. The wrapped text is pasted back
1930 into the table. If you formatted it to more lines than it was before, fields
1931 further down in the table get overwritten - so you might need to make space in
1932 the table first.
1934 If there is no region, the current field is split at the cursor position and
1935 the text fragment to the right of the cursor is prepended to the field one
1936 line down.
1938 If there is no region, but you specify a prefix ARG, the current field gets
1939 blank, and the content is appended to the field above."
1940 (interactive "P")
1941 (org-table-check-inside-data-field)
1942 (if (org-region-active-p)
1943 ;; There is a region: fill as a paragraph.
1944 (let ((start (region-beginning)))
1945 (org-table-cut-region (region-beginning) (region-end))
1946 (when (> (length (car org-table-clip)) 1)
1947 (user-error "Region must be limited to single column"))
1948 (let ((nlines (cond ((not arg) (length org-table-clip))
1949 ((< arg 1) (+ (length org-table-clip) arg))
1950 (t arg))))
1951 (setq org-table-clip
1952 (mapcar #'list
1953 (org-wrap (mapconcat #'car org-table-clip " ")
1955 nlines))))
1956 (goto-char start)
1957 (org-table-paste-rectangle))
1958 ;; No region, split the current field at point.
1959 (unless (org-get-alist-option org-M-RET-may-split-line 'table)
1960 (skip-chars-forward "^\r\n|"))
1961 (cond
1962 (arg ; Combine with field above.
1963 (let ((s (org-table-blank-field))
1964 (col (org-table-current-column)))
1965 (forward-line -1)
1966 (while (org-at-table-hline-p) (forward-line -1))
1967 (org-table-goto-column col)
1968 (skip-chars-forward "^|")
1969 (skip-chars-backward " ")
1970 (insert " " (org-trim s))
1971 (org-table-align)))
1972 ((looking-at "\\([^|]+\\)+|") ; Split field.
1973 (let ((s (match-string 1)))
1974 (replace-match " |")
1975 (goto-char (match-beginning 0))
1976 (org-table-next-row)
1977 (insert (org-trim s) " ")
1978 (org-table-align)))
1979 (t (org-table-next-row)))))
1981 (defvar org-field-marker nil)
1983 ;;;###autoload
1984 (defun org-table-edit-field (arg)
1985 "Edit table field in a different window.
1986 This is mainly useful for fields that contain hidden parts.
1987 When called with a \\[universal-argument] prefix, just make the full field visible so that
1988 it can be edited in place."
1989 (interactive "P")
1990 (cond
1991 ((equal arg '(16))
1992 (org-table-follow-field-mode (if org-table-follow-field-mode -1 1)))
1993 (arg
1994 (let ((b (save-excursion (skip-chars-backward "^|") (point)))
1995 (e (save-excursion (skip-chars-forward "^|\r\n") (point))))
1996 (remove-text-properties b e '(org-cwidth t invisible t
1997 display t intangible t))
1998 (if (and (boundp 'font-lock-mode) font-lock-mode)
1999 (font-lock-fontify-block))))
2001 (let ((pos (point-marker))
2002 (coord
2003 (if (eq org-table-use-standard-references t)
2004 (concat (org-number-to-letters (org-table-current-column))
2005 (int-to-string (org-table-current-dline)))
2006 (concat "@" (int-to-string (org-table-current-dline))
2007 "$" (int-to-string (org-table-current-column)))))
2008 (field (org-table-get-field))
2009 (cw (current-window-configuration))
2011 (goto-char pos)
2012 (org-switch-to-buffer-other-window "*Org Table Edit Field*")
2013 (when (and (local-variable-p 'org-field-marker)
2014 (markerp org-field-marker))
2015 (move-marker org-field-marker nil))
2016 (erase-buffer)
2017 (insert "#\n# Edit field " coord " and finish with C-c C-c\n#\n")
2018 (let ((org-inhibit-startup t)) (org-mode))
2019 (auto-fill-mode -1)
2020 (setq truncate-lines nil)
2021 (setq word-wrap t)
2022 (goto-char (setq p (point-max)))
2023 (insert (org-trim field))
2024 (remove-text-properties p (point-max)
2025 '(invisible t org-cwidth t display t
2026 intangible t))
2027 (goto-char p)
2028 (org-set-local 'org-finish-function 'org-table-finish-edit-field)
2029 (org-set-local 'org-window-configuration cw)
2030 (org-set-local 'org-field-marker pos)
2031 (message "Edit and finish with C-c C-c")))))
2033 (defun org-table-finish-edit-field ()
2034 "Finish editing a table data field.
2035 Remove all newline characters, insert the result into the table, realign
2036 the table and kill the editing buffer."
2037 (let ((pos org-field-marker)
2038 (cw org-window-configuration)
2039 (cb (current-buffer))
2040 text)
2041 (goto-char (point-min))
2042 (while (re-search-forward "^#.*\n?" nil t) (replace-match ""))
2043 (while (re-search-forward "\\([ \t]*\n[ \t]*\\)+" nil t)
2044 (replace-match " "))
2045 (setq text (org-trim (buffer-string)))
2046 (set-window-configuration cw)
2047 (kill-buffer cb)
2048 (select-window (get-buffer-window (marker-buffer pos)))
2049 (goto-char pos)
2050 (move-marker pos nil)
2051 (org-table-check-inside-data-field)
2052 (org-table-get-field nil text)
2053 (org-table-align)
2054 (message "New field value inserted")))
2056 (define-minor-mode org-table-follow-field-mode
2057 "Minor mode to make the table field editor window follow the cursor.
2058 When this mode is active, the field editor window will always show the
2059 current field. The mode exits automatically when the cursor leaves the
2060 table (but see `org-table-exit-follow-field-mode-when-leaving-table')."
2061 nil " TblFollow" nil
2062 (if org-table-follow-field-mode
2063 (org-add-hook 'post-command-hook 'org-table-follow-fields-with-editor
2064 'append 'local)
2065 (remove-hook 'post-command-hook 'org-table-follow-fields-with-editor 'local)
2066 (let* ((buf (get-buffer "*Org Table Edit Field*"))
2067 (win (and buf (get-buffer-window buf))))
2068 (when win (delete-window win))
2069 (when buf
2070 (with-current-buffer buf
2071 (move-marker org-field-marker nil))
2072 (kill-buffer buf)))))
2074 (defun org-table-follow-fields-with-editor ()
2075 (if (and org-table-exit-follow-field-mode-when-leaving-table
2076 (not (org-at-table-p)))
2077 ;; We have left the table, exit the follow mode
2078 (org-table-follow-field-mode -1)
2079 (when (org-table-check-inside-data-field 'noerror)
2080 (let ((win (selected-window)))
2081 (org-table-edit-field nil)
2082 (org-fit-window-to-buffer)
2083 (select-window win)))))
2085 (defvar org-timecnt) ; dynamically scoped parameter
2087 ;;;###autoload
2088 (defun org-table-sum (&optional beg end nlast)
2089 "Sum numbers in region of current table column.
2090 The result will be displayed in the echo area, and will be available
2091 as kill to be inserted with \\[yank].
2093 If there is an active region, it is interpreted as a rectangle and all
2094 numbers in that rectangle will be summed. If there is no active
2095 region and point is located in a table column, sum all numbers in that
2096 column.
2098 If at least one number looks like a time HH:MM or HH:MM:SS, all other
2099 numbers are assumed to be times as well (in decimal hours) and the
2100 numbers are added as such.
2102 If NLAST is a number, only the NLAST fields will actually be summed."
2103 (interactive)
2104 (save-excursion
2105 (let (col (org-timecnt 0) diff h m s org-table-clip)
2106 (cond
2107 ((and beg end)) ; beg and end given explicitly
2108 ((org-region-active-p)
2109 (setq beg (region-beginning) end (region-end)))
2111 (setq col (org-table-current-column))
2112 (goto-char (org-table-begin))
2113 (unless (re-search-forward "^[ \t]*|[^-]" nil t)
2114 (user-error "No table data"))
2115 (org-table-goto-column col)
2116 (setq beg (point))
2117 (goto-char (org-table-end))
2118 (unless (re-search-backward "^[ \t]*|[^-]" nil t)
2119 (user-error "No table data"))
2120 (org-table-goto-column col)
2121 (setq end (point))))
2122 (let* ((items (apply 'append (org-table-copy-region beg end)))
2123 (items1 (cond ((not nlast) items)
2124 ((>= nlast (length items)) items)
2125 (t (setq items (reverse items))
2126 (setcdr (nthcdr (1- nlast) items) nil)
2127 (nreverse items))))
2128 (numbers (delq nil (mapcar 'org-table-get-number-for-summing
2129 items1)))
2130 (res (apply '+ numbers))
2131 (sres (if (= org-timecnt 0)
2132 (number-to-string res)
2133 (setq diff (* 3600 res)
2134 h (floor (/ diff 3600)) diff (mod diff 3600)
2135 m (floor (/ diff 60)) diff (mod diff 60)
2136 s diff)
2137 (format "%.0f:%02.0f:%02.0f" h m s))))
2138 (kill-new sres)
2139 (if (org-called-interactively-p 'interactive)
2140 (message "%s"
2141 (substitute-command-keys
2142 (format "Sum of %d items: %-20s (\\[yank] will insert result into buffer)"
2143 (length numbers) sres))))
2144 sres))))
2146 (defun org-table-get-number-for-summing (s)
2147 (let (n)
2148 (if (string-match "^ *|? *" s)
2149 (setq s (replace-match "" nil nil s)))
2150 (if (string-match " *|? *$" s)
2151 (setq s (replace-match "" nil nil s)))
2152 (setq n (string-to-number s))
2153 (cond
2154 ((and (string-match "0" s)
2155 (string-match "\\`[-+ \t0.edED]+\\'" s)) 0)
2156 ((string-match "\\`[ \t]+\\'" s) nil)
2157 ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\)\\(:\\([0-9]+\\)\\)?\\'" s)
2158 (let ((h (string-to-number (or (match-string 1 s) "0")))
2159 (m (string-to-number (or (match-string 2 s) "0")))
2160 (s (string-to-number (or (match-string 4 s) "0"))))
2161 (if (boundp 'org-timecnt) (setq org-timecnt (1+ org-timecnt)))
2162 (* 1.0 (+ h (/ m 60.0) (/ s 3600.0)))))
2163 ((equal n 0) nil)
2164 (t n))))
2166 (defun org-table-current-field-formula (&optional key noerror)
2167 "Return the formula active for the current field.
2169 Assumes that table is already analyzed. If KEY is given, return
2170 the key to this formula. Otherwise return the formula preceded
2171 with \"=\" or \":=\"."
2172 (let* ((col (org-table-current-column))
2173 (name (car (rassoc (list (count-lines org-table-current-begin-pos
2174 (line-beginning-position))
2175 col)
2176 org-table-named-field-locations)))
2177 (scol (int-to-string col))
2178 (ref (format "@%d$%d" (org-table-current-dline) col))
2179 (stored-list (org-table-get-stored-formulas noerror))
2180 (ass (or (assoc name stored-list)
2181 (assoc ref stored-list)
2182 (assoc scol stored-list))))
2183 (cond (key (car ass))
2184 (ass (concat (if (string-match "^[0-9]+$" (car ass)) "=" ":=")
2185 (cdr ass))))))
2187 (defun org-table-get-formula (&optional equation named)
2188 "Read a formula from the minibuffer, offer stored formula as default.
2189 When NAMED is non-nil, look for a named equation."
2190 (let* ((stored-list (org-table-get-stored-formulas))
2191 (name (car (rassoc (list (count-lines org-table-current-begin-pos
2192 (line-beginning-position))
2193 (org-table-current-column))
2194 org-table-named-field-locations)))
2195 (ref (format "@%d$%d"
2196 (org-table-current-dline)
2197 (org-table-current-column)))
2198 (refass (assoc ref stored-list))
2199 (nameass (assoc name stored-list))
2200 (scol (cond
2201 ((not named) (format "$%d" (org-table-current-column)))
2202 ((and name (not (string-match "\\`LR[0-9]+\\'" name))) name)
2203 (t ref)))
2204 (dummy (and (or nameass refass)
2205 (not named)
2206 (not (y-or-n-p "Replace existing field formula with \
2207 column formula? " ))
2208 (message "Formula not replaced")))
2209 (name (or name ref))
2210 (org-table-may-need-update nil)
2211 (stored (cdr (assoc scol stored-list)))
2212 (eq (cond
2213 ((and stored equation (string-match "^ *=? *$" equation))
2214 stored)
2215 ((stringp equation)
2216 equation)
2217 (t (org-table-formula-from-user
2218 (read-string
2219 (org-table-formula-to-user
2220 (format "%s formula %s="
2221 (if named "Field" "Column")
2222 scol))
2223 (if stored (org-table-formula-to-user stored) "")
2224 'org-table-formula-history
2225 )))))
2226 mustsave)
2227 (when (not (string-match "\\S-" eq))
2228 ;; remove formula
2229 (setq stored-list (delq (assoc scol stored-list) stored-list))
2230 (org-table-store-formulas stored-list)
2231 (user-error "Formula removed"))
2232 (if (string-match "^ *=?" eq) (setq eq (replace-match "" t t eq)))
2233 (if (string-match " *$" eq) (setq eq (replace-match "" t t eq)))
2234 (if (and name (not named))
2235 ;; We set the column equation, delete the named one.
2236 (setq stored-list (delq (assoc name stored-list) stored-list)
2237 mustsave t))
2238 (if stored
2239 (setcdr (assoc scol stored-list) eq)
2240 (setq stored-list (cons (cons scol eq) stored-list)))
2241 (if (or mustsave (not (equal stored eq)))
2242 (org-table-store-formulas stored-list))
2243 eq))
2245 (defun org-table-store-formulas (alist)
2246 "Store the list of formulas below the current table."
2247 (save-excursion
2248 (goto-char (org-table-end))
2249 (let ((case-fold-search t))
2250 (if (looking-at "\\([ \t]*\n\\)*[ \t]*\\(#\\+tblfm:\\)\\(.*\n?\\)")
2251 (progn
2252 ;; Don't overwrite TBLFM, we might use text properties to
2253 ;; store stuff.
2254 (goto-char (match-beginning 3))
2255 (delete-region (match-beginning 3) (match-end 0)))
2256 (org-indent-line)
2257 (insert (or (match-string 2) "#+TBLFM:")))
2258 (insert " "
2259 (mapconcat (lambda (x) (concat (car x) "=" (cdr x)))
2260 (sort alist #'org-table-formula-less-p)
2261 "::")
2262 "\n"))))
2264 (defsubst org-table-formula-make-cmp-string (a)
2265 (when (string-match "\\`$[<>]" a)
2266 (let ((arrow (string-to-char (substring a 1))))
2267 ;; Fake a high number to make sure this is sorted at the end.
2268 (setq a (org-table-formula-handle-first/last-rc a))
2269 (setq a (format "$%d" (+ 10000
2270 (if (= arrow ?<) -1000 0)
2271 (string-to-number (substring a 1)))))))
2272 (when (string-match
2273 "^\\(@\\([0-9]+\\)\\)?\\(\\$?\\([0-9]+\\)\\)?\\(\\$?[a-zA-Z0-9]+\\)?"
2275 (concat
2276 (if (match-end 2)
2277 (format "@%05d" (string-to-number (match-string 2 a))) "")
2278 (if (match-end 4)
2279 (format "$%05d" (string-to-number (match-string 4 a))) "")
2280 (if (match-end 5)
2281 (concat "@@" (match-string 5 a))))))
2283 (defun org-table-formula-less-p (a b)
2284 "Compare two formulas for sorting."
2285 (let ((as (org-table-formula-make-cmp-string (car a)))
2286 (bs (org-table-formula-make-cmp-string (car b))))
2287 (and as bs (string< as bs))))
2289 ;;;###autoload
2290 (defun org-table-get-stored-formulas (&optional noerror)
2291 "Return an alist with the stored formulas directly after current table."
2292 (save-excursion
2293 (goto-char (org-table-end))
2294 (let ((case-fold-search t))
2295 (when (looking-at "\\([ \t]*\n\\)*[ \t]*#\\+TBLFM: *\\(.*\\)")
2296 (let ((strings (org-split-string (org-match-string-no-properties 2)
2297 " *:: *"))
2298 eq-alist seen)
2299 (dolist (string strings (nreverse eq-alist))
2300 (when (string-match "\\`\\(@[-+I<>0-9.$@]+\\|\\$\\([_a-zA-Z0-9]+\\|\
2301 [<>]+\\)\\) *= *\\(.*[^ \t]\\)"
2302 string)
2303 (let ((lhs
2304 (let ((m (match-string 1 string)))
2305 (cond
2306 ((not (match-end 2)) m)
2307 ;; Is it a column reference?
2308 ((org-string-match-p "\\`$\\([0-9]+\\|[<>]+\\)\\'" m) m)
2309 ;; Since named columns are not possible in
2310 ;; LHS, assume this is a named field.
2311 (t (match-string 2 string)))))
2312 (rhs (match-string 3 string)))
2313 (push (cons lhs rhs) eq-alist)
2314 (cond
2315 ((not (member lhs seen)) (push lhs seen))
2316 (noerror
2317 (message
2318 "Double definition `%s=' in TBLFM line, please fix by hand"
2319 lhs)
2320 (ding)
2321 (sit-for 2))
2323 (user-error
2324 "Double definition `%s=' in TBLFM line, please fix by hand"
2325 lhs)))))))))))
2327 (defun org-table-fix-formulas (key replace &optional limit delta remove)
2328 "Modify the equations after the table structure has been edited.
2329 KEY is \"@\" or \"$\". REPLACE is an alist of numbers to replace.
2330 For all numbers larger than LIMIT, shift them by DELTA."
2331 (save-excursion
2332 (goto-char (org-table-end))
2333 (while (let ((case-fold-search t)) (looking-at "[ \t]*#\\+tblfm:"))
2334 (let ((msg "The formulas in #+TBLFM have been updated")
2335 (re (concat key "\\([0-9]+\\)"))
2336 (re2
2337 (when remove
2338 (if (or (equal key "$") (equal key "$LR"))
2339 (format "\\(@[0-9]+\\)?%s%d=.*?\\(::\\|$\\)"
2340 (regexp-quote key) remove)
2341 (format "@%d\\$[0-9]+=.*?\\(::\\|$\\)" remove))))
2342 s n a)
2343 (when remove
2344 (while (re-search-forward re2 (point-at-eol) t)
2345 (unless (save-match-data (org-in-regexp "remote([^)]+?)"))
2346 (if (equal (char-before (match-beginning 0)) ?.)
2347 (user-error
2348 "Change makes TBLFM term %s invalid, use undo to recover"
2349 (match-string 0))
2350 (replace-match "")))))
2351 (while (re-search-forward re (point-at-eol) t)
2352 (unless (save-match-data (org-in-regexp "remote([^)]+?)"))
2353 (setq s (match-string 1) n (string-to-number s))
2354 (cond
2355 ((setq a (assoc s replace))
2356 (replace-match (concat key (cdr a)) t t)
2357 (message msg))
2358 ((and limit (> n limit))
2359 (replace-match (concat key (int-to-string (+ n delta))) t t)
2360 (message msg))))))
2361 (forward-line))))
2363 ;;;###autoload
2364 (defun org-table-maybe-eval-formula ()
2365 "Check if the current field starts with \"=\" or \":=\".
2366 If yes, store the formula and apply it."
2367 ;; We already know we are in a table. Get field will only return a formula
2368 ;; when appropriate. It might return a separator line, but no problem.
2369 (when org-table-formula-evaluate-inline
2370 (let* ((field (org-trim (or (org-table-get-field) "")))
2371 named eq)
2372 (when (string-match "^:?=\\(.*[^=]\\)$" field)
2373 (setq named (equal (string-to-char field) ?:)
2374 eq (match-string 1 field))
2375 (if (or (fboundp 'calc-eval)
2376 (equal (substring eq 0 (min 2 (length eq))) "'("))
2377 (org-table-eval-formula (if named '(4) nil)
2378 (org-table-formula-from-user eq))
2379 (user-error "Calc does not seem to be installed, and is needed to evaluate the formula"))))))
2381 (defvar org-recalc-commands nil
2382 "List of commands triggering the recalculation of a line.
2383 Will be filled automatically during use.")
2385 (defvar org-recalc-marks
2386 '((" " . "Unmarked: no special line, no automatic recalculation")
2387 ("#" . "Automatically recalculate this line upon TAB, RET, and C-c C-c in the line")
2388 ("*" . "Recalculate only when entire table is recalculated with `C-u C-c *'")
2389 ("!" . "Column name definition line. Reference in formula as $name.")
2390 ("$" . "Parameter definition line name=value. Reference in formula as $name.")
2391 ("_" . "Names for values in row below this one.")
2392 ("^" . "Names for values in row above this one.")))
2394 ;;;###autoload
2395 (defun org-table-rotate-recalc-marks (&optional newchar)
2396 "Rotate the recalculation mark in the first column.
2397 If in any row, the first field is not consistent with a mark,
2398 insert a new column for the markers.
2399 When there is an active region, change all the lines in the region,
2400 after prompting for the marking character.
2401 After each change, a message will be displayed indicating the meaning
2402 of the new mark."
2403 (interactive)
2404 (unless (org-at-table-p) (user-error "Not at a table"))
2405 (let* ((region (org-region-active-p))
2406 (l1 (and region
2407 (save-excursion (goto-char (region-beginning))
2408 (copy-marker (line-beginning-position)))))
2409 (l2 (and region
2410 (save-excursion (goto-char (region-end))
2411 (copy-marker (line-beginning-position)))))
2412 (l (copy-marker (line-beginning-position)))
2413 (col (org-table-current-column))
2414 (newchar (if region
2415 (char-to-string
2416 (read-char-exclusive
2417 "Change region to what mark? Type # * ! $ or SPC: "))
2418 newchar))
2419 (no-special-column
2420 (save-excursion
2421 (goto-char (org-table-begin))
2422 (re-search-forward
2423 "^[ \t]*|[^-|][^|]*[^#!$*_^| \t][^|]*|" (org-table-end) t))))
2424 (when (and newchar (not (assoc newchar org-recalc-marks)))
2425 (user-error "Invalid character `%s' in `org-table-rotate-recalc-marks'"
2426 newchar))
2427 (when l1 (goto-char l1))
2428 (save-excursion
2429 (beginning-of-line)
2430 (unless (looking-at org-table-dataline-regexp)
2431 (user-error "Not at a table data line")))
2432 (when no-special-column
2433 (org-table-goto-column 1)
2434 (org-table-insert-column))
2435 (let ((previous-line-end (line-end-position))
2436 (newchar
2437 (save-excursion
2438 (beginning-of-line)
2439 (cond ((not (looking-at "^[ \t]*| *\\([#!$*^_ ]\\) *|")) "#")
2440 (newchar)
2441 (t (cadr (member (match-string 1)
2442 (append (mapcar #'car org-recalc-marks)
2443 '(" ")))))))))
2444 ;; Rotate mark in first row.
2445 (org-table-get-field 1 (format " %s " newchar))
2446 ;; Rotate marks in additional rows if a region is active.
2447 (when region
2448 (save-excursion
2449 (forward-line)
2450 (while (<= (point) l2)
2451 (when (looking-at org-table-dataline-regexp)
2452 (org-table-get-field 1 (format " %s " newchar)))
2453 (forward-line))))
2454 ;; Only align if rotation actually changed lines' length.
2455 (when (/= previous-line-end (line-end-position)) (org-table-align)))
2456 (goto-char l)
2457 (org-table-goto-column (if no-special-column (1+ col) col))
2458 (when l1 (set-marker l1 nil))
2459 (when l2 (set-marker l2 nil))
2460 (set-marker l nil)
2461 (when (org-called-interactively-p 'interactive)
2462 (message "%s" (cdr (assoc newchar org-recalc-marks))))))
2464 ;;;###autoload
2465 (defun org-table-analyze ()
2466 "Analyze table at point and store results.
2468 This function sets up the following dynamically scoped variables:
2470 `org-table-column-name-regexp',
2471 `org-table-column-names',
2472 `org-table-current-begin-pos',
2473 `org-table-current-line-types',
2474 `org-table-current-ncol',
2475 `org-table-dlines',
2476 `org-table-hlines',
2477 `org-table-local-parameters',
2478 `org-table-named-field-locations'."
2479 (let ((beg (org-table-begin))
2480 (end (org-table-end)))
2481 (save-excursion
2482 (goto-char beg)
2483 ;; Extract column names.
2484 (setq org-table-column-names nil)
2485 (when (save-excursion
2486 (re-search-forward "^[ \t]*| *! *\\(|.*\\)" end t))
2487 (let ((c 1))
2488 (dolist (name (org-split-string (match-string 1) " *| *"))
2489 (incf c)
2490 (when (string-match "\\`[a-zA-Z][_a-zA-Z0-9]*\\'" name)
2491 (push (cons name (int-to-string c)) org-table-column-names)))))
2492 (setq org-table-column-names (nreverse org-table-column-names))
2493 (setq org-table-column-name-regexp
2494 (format "\\$\\(%s\\)\\>"
2495 (regexp-opt (mapcar #'car org-table-column-names) t)))
2496 ;; Extract local parameters.
2497 (setq org-table-local-parameters nil)
2498 (save-excursion
2499 (while (re-search-forward "^[ \t]*| *\\$ *\\(|.*\\)" end t)
2500 (dolist (field (org-split-string (match-string 1) " *| *"))
2501 (when (string-match
2502 "\\`\\([a-zA-Z][_a-zA-Z0-9]*\\|%\\) *= *\\(.*\\)" field)
2503 (push (cons (match-string 1 field) (match-string 2 field))
2504 org-table-local-parameters)))))
2505 ;; Update named fields locations. We minimize `count-lines'
2506 ;; processing by storing last known number of lines in LAST.
2507 (setq org-table-named-field-locations nil)
2508 (save-excursion
2509 (let ((last (cons (point) 0)))
2510 (while (re-search-forward "^[ \t]*| *\\([_^]\\) *\\(|.*\\)" end t)
2511 (let ((c (match-string 1))
2512 (fields (org-split-string (match-string 2) " *| *")))
2513 (save-excursion
2514 (forward-line (if (equal c "_") 1 -1))
2515 (let ((fields1
2516 (and (looking-at "^[ \t]*|[^|]*\\(|.*\\)")
2517 (org-split-string (match-string 1) " *| *")))
2518 (line (incf (cdr last) (count-lines (car last) (point))))
2519 (col 1))
2520 (setcar last (point)) ; Update last known position.
2521 (while (and fields fields1)
2522 (let ((field (pop fields))
2523 (v (pop fields1)))
2524 (incf col)
2525 (when (and (stringp field)
2526 (stringp v)
2527 (string-match "\\`[a-zA-Z][_a-zA-Z0-9]*\\'"
2528 field))
2529 (push (cons field v) org-table-local-parameters)
2530 (push (list field line col)
2531 org-table-named-field-locations))))))))))
2532 ;; Re-use existing markers when possible.
2533 (if (markerp org-table-current-begin-pos)
2534 (move-marker org-table-current-begin-pos (point))
2535 (setq org-table-current-begin-pos (point-marker)))
2536 ;; Analyze the line types.
2537 (let ((l 0) hlines dlines types)
2538 (while (looking-at "[ \t]*|\\(-\\)?")
2539 (push (if (match-end 1) 'hline 'dline) types)
2540 (if (match-end 1) (push l hlines) (push l dlines))
2541 (forward-line)
2542 (incf l))
2543 (push 'hline types) ; Add an imaginary extra hline to the end.
2544 (setq org-table-current-line-types (apply #'vector (nreverse types)))
2545 (setq org-table-dlines (apply #'vector (cons nil (nreverse dlines))))
2546 (setq org-table-hlines (apply #'vector (cons nil (nreverse hlines)))))
2547 ;; Get the number of columns from the first data line in table.
2548 (goto-char beg)
2549 (forward-line (aref org-table-dlines 1))
2550 (let* ((fields
2551 (org-split-string
2552 (buffer-substring (line-beginning-position) (line-end-position))
2553 "[ \t]*|[ \t]*"))
2554 (nfields (length fields))
2555 al al2)
2556 (setq org-table-current-ncol nfields)
2557 (let ((last-dline
2558 (aref org-table-dlines (1- (length org-table-dlines)))))
2559 (dotimes (i nfields)
2560 (let ((column (1+ i)))
2561 (push (list (format "LR%d" column) last-dline column) al)
2562 (push (cons (format "LR%d" column) (nth i fields)) al2))))
2563 (setq org-table-named-field-locations
2564 (append org-table-named-field-locations al))
2565 (setq org-table-local-parameters
2566 (append org-table-local-parameters al2))))))
2568 (defun org-table-goto-field (ref &optional create-column-p)
2569 "Move point to a specific field in the current table.
2571 REF is either the name of a field its absolute reference, as
2572 a string. No column is created unless CREATE-COLUMN-P is
2573 non-nil. If it is a function, it is called with the column
2574 number as its argument as is used as a predicate to know if the
2575 column can be created.
2577 This function assumes the table is already analyzed (i.e., using
2578 `org-table-analyze')."
2579 (let* ((coordinates
2580 (cond
2581 ((cdr (assoc ref org-table-named-field-locations)))
2582 ((string-match "\\`@\\([1-9][0-9]*\\)\\$\\([1-9][0-9]*\\)\\'" ref)
2583 (list (condition-case nil
2584 (aref org-table-dlines
2585 (string-to-number (match-string 1 ref)))
2586 (error (user-error "Invalid row number in %s" ref)))
2587 (string-to-number (match-string 2 ref))))
2588 (t (user-error "Unknown field: %s" ref))))
2589 (line (car coordinates))
2590 (column (nth 1 coordinates))
2591 (create-new-column (if (functionp create-column-p)
2592 (funcall create-column-p column)
2593 create-column-p)))
2594 (when coordinates
2595 (goto-char org-table-current-begin-pos)
2596 (forward-line line)
2597 (org-table-goto-column column nil create-new-column))))
2599 ;;;###autoload
2600 (defun org-table-maybe-recalculate-line ()
2601 "Recompute the current line if marked for it, and if we haven't just done it."
2602 (interactive)
2603 (and org-table-allow-automatic-line-recalculation
2604 (not (and (memq last-command org-recalc-commands)
2605 (eq org-last-recalc-line (line-beginning-position))))
2606 (save-excursion (beginning-of-line 1)
2607 (looking-at org-table-auto-recalculate-regexp))
2608 (org-table-recalculate) t))
2610 (defvar org-tbl-calc-modes) ;; Dynamically bound in `org-table-eval-formula'
2611 (defsubst org-set-calc-mode (var &optional value)
2612 (if (stringp var)
2613 (setq var (assoc var '(("D" calc-angle-mode deg)
2614 ("R" calc-angle-mode rad)
2615 ("F" calc-prefer-frac t)
2616 ("S" calc-symbolic-mode t)))
2617 value (nth 2 var) var (nth 1 var)))
2618 (if (memq var org-tbl-calc-modes)
2619 (setcar (cdr (memq var org-tbl-calc-modes)) value)
2620 (cons var (cons value org-tbl-calc-modes)))
2621 org-tbl-calc-modes)
2623 ;;;###autoload
2624 (defun org-table-eval-formula (&optional arg equation
2625 suppress-align suppress-const
2626 suppress-store suppress-analysis)
2627 "Replace the table field value at the cursor by the result of a calculation.
2629 This function makes use of Dave Gillespie's Calc package, in my view the
2630 most exciting program ever written for GNU Emacs. So you need to have Calc
2631 installed in order to use this function.
2633 In a table, this command replaces the value in the current field with the
2634 result of a formula. It also installs the formula as the \"current\" column
2635 formula, by storing it in a special line below the table. When called
2636 with a `C-u' prefix, the current field must be a named field, and the
2637 formula is installed as valid in only this specific field.
2639 When called with two `C-u' prefixes, insert the active equation
2640 for the field back into the current field, so that it can be
2641 edited there. This is useful in order to use \\[org-table-show-reference]
2642 to check the referenced fields.
2644 When called, the command first prompts for a formula, which is read in
2645 the minibuffer. Previously entered formulas are available through the
2646 history list, and the last used formula is offered as a default.
2647 These stored formulas are adapted correctly when moving, inserting, or
2648 deleting columns with the corresponding commands.
2650 The formula can be any algebraic expression understood by the Calc package.
2651 For details, see the Org-mode manual.
2653 This function can also be called from Lisp programs and offers
2654 additional arguments: EQUATION can be the formula to apply. If this
2655 argument is given, the user will not be prompted. SUPPRESS-ALIGN is
2656 used to speed-up recursive calls by by-passing unnecessary aligns.
2657 SUPPRESS-CONST suppresses the interpretation of constants in the
2658 formula, assuming that this has been done already outside the function.
2659 SUPPRESS-STORE means the formula should not be stored, either because
2660 it is already stored, or because it is a modified equation that should
2661 not overwrite the stored one."
2662 (interactive "P")
2663 (org-table-check-inside-data-field)
2664 (or suppress-analysis (org-table-analyze))
2665 (if (equal arg '(16))
2666 (let ((eq (org-table-current-field-formula)))
2667 (or eq (user-error "No equation active for current field"))
2668 (org-table-get-field nil eq)
2669 (org-table-align)
2670 (setq org-table-may-need-update t))
2671 (let* (fields
2672 (ndown (if (integerp arg) arg 1))
2673 (org-table-automatic-realign nil)
2674 (case-fold-search nil)
2675 (down (> ndown 1))
2676 (formula (if (and equation suppress-store)
2677 equation
2678 (org-table-get-formula equation (equal arg '(4)))))
2679 (n0 (org-table-current-column))
2680 (org-tbl-calc-modes (copy-sequence org-calc-default-modes))
2681 (numbers nil) ; was a variable, now fixed default
2682 (keep-empty nil)
2683 n form form0 formrpl formrg bw fmt x ev orig c lispp literal
2684 duration duration-output-format)
2685 ;; Parse the format string. Since we have a lot of modes, this is
2686 ;; a lot of work. However, I think calc still uses most of the time.
2687 (if (string-match ";" formula)
2688 (let ((tmp (org-split-string formula ";")))
2689 (setq formula (car tmp)
2690 fmt (concat (cdr (assoc "%" org-table-local-parameters))
2691 (nth 1 tmp)))
2692 (while (string-match "\\([pnfse]\\)\\(-?[0-9]+\\)" fmt)
2693 (setq c (string-to-char (match-string 1 fmt))
2694 n (string-to-number (match-string 2 fmt)))
2695 (if (= c ?p)
2696 (setq org-tbl-calc-modes (org-set-calc-mode 'calc-internal-prec n))
2697 (setq org-tbl-calc-modes
2698 (org-set-calc-mode
2699 'calc-float-format
2700 (list (cdr (assoc c '((?n . float) (?f . fix)
2701 (?s . sci) (?e . eng))))
2702 n))))
2703 (setq fmt (replace-match "" t t fmt)))
2704 (if (string-match "T" fmt)
2705 (setq duration t numbers t
2706 duration-output-format nil
2707 fmt (replace-match "" t t fmt)))
2708 (if (string-match "t" fmt)
2709 (setq duration t
2710 duration-output-format org-table-duration-custom-format
2711 numbers t
2712 fmt (replace-match "" t t fmt)))
2713 (if (string-match "N" fmt)
2714 (setq numbers t
2715 fmt (replace-match "" t t fmt)))
2716 (if (string-match "L" fmt)
2717 (setq literal t
2718 fmt (replace-match "" t t fmt)))
2719 (if (string-match "E" fmt)
2720 (setq keep-empty t
2721 fmt (replace-match "" t t fmt)))
2722 (while (string-match "[DRFS]" fmt)
2723 (setq org-tbl-calc-modes (org-set-calc-mode (match-string 0 fmt)))
2724 (setq fmt (replace-match "" t t fmt)))
2725 (unless (string-match "\\S-" fmt)
2726 (setq fmt nil))))
2727 (if (and (not suppress-const) org-table-formula-use-constants)
2728 (setq formula (org-table-formula-substitute-names formula)))
2729 (setq orig (or (get-text-property 1 :orig-formula formula) "?"))
2730 (while (> ndown 0)
2731 (setq fields (org-split-string
2732 (org-trim
2733 (buffer-substring-no-properties
2734 (line-beginning-position) (line-end-position)))
2735 " *| *"))
2736 ;; replace fields with duration values if relevant
2737 (if duration
2738 (setq fields
2739 (mapcar (lambda (x) (org-table-time-string-to-seconds x))
2740 fields)))
2741 (if (eq numbers t)
2742 (setq fields (mapcar
2743 (lambda (x)
2744 (if (string-match "\\S-" x)
2745 (number-to-string (string-to-number x))
2747 fields)))
2748 (setq ndown (1- ndown))
2749 (setq form (copy-sequence formula)
2750 lispp (and (> (length form) 2) (equal (substring form 0 2) "'(")))
2751 (if (and lispp literal) (setq lispp 'literal))
2753 ;; Insert row and column number of formula result field
2754 (while (string-match "[@$]#" form)
2755 (setq form
2756 (replace-match
2757 (format "%d"
2758 (save-match-data
2759 (if (equal (substring form (match-beginning 0)
2760 (1+ (match-beginning 0)))
2761 "@")
2762 (org-table-current-dline)
2763 (org-table-current-column))))
2764 t t form)))
2766 ;; Check for old vertical references
2767 (org-table--error-on-old-row-references form)
2768 ;; Insert remote references
2769 (setq form (org-table-remote-reference-indirection form))
2770 (while (string-match "\\<remote([ \t]*\\([^,)]+\\)[ \t]*,[ \t]*\\([^\n)]+\\))" form)
2771 (setq form
2772 (replace-match
2773 (save-match-data
2774 (org-table-make-reference
2775 (let ((rmtrng (org-table-get-remote-range
2776 (match-string 1 form) (match-string 2 form))))
2777 (if duration
2778 (if (listp rmtrng)
2779 (mapcar (lambda(x) (org-table-time-string-to-seconds x)) rmtrng)
2780 (org-table-time-string-to-seconds rmtrng))
2781 rmtrng))
2782 keep-empty numbers lispp))
2783 t t form)))
2784 ;; Insert complex ranges
2785 (while (and (string-match org-table-range-regexp form)
2786 (> (length (match-string 0 form)) 1))
2787 (setq formrg
2788 (save-match-data
2789 (org-table-get-range
2790 (match-string 0 form) org-table-current-begin-pos n0)))
2791 (setq formrpl
2792 (save-match-data
2793 (org-table-make-reference
2794 ;; possibly handle durations
2795 (if duration
2796 (if (listp formrg)
2797 (mapcar (lambda(x) (org-table-time-string-to-seconds x)) formrg)
2798 (org-table-time-string-to-seconds formrg))
2799 formrg)
2800 keep-empty numbers lispp)))
2801 (if (not (save-match-data
2802 (string-match (regexp-quote form) formrpl)))
2803 (setq form (replace-match formrpl t t form))
2804 (user-error "Spreadsheet error: invalid reference \"%s\"" form)))
2805 ;; Insert simple ranges, i.e. included in the current row.
2806 (while (string-match
2807 "\\$\\(\\([-+]\\)?[0-9]+\\)\\.\\.\\$\\(\\([-+]\\)?[0-9]+\\)"
2808 form)
2809 (setq form
2810 (replace-match
2811 (save-match-data
2812 (org-table-make-reference
2813 (org-sublist fields
2814 (+ (if (match-end 2) n0 0)
2815 (string-to-number (match-string 1 form)))
2816 (+ (if (match-end 4) n0 0)
2817 (string-to-number (match-string 3 form))))
2818 keep-empty numbers lispp))
2819 t t form)))
2820 (setq form0 form)
2821 ;; Insert the references to fields in same row
2822 (while (string-match "\\$\\(\\([-+]\\)?[0-9]+\\)" form)
2823 (setq n (+ (string-to-number (match-string 1 form))
2824 (if (match-end 2) n0 0))
2825 x (nth (1- (if (= n 0) n0 (max n 1))) fields)
2826 formrpl (save-match-data
2827 (org-table-make-reference
2828 x keep-empty numbers lispp)))
2829 (when (or (not x)
2830 (save-match-data
2831 (string-match (regexp-quote formula) formrpl)))
2832 (user-error "Invalid field specifier \"%s\""
2833 (match-string 0 form)))
2834 (setq form (replace-match formrpl t t form)))
2836 (if lispp
2837 (setq ev (condition-case nil
2838 (eval (eval (read form)))
2839 (error "#ERROR"))
2840 ev (if (numberp ev) (number-to-string ev) ev)
2841 ev (if duration (org-table-time-seconds-to-string
2842 (string-to-number ev)
2843 duration-output-format) ev))
2844 (or (fboundp 'calc-eval)
2845 (user-error "Calc does not seem to be installed, and is needed to evaluate the formula"))
2846 ;; Use <...> time-stamps so that Calc can handle them
2847 (while (string-match (concat "\\[" org-ts-regexp1 "\\]") form)
2848 (setq form (replace-match "<\\1>" nil nil form)))
2849 ;; I18n-ize local time-stamps by setting (system-time-locale "C")
2850 (when (string-match org-ts-regexp2 form)
2851 (let* ((ts (match-string 0 form))
2852 (tsp (apply 'encode-time (save-match-data (org-parse-time-string ts))))
2853 (system-time-locale "C")
2854 (tf (or (and (save-match-data (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts))
2855 (cdr org-time-stamp-formats))
2856 (car org-time-stamp-formats))))
2857 (setq form (replace-match (format-time-string tf tsp) t t form))))
2859 (setq ev (if (and duration (string-match "^[0-9]+:[0-9]+\\(?::[0-9]+\\)?$" form))
2860 form
2861 (calc-eval (cons form org-tbl-calc-modes)
2862 (when (and (not keep-empty) numbers) 'num)))
2863 ev (if duration (org-table-time-seconds-to-string
2864 (if (string-match "^[0-9]+:[0-9]+\\(?::[0-9]+\\)?$" ev)
2865 (string-to-number (org-table-time-string-to-seconds ev))
2866 (string-to-number ev))
2867 duration-output-format)
2868 ev)))
2870 (when org-table-formula-debug
2871 (with-output-to-temp-buffer "*Substitution History*"
2872 (princ (format "Substitution history of formula
2873 Orig: %s
2874 $xyz-> %s
2875 @r$c-> %s
2876 $1-> %s\n" orig formula form0 form))
2877 (if (consp ev)
2878 (princ (format " %s^\nError: %s"
2879 (make-string (car ev) ?\-) (nth 1 ev)))
2880 (princ (format "Result: %s\nFormat: %s\nFinal: %s"
2881 ev (or fmt "NONE")
2882 (if fmt (format fmt (string-to-number ev)) ev)))))
2883 (setq bw (get-buffer-window "*Substitution History*"))
2884 (org-fit-window-to-buffer bw)
2885 (unless (and (org-called-interactively-p 'any) (not ndown))
2886 (unless (let (inhibit-redisplay)
2887 (y-or-n-p "Debugging Formula. Continue to next? "))
2888 (org-table-align)
2889 (user-error "Abort"))
2890 (delete-window bw)
2891 (message "")))
2892 (when (consp ev) (setq fmt nil ev "#ERROR"))
2893 (org-table-justify-field-maybe
2894 (format org-table-formula-field-format
2895 (if fmt (format fmt (string-to-number ev)) ev)))
2896 (if (and down (> ndown 0) (looking-at ".*\n[ \t]*|[^-]"))
2897 (call-interactively 'org-return)
2898 (setq ndown 0)))
2899 (and down (org-table-maybe-recalculate-line))
2900 (or suppress-align (and org-table-may-need-update
2901 (org-table-align))))))
2903 (defun org-table-put-field-property (prop value)
2904 (save-excursion
2905 (put-text-property (progn (skip-chars-backward "^|") (point))
2906 (progn (skip-chars-forward "^|") (point))
2907 prop value)))
2909 (defun org-table-get-range (desc &optional tbeg col highlight corners-only)
2910 "Get a calc vector from a column, according to descriptor DESC.
2912 Optional arguments TBEG and COL can give the beginning of the table and
2913 the current column, to avoid unnecessary parsing.
2915 HIGHLIGHT means just highlight the range.
2917 When CORNERS-ONLY is set, only return the corners of the range as
2918 a list (line1 column1 line2 column2) where line1 and line2 are
2919 line numbers relative to beginning of table, or TBEG, and column1
2920 and column2 are table column numbers."
2921 (let* ((desc (if (org-string-match-p "\\`\\$[0-9]+\\.\\.\\$[0-9]+\\'" desc)
2922 (replace-regexp-in-string "\\$" "@0$" desc)
2923 desc))
2924 (col (or col (org-table-current-column)))
2925 (tbeg (or tbeg (org-table-begin)))
2926 (thisline (count-lines tbeg (line-beginning-position))))
2927 (unless (string-match org-table-range-regexp desc)
2928 (user-error "Invalid table range specifier `%s'" desc))
2929 (let ((rangep (match-end 3))
2930 (r1 (let ((r (and (match-end 1) (match-string 1 desc))))
2931 (or (save-match-data
2932 (and (org-string-nw-p r)
2933 (org-table--descriptor-line r thisline)))
2934 thisline)))
2935 (r2 (let ((r (and (match-end 4) (match-string 4 desc))))
2936 (or (save-match-data
2937 (and (org-string-nw-p r)
2938 (org-table--descriptor-line r thisline)))
2939 thisline)))
2940 (c1 (let ((c (and (match-end 2) (substring (match-string 2 desc) 1))))
2941 (if (or (not c) (= (string-to-number c) 0)) col
2942 (+ (string-to-number c)
2943 (if (memq (string-to-char c) '(?- ?+)) col 0)))))
2944 (c2 (let ((c (and (match-end 5) (substring (match-string 5 desc) 1))))
2945 (if (or (not c) (= (string-to-number c) 0)) col
2946 (+ (string-to-number c)
2947 (if (memq (string-to-char c) '(?- ?+)) col 0))))))
2948 (save-excursion
2949 (if (and (not corners-only)
2950 (or (not rangep) (and (= r1 r2) (= c1 c2))))
2951 ;; Just one field.
2952 (progn
2953 (forward-line (- r1 thisline))
2954 (while (not (looking-at org-table-dataline-regexp))
2955 (forward-line))
2956 (prog1 (org-trim (org-table-get-field c1))
2957 (when highlight (org-table-highlight-rectangle))))
2958 ;; A range, return a vector. First sort the numbers to get
2959 ;; a regular rectangle.
2960 (let ((first-row (min r1 r2))
2961 (last-row (max r1 r2))
2962 (first-column (min c1 c2))
2963 (last-column (max c1 c2)))
2964 (if corners-only (list first-row first-column last-row last-column)
2965 ;; Copy the range values into a list.
2966 (forward-line (- first-row thisline))
2967 (while (not (looking-at org-table-dataline-regexp))
2968 (forward-line)
2969 (incf first-row))
2970 (org-table-goto-column first-column)
2971 (let ((beg (point)))
2972 (forward-line (- last-row first-row))
2973 (while (not (looking-at org-table-dataline-regexp))
2974 (forward-line -1))
2975 (org-table-goto-column last-column)
2976 (let ((end (point)))
2977 (when highlight
2978 (org-table-highlight-rectangle
2979 beg (progn (skip-chars-forward "^|\n") (point))))
2980 ;; Return string representation of calc vector.
2981 (mapcar #'org-trim
2982 (apply #'append
2983 (org-table-copy-region beg end))))))))))))
2985 (defun org-table--descriptor-line (desc cline)
2986 "Return relative line number corresponding to descriptor DESC.
2987 The cursor is currently in relative line number CLINE."
2988 (if (string-match "\\`[0-9]+\\'" desc)
2989 (aref org-table-dlines (string-to-number desc))
2990 (when (or (not (string-match
2991 "^\\(\\([-+]\\)?\\(I+\\)\\)?\\(\\([-+]\\)?\\([0-9]+\\)\\)?"
2992 ;; 1 2 3 4 5 6
2993 desc))
2994 (and (not (match-end 3)) (not (match-end 6)))
2995 (and (match-end 3) (match-end 6) (not (match-end 5))))
2996 (user-error "Invalid row descriptor `%s'" desc))
2997 (let* ((hn (and (match-end 3) (- (match-end 3) (match-beginning 3))))
2998 (hdir (match-string 2 desc))
2999 (odir (match-string 5 desc))
3000 (on (and (match-end 6) (string-to-number (match-string 6 desc))))
3001 (rel (and (match-end 6)
3002 (or (and (match-end 1) (not (match-end 3)))
3003 (match-end 5)))))
3004 (when (and hn (not hdir))
3005 (setq cline 0)
3006 (setq hdir "+")
3007 (when (eq (aref org-table-current-line-types 0) 'hline) (decf hn)))
3008 (when (and (not hn) on (not odir)) (user-error "Should never happen"))
3009 (when hn
3010 (setq cline
3011 (org-table--row-type 'hline hn cline (equal hdir "-") nil desc)))
3012 (when on
3013 (setq cline
3014 (org-table--row-type 'dline on cline (equal odir "-") rel desc)))
3015 cline)))
3017 (defun org-table--row-type (type n i backwards relative desc)
3018 "Return relative line of Nth row with type TYPE.
3019 Search starts from relative line I. When BACKWARDS in non-nil,
3020 look before I. When RELATIVE is non-nil, the reference is
3021 relative. DESC is the original descriptor that started the
3022 search, as a string."
3023 (let ((l (length org-table-current-line-types)))
3024 (catch :exit
3025 (dotimes (_ n)
3026 (while (and (incf i (if backwards -1 1))
3027 (>= i 0)
3028 (< i l)
3029 (not (eq (aref org-table-current-line-types i) type))
3030 ;; We are going to cross a hline. Check if this is
3031 ;; an authorized move.
3032 (cond
3033 ((not relative))
3034 ((not (eq (aref org-table-current-line-types i) 'hline)))
3035 ((eq org-table-relative-ref-may-cross-hline t))
3036 ((eq org-table-relative-ref-may-cross-hline 'error)
3037 (user-error "Row descriptor %s crosses hline" desc))
3038 (t (decf i (if backwards -1 1)) ; Step back.
3039 (throw :exit nil)))))))
3040 (cond ((or (< i 0) (>= i l))
3041 (user-error "Row descriptor %s leads outside table" desc))
3042 ;; The last hline doesn't exist. Instead, point to last row
3043 ;; in table.
3044 ((= i (1- l)) (1- i))
3045 (t i))))
3047 (defun org-table--error-on-old-row-references (s)
3048 (when (string-match "&[-+0-9I]" s)
3049 (user-error "Formula contains old &row reference, please rewrite using @-syntax")))
3051 (defun org-table-make-reference (elements keep-empty numbers lispp)
3052 "Convert list ELEMENTS to something appropriate to insert into formula.
3053 KEEP-EMPTY indicated to keep empty fields, default is to skip them.
3054 NUMBERS indicates that everything should be converted to numbers.
3055 LISPP non-nil means to return something appropriate for a Lisp
3056 list, `literal' is for the format specifier L."
3057 ;; Calc nan (not a number) is used for the conversion of the empty
3058 ;; field to a reference for several reasons: (i) It is accepted in a
3059 ;; Calc formula (e. g. "" or "()" would result in a Calc error).
3060 ;; (ii) In a single field (not in range) it can be distinguished
3061 ;; from "(nan)" which is the reference made from a single field
3062 ;; containing "nan".
3063 (if (stringp elements)
3064 ;; field reference
3065 (if lispp
3066 (if (eq lispp 'literal)
3067 elements
3068 (if (and (eq elements "") (not keep-empty))
3070 (prin1-to-string
3071 (if numbers (string-to-number elements) elements))))
3072 (if (string-match "\\S-" elements)
3073 (progn
3074 (when numbers (setq elements (number-to-string
3075 (string-to-number elements))))
3076 (concat "(" elements ")"))
3077 (if (or (not keep-empty) numbers) "(0)" "nan")))
3078 ;; range reference
3079 (unless keep-empty
3080 (setq elements
3081 (delq nil
3082 (mapcar (lambda (x) (if (string-match "\\S-" x) x nil))
3083 elements))))
3084 (setq elements (or elements '())) ; if delq returns nil then we need '()
3085 (if lispp
3086 (mapconcat
3087 (lambda (x)
3088 (if (eq lispp 'literal)
3090 (prin1-to-string (if numbers (string-to-number x) x))))
3091 elements " ")
3092 (concat "[" (mapconcat
3093 (lambda (x)
3094 (if (string-match "\\S-" x)
3095 (if numbers
3096 (number-to-string (string-to-number x))
3098 (if (or (not keep-empty) numbers) "0" "nan")))
3099 elements
3100 ",") "]"))))
3102 (defun org-table-message-once-per-second (t1 &rest args)
3103 "If there has been more than one second since T1, display message.
3104 ARGS are passed as arguments to the `message' function. Returns
3105 current time if a message is printed, otherwise returns T1. If
3106 T1 is nil, always messages."
3107 (let ((curtime (current-time)))
3108 (if (or (not t1) (< 0 (nth 1 (time-subtract curtime t1))))
3109 (progn (apply 'message args)
3110 curtime)
3111 t1)))
3113 ;;;###autoload
3114 (defun org-table-recalculate (&optional all noalign)
3115 "Recalculate the current table line by applying all stored formulas.
3116 With prefix arg ALL, do this for all lines in the table.
3117 With the prefix argument ALL is `(16)' \
3118 \(a double \\[universal-prefix] \\[universal-prefix] prefix), or if
3119 it is the symbol `iterate', recompute the table until it no longer changes.
3120 If NOALIGN is not nil, do not re-align the table after the computations
3121 are done. This is typically used internally to save time, if it is
3122 known that the table will be realigned a little later anyway."
3123 (interactive "P")
3124 (unless (memq this-command org-recalc-commands)
3125 (push this-command org-recalc-commands))
3126 (unless (org-at-table-p) (user-error "Not at a table"))
3127 (if (or (eq all 'iterate) (equal all '(16)))
3128 (org-table-iterate)
3129 (org-table-analyze)
3130 (let* ((eqlist (sort (org-table-get-stored-formulas)
3131 (lambda (a b) (string< (car a) (car b)))))
3132 (inhibit-redisplay (not debug-on-error))
3133 (line-re org-table-dataline-regexp)
3134 (log-first-time (current-time))
3135 (log-last-time log-first-time)
3136 (cnt 0)
3137 beg end eqlcol eqlfield)
3138 ;; Insert constants in all formulas.
3139 (when eqlist
3140 (org-table-save-field
3141 ;; Expand equations, then split the equation list between
3142 ;; column formulas and field formulas.
3143 (dolist (eq eqlist)
3144 (let* ((rhs (org-table-formula-substitute-names
3145 (org-table-formula-handle-first/last-rc (cdr eq))))
3146 (old-lhs (car eq))
3147 (lhs
3148 (org-table-formula-handle-first/last-rc
3149 (cond
3150 ((string-match "\\`@-?I+" old-lhs)
3151 (user-error "Can't assign to hline relative reference"))
3152 ((string-match "\\`$[<>]" old-lhs)
3153 (let ((new (org-table-formula-handle-first/last-rc
3154 old-lhs)))
3155 (when (assoc new eqlist)
3156 (user-error "\"%s=\" formula tries to overwrite \
3157 existing formula for column %s"
3158 old-lhs
3159 new))
3160 new))
3161 (t old-lhs)))))
3162 (if (org-string-match-p "\\`\\$[0-9]+\\'" lhs)
3163 (push (cons lhs rhs) eqlcol)
3164 (push (cons lhs rhs) eqlfield))))
3165 (setq eqlcol (nreverse eqlcol))
3166 ;; Expand ranges in lhs of formulas
3167 (setq eqlfield (org-table-expand-lhs-ranges (nreverse eqlfield)))
3168 ;; Get the correct line range to process.
3169 (if all
3170 (progn
3171 (setq end (copy-marker (org-table-end)))
3172 (goto-char (setq beg org-table-current-begin-pos))
3173 (cond
3174 ((re-search-forward org-table-calculate-mark-regexp end t)
3175 ;; This is a table with marked lines, compute selected
3176 ;; lines.
3177 (setq line-re org-table-recalculate-regexp))
3178 ;; Move forward to the first non-header line.
3179 ((and (re-search-forward org-table-dataline-regexp end t)
3180 (re-search-forward org-table-hline-regexp end t)
3181 (re-search-forward org-table-dataline-regexp end t))
3182 (setq beg (match-beginning 0)))
3183 ;; Just leave BEG where it is.
3184 (t (setq beg (line-beginning-position)))))
3185 (setq beg (line-beginning-position)
3186 end (copy-marker (line-beginning-position 2))))
3187 (goto-char beg)
3188 ;; Mark named fields untouchable. Also check if several
3189 ;; field/range formulas try to set the same field.
3190 (remove-text-properties beg end '(org-untouchable t))
3191 (let ((current-line (count-lines org-table-current-begin-pos
3192 (line-beginning-position)))
3193 seen-fields)
3194 (dolist (eq eqlfield)
3195 (let* ((name (car eq))
3196 (location (assoc name org-table-named-field-locations))
3197 (eq-line (or (nth 1 location)
3198 (and (string-match "\\`@\\([0-9]+\\)" name)
3199 (aref org-table-dlines
3200 (string-to-number
3201 (match-string 1 name))))))
3202 (reference
3203 (if location
3204 ;; Turn field coordinates associated to NAME
3205 ;; into an absolute reference.
3206 (format "@%d$%d"
3207 (org-table-line-to-dline eq-line)
3208 (nth 2 location))
3209 name)))
3210 (when (member reference seen-fields)
3211 (user-error "Several field/range formulas try to set %s"
3212 reference))
3213 (push reference seen-fields)
3214 (when (or all (eq eq-line current-line))
3215 (org-table-goto-field name)
3216 (org-table-put-field-property :org-untouchable t)))))
3217 ;; Evaluate the column formulas, but skip fields covered by
3218 ;; field formulas.
3219 (goto-char beg)
3220 (while (re-search-forward line-re end t)
3221 (unless (string-match "\\` *[_^!$/] *\\'" (org-table-get-field 1))
3222 ;; Unprotected line, recalculate.
3223 (incf cnt)
3224 (when all
3225 (setq log-last-time
3226 (org-table-message-once-per-second
3227 log-last-time
3228 "Re-applying formulas to full table...(line %d)" cnt)))
3229 (if (markerp org-last-recalc-line)
3230 (move-marker org-last-recalc-line (line-beginning-position))
3231 (setq org-last-recalc-line
3232 (copy-marker (line-beginning-position))))
3233 (dolist (entry eqlcol)
3234 (goto-char org-last-recalc-line)
3235 (org-table-goto-column
3236 (string-to-number (substring (car entry) 1)) nil 'force)
3237 (unless (get-text-property (point) :org-untouchable)
3238 (org-table-eval-formula
3239 nil (cdr entry) 'noalign 'nocst 'nostore 'noanalysis)))))
3240 ;; Evaluate the field formulas.
3241 (dolist (eq eqlfield)
3242 (let ((reference (car eq))
3243 (formula (cdr eq)))
3244 (setq log-last-time
3245 (org-table-message-once-per-second
3246 (and all log-last-time)
3247 "Re-applying formula to field: %s" (car eq)))
3248 (org-table-goto-field
3249 reference
3250 ;; Possibly create a new column, as long as
3251 ;; `org-table-formula-create-columns' allows it.
3252 (let ((column-count (progn (end-of-line)
3253 (1- (org-table-current-column)))))
3254 `(lambda (column)
3255 (when (> column 1000)
3256 (user-error "Formula column target too large"))
3257 (and (> column ,column-count)
3258 (or (eq org-table-formula-create-columns t)
3259 (and (eq org-table-formula-create-columns 'warn)
3260 (progn
3261 (org-display-warning
3262 "Out-of-bounds formula added columns")
3264 (and (eq org-table-formula-create-columns 'prompt)
3265 (yes-or-no-p
3266 "Out-of-bounds formula. Add columns? ")))))))
3267 (org-table-eval-formula nil formula t t t t))))
3268 ;; Clean up markers and internal text property.
3269 (remove-text-properties (point-min) (point-max) '(org-untouchable t))
3270 (set-marker end nil)
3271 (unless noalign
3272 (when org-table-may-need-update (org-table-align))
3273 (when all
3274 (org-table-message-once-per-second
3275 log-first-time "Re-applying formulas to %d lines... done" cnt)))
3276 (org-table-message-once-per-second
3277 (and all log-first-time) "Re-applying formulas... done")))))
3279 ;;;###autoload
3280 (defun org-table-iterate (&optional arg)
3281 "Recalculate the table until it does not change anymore.
3282 The maximum number of iterations is 10, but you can choose a different value
3283 with the prefix ARG."
3284 (interactive "P")
3285 (let ((imax (if arg (prefix-numeric-value arg) 10))
3286 (i 0)
3287 (lasttbl (buffer-substring (org-table-begin) (org-table-end)))
3288 thistbl)
3289 (catch 'exit
3290 (while (< i imax)
3291 (setq i (1+ i))
3292 (org-table-recalculate 'all)
3293 (setq thistbl (buffer-substring (org-table-begin) (org-table-end)))
3294 (if (not (string= lasttbl thistbl))
3295 (setq lasttbl thistbl)
3296 (if (> i 1)
3297 (message "Convergence after %d iterations" i)
3298 (message "Table was already stable"))
3299 (throw 'exit t)))
3300 (user-error "No convergence after %d iterations" i))))
3302 ;;;###autoload
3303 (defun org-table-recalculate-buffer-tables ()
3304 "Recalculate all tables in the current buffer."
3305 (interactive)
3306 (save-excursion
3307 (save-restriction
3308 (widen)
3309 (org-table-map-tables (lambda () (org-table-recalculate t)) t))))
3311 ;;;###autoload
3312 (defun org-table-iterate-buffer-tables ()
3313 "Iterate all tables in the buffer, to converge inter-table dependencies."
3314 (interactive)
3315 (let* ((imax 10)
3316 (i imax)
3317 (checksum (md5 (buffer-string)))
3319 (save-excursion
3320 (save-restriction
3321 (widen)
3322 (catch 'exit
3323 (while (> i 0)
3324 (setq i (1- i))
3325 (org-table-map-tables (lambda () (org-table-recalculate t)) t)
3326 (if (equal checksum (setq c1 (md5 (buffer-string))))
3327 (progn
3328 (message "Convergence after %d iterations" (- imax i))
3329 (throw 'exit t))
3330 (setq checksum c1)))
3331 (user-error "No convergence after %d iterations" imax))))))
3333 (defun org-table-calc-current-TBLFM (&optional arg)
3334 "Apply the #+TBLFM in the line at point to the table."
3335 (interactive "P")
3336 (unless (org-at-TBLFM-p) (user-error "Not at a #+TBLFM line"))
3337 (let ((formula (buffer-substring
3338 (line-beginning-position)
3339 (line-end-position))))
3340 (save-excursion
3341 ;; Insert a temporary formula at right after the table
3342 (goto-char (org-table-TBLFM-begin))
3343 (let ((s (point-marker)))
3344 (insert formula "\n")
3345 (let ((e (point-marker)))
3346 ;; Recalculate the table.
3347 (beginning-of-line 0) ; move to the inserted line
3348 (skip-chars-backward " \r\n\t")
3349 (unwind-protect
3350 (org-call-with-arg #'org-table-recalculate (or arg t))
3351 ;; Delete the formula inserted temporarily.
3352 (delete-region s e)
3353 (set-marker s nil)
3354 (set-marker e nil)))))))
3356 (defun org-table-TBLFM-begin ()
3357 "Find the beginning of the TBLFM lines and return its position.
3358 Return nil when the beginning of TBLFM line was not found."
3359 (save-excursion
3360 (when (progn (forward-line 1)
3361 (re-search-backward org-table-TBLFM-begin-regexp nil t))
3362 (line-beginning-position 2))))
3364 (defun org-table-expand-lhs-ranges (equations)
3365 "Expand list of formulas.
3366 If some of the RHS in the formulas are ranges or a row reference,
3367 expand them to individual field equations for each field. This
3368 function assumes the table is already analyzed (i.e., using
3369 `org-table-analyze')."
3370 (let (res)
3371 (dolist (e equations (nreverse res))
3372 (let ((lhs (car e))
3373 (rhs (cdr e)))
3374 (cond
3375 ((org-string-match-p "\\`@-?[-+0-9]+\\$-?[0-9]+\\'" lhs)
3376 ;; This just refers to one fixed field.
3377 (push e res))
3378 ((org-string-match-p "\\`[a-zA-Z][_a-zA-Z0-9]*\\'" lhs)
3379 ;; This just refers to one fixed named field.
3380 (push e res))
3381 ((org-string-match-p "\\`\\$[0-9]+\\'" lhs)
3382 ;; Column formulas are treated specially and are not
3383 ;; expanded.
3384 (push e res))
3385 ((string-match "\\`@[0-9]+\\'" lhs)
3386 (dotimes (ic org-table-current-ncol)
3387 (push (cons (propertize (format "%s$%d" lhs (1+ ic)) :orig-eqn e)
3388 rhs)
3389 res)))
3391 (let* ((range (org-table-get-range
3392 lhs org-table-current-begin-pos 1 nil 'corners))
3393 (r1 (org-table-line-to-dline (nth 0 range)))
3394 (c1 (nth 1 range))
3395 (r2 (org-table-line-to-dline (nth 2 range) 'above))
3396 (c2 (nth 3 range)))
3397 (loop for ir from r1 to r2 do
3398 (loop for ic from c1 to c2 do
3399 (push
3400 (cons (propertize (format "@%d$%d" ir ic) :orig-eqn e)
3401 rhs)
3402 res))))))))))
3404 (defun org-table-formula-handle-first/last-rc (s)
3405 "Replace @<, @>, $<, $> with first/last row/column of the table.
3406 So @< and $< will always be replaced with @1 and $1, respectively.
3407 The advantage of these special markers are that structure editing of
3408 the table will not change them, while @1 and $1 will be modified
3409 when a line/row is swapped out of that privileged position. So for
3410 formulas that use a range of rows or columns, it may often be better
3411 to anchor the formula with \"I\" row markers, or to offset from the
3412 borders of the table using the @< @> $< $> makers."
3413 (let (n nmax len char (start 0))
3414 (while (string-match "\\([@$]\\)\\(<+\\|>+\\)\\|\\(remote([^)]+)\\)"
3415 s start)
3416 (if (match-end 3)
3417 (setq start (match-end 3))
3418 (setq nmax (if (equal (match-string 1 s) "@")
3419 (1- (length org-table-dlines))
3420 org-table-current-ncol)
3421 len (- (match-end 2) (match-beginning 2))
3422 char (string-to-char (match-string 2 s))
3423 n (if (= char ?<)
3425 (- nmax len -1)))
3426 (if (or (< n 1) (> n nmax))
3427 (user-error "Reference \"%s\" in expression \"%s\" points outside table"
3428 (match-string 0 s) s))
3429 (setq start (match-beginning 0))
3430 (setq s (replace-match (format "%s%d" (match-string 1 s) n) t t s)))))
3433 (defun org-table-formula-substitute-names (f)
3434 "Replace $const with values in string F."
3435 (let ((start 0)
3436 (pp (/= (string-to-char f) ?'))
3437 (duration (org-string-match-p ";.*[Tt].*\\'" f))
3438 (new (replace-regexp-in-string ; Check for column names.
3439 org-table-column-name-regexp
3440 (lambda (m)
3441 (concat "$" (cdr (assoc (match-string 1 m)
3442 org-table-column-names))))
3443 f t t)))
3444 ;; Parameters and constants.
3445 (while (setq start
3446 (string-match
3447 "\\$\\([a-zA-Z][_a-zA-Z0-9]*\\)\\|\\(\\<remote([^)]*)\\)"
3448 new start))
3449 (if (match-end 2) (setq start (match-end 2))
3450 (incf start)
3451 ;; When a duration is expected, convert value on the fly.
3452 (let ((value
3453 (save-match-data
3454 (let ((v (org-table-get-constant (match-string 1 new))))
3455 (if (and (org-string-nw-p v) duration)
3456 (org-table-time-string-to-seconds v)
3457 v)))))
3458 (when value
3459 (setq new (replace-match
3460 (concat (and pp "(") value (and pp ")")) t t new))))))
3461 (if org-table-formula-debug (org-propertize new :orig-formula f)) new))
3463 (defun org-table-get-constant (const)
3464 "Find the value for a parameter or constant in a formula.
3465 Parameters get priority."
3466 (or (cdr (assoc const org-table-local-parameters))
3467 (cdr (assoc const org-table-formula-constants-local))
3468 (cdr (assoc const org-table-formula-constants))
3469 (and (fboundp 'constants-get) (constants-get const))
3470 (and (string= (substring const 0 (min 5 (length const))) "PROP_")
3471 (org-entry-get nil (substring const 5) 'inherit))
3472 "#UNDEFINED_NAME"))
3474 (defvar org-table-fedit-map
3475 (let ((map (make-sparse-keymap)))
3476 (org-defkey map "\C-x\C-s" 'org-table-fedit-finish)
3477 (org-defkey map "\C-c\C-s" 'org-table-fedit-finish)
3478 (org-defkey map "\C-c\C-c" 'org-table-fedit-finish)
3479 (org-defkey map "\C-c'" 'org-table-fedit-finish)
3480 (org-defkey map "\C-c\C-q" 'org-table-fedit-abort)
3481 (org-defkey map "\C-c?" 'org-table-show-reference)
3482 (org-defkey map [(meta shift up)] 'org-table-fedit-line-up)
3483 (org-defkey map [(meta shift down)] 'org-table-fedit-line-down)
3484 (org-defkey map [(shift up)] 'org-table-fedit-ref-up)
3485 (org-defkey map [(shift down)] 'org-table-fedit-ref-down)
3486 (org-defkey map [(shift left)] 'org-table-fedit-ref-left)
3487 (org-defkey map [(shift right)] 'org-table-fedit-ref-right)
3488 (org-defkey map [(meta up)] 'org-table-fedit-scroll-down)
3489 (org-defkey map [(meta down)] 'org-table-fedit-scroll)
3490 (org-defkey map [(meta tab)] 'lisp-complete-symbol)
3491 (org-defkey map "\M-\C-i" 'lisp-complete-symbol)
3492 (org-defkey map [(tab)] 'org-table-fedit-lisp-indent)
3493 (org-defkey map "\C-i" 'org-table-fedit-lisp-indent)
3494 (org-defkey map "\C-c\C-r" 'org-table-fedit-toggle-ref-type)
3495 (org-defkey map "\C-c}" 'org-table-fedit-toggle-coordinates)
3496 map))
3498 (easy-menu-define org-table-fedit-menu org-table-fedit-map "Org Edit Formulas Menu"
3499 '("Edit-Formulas"
3500 ["Finish and Install" org-table-fedit-finish t]
3501 ["Finish, Install, and Apply" (org-table-fedit-finish t) :keys "C-u C-c C-c"]
3502 ["Abort" org-table-fedit-abort t]
3503 "--"
3504 ["Pretty-Print Lisp Formula" org-table-fedit-lisp-indent t]
3505 ["Complete Lisp Symbol" lisp-complete-symbol t]
3506 "--"
3507 "Shift Reference at Point"
3508 ["Up" org-table-fedit-ref-up t]
3509 ["Down" org-table-fedit-ref-down t]
3510 ["Left" org-table-fedit-ref-left t]
3511 ["Right" org-table-fedit-ref-right t]
3513 "Change Test Row for Column Formulas"
3514 ["Up" org-table-fedit-line-up t]
3515 ["Down" org-table-fedit-line-down t]
3516 "--"
3517 ["Scroll Table Window" org-table-fedit-scroll t]
3518 ["Scroll Table Window down" org-table-fedit-scroll-down t]
3519 ["Show Table Grid" org-table-fedit-toggle-coordinates
3520 :style toggle :selected (with-current-buffer (marker-buffer org-pos)
3521 org-table-overlay-coordinates)]
3522 "--"
3523 ["Standard Refs (B3 instead of @3$2)" org-table-fedit-toggle-ref-type
3524 :style toggle :selected org-table-buffer-is-an]))
3526 (defvar org-pos)
3528 ;;;###autoload
3529 (defun org-table-edit-formulas ()
3530 "Edit the formulas of the current table in a separate buffer."
3531 (interactive)
3532 (when (save-excursion (beginning-of-line)
3533 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+TBLFM")))
3534 (beginning-of-line 0))
3535 (unless (org-at-table-p) (user-error "Not at a table"))
3536 (org-table-analyze)
3537 (let ((key (org-table-current-field-formula 'key 'noerror))
3538 (eql (sort (org-table-get-stored-formulas 'noerror)
3539 #'org-table-formula-less-p))
3540 (pos (point-marker))
3541 (startline 1)
3542 (wc (current-window-configuration))
3543 (sel-win (selected-window))
3544 (titles '((column . "# Column Formulas\n")
3545 (field . "# Field and Range Formulas\n")
3546 (named . "# Named Field Formulas\n"))))
3547 (org-switch-to-buffer-other-window "*Edit Formulas*")
3548 (erase-buffer)
3549 ;; Keep global-font-lock-mode from turning on font-lock-mode
3550 (let ((font-lock-global-modes '(not fundamental-mode)))
3551 (fundamental-mode))
3552 (org-set-local 'font-lock-global-modes (list 'not major-mode))
3553 (org-set-local 'org-pos pos)
3554 (org-set-local 'org-window-configuration wc)
3555 (org-set-local 'org-selected-window sel-win)
3556 (use-local-map org-table-fedit-map)
3557 (org-add-hook 'post-command-hook #'org-table-fedit-post-command t t)
3558 (easy-menu-add org-table-fedit-menu)
3559 (setq startline (org-current-line))
3560 (dolist (entry eql)
3561 (let* ((type (cond
3562 ((string-match "\\`$[<>]" (car entry)) 'column)
3563 ((equal (string-to-char (car entry)) ?@) 'field)
3564 ((string-match "\\'[0-9]" (car entry)) 'column)
3565 (t 'named)))
3566 (title (assq type titles)))
3567 (when title
3568 (unless (bobp) (insert "\n"))
3569 (insert (org-add-props (cdr title) nil 'face font-lock-comment-face))
3570 (setq titles (remove title titles)))
3571 (when (equal key (car entry)) (setq startline (org-current-line)))
3572 (let ((s (concat (if (member (string-to-char (car entry)) '(?@ ?$)) "" "$")
3573 (car entry) " = " (cdr entry) "\n")))
3574 (remove-text-properties 0 (length s) '(face nil) s)
3575 (insert s))))
3576 (when (eq org-table-use-standard-references t)
3577 (org-table-fedit-toggle-ref-type))
3578 (org-goto-line startline)
3579 (message
3580 (substitute-command-keys "\\<org-mode-map>\
3581 Edit formulas, finish with `\\[org-ctrl-c-ctrl-c]' or `\\[org-edit-special]'. \
3582 See menu for more commands."))))
3584 (defun org-table-fedit-post-command ()
3585 (when (not (memq this-command '(lisp-complete-symbol)))
3586 (let ((win (selected-window)))
3587 (save-excursion
3588 (ignore-errors (org-table-show-reference))
3589 (select-window win)))))
3591 (defun org-table-formula-to-user (s)
3592 "Convert a formula from internal to user representation."
3593 (if (eq org-table-use-standard-references t)
3594 (org-table-convert-refs-to-an s)
3597 (defun org-table-formula-from-user (s)
3598 "Convert a formula from user to internal representation."
3599 (if org-table-use-standard-references
3600 (org-table-convert-refs-to-rc s)
3603 (defun org-table-convert-refs-to-rc (s)
3604 "Convert spreadsheet references from A7 to @7$28.
3605 Works for single references, but also for entire formulas and even the
3606 full TBLFM line."
3607 (let ((start 0))
3608 (while (string-match "\\<\\([a-zA-Z]+\\)\\([0-9]+\\>\\|&\\)\\|\\(;[^\r\n:]+\\|\\<remote([^,)]*)\\)" s start)
3609 (cond
3610 ((match-end 3)
3611 ;; format match, just advance
3612 (setq start (match-end 0)))
3613 ((and (> (match-beginning 0) 0)
3614 (equal ?. (aref s (max (1- (match-beginning 0)) 0)))
3615 (not (equal ?. (aref s (max (- (match-beginning 0) 2) 0)))))
3616 ;; 3.e5 or something like this.
3617 (setq start (match-end 0)))
3618 ((or (> (- (match-end 1) (match-beginning 1)) 2)
3619 ;; (member (match-string 1 s)
3620 ;; '("arctan" "exp" "expm" "lnp" "log" "stir"))
3622 ;; function name, just advance
3623 (setq start (match-end 0)))
3625 (setq start (match-beginning 0)
3626 s (replace-match
3627 (if (equal (match-string 2 s) "&")
3628 (format "$%d" (org-letters-to-number (match-string 1 s)))
3629 (format "@%d$%d"
3630 (string-to-number (match-string 2 s))
3631 (org-letters-to-number (match-string 1 s))))
3632 t t s)))))
3635 (defun org-table-convert-refs-to-an (s)
3636 "Convert spreadsheet references from to @7$28 to AB7.
3637 Works for single references, but also for entire formulas and even the
3638 full TBLFM line."
3639 (while (string-match "@\\([0-9]+\\)\\$\\([0-9]+\\)" s)
3640 (setq s (replace-match
3641 (format "%s%d"
3642 (org-number-to-letters
3643 (string-to-number (match-string 2 s)))
3644 (string-to-number (match-string 1 s)))
3645 t t s)))
3646 (while (string-match "\\(^\\|[^0-9a-zA-Z]\\)\\$\\([0-9]+\\)" s)
3647 (setq s (replace-match (concat "\\1"
3648 (org-number-to-letters
3649 (string-to-number (match-string 2 s))) "&")
3650 t nil s)))
3653 (defun org-letters-to-number (s)
3654 "Convert a base 26 number represented by letters into an integer.
3655 For example: AB -> 28."
3656 (let ((n 0))
3657 (setq s (upcase s))
3658 (while (> (length s) 0)
3659 (setq n (+ (* n 26) (string-to-char s) (- ?A) 1)
3660 s (substring s 1)))
3663 (defun org-number-to-letters (n)
3664 "Convert an integer into a base 26 number represented by letters.
3665 For example: 28 -> AB."
3666 (let ((s ""))
3667 (while (> n 0)
3668 (setq s (concat (char-to-string (+ (mod (1- n) 26) ?A)) s)
3669 n (/ (1- n) 26)))
3672 (defun org-table-time-string-to-seconds (s)
3673 "Convert a time string into numerical duration in seconds.
3674 S can be a string matching either -?HH:MM:SS or -?HH:MM.
3675 If S is a string representing a number, keep this number."
3676 (if (equal s "")
3678 (let (hour minus min sec res)
3679 (cond
3680 ((and (string-match "\\(-?\\)\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)" s))
3681 (setq minus (< 0 (length (match-string 1 s)))
3682 hour (string-to-number (match-string 2 s))
3683 min (string-to-number (match-string 3 s))
3684 sec (string-to-number (match-string 4 s)))
3685 (if minus
3686 (setq res (- (+ (* hour 3600) (* min 60) sec)))
3687 (setq res (+ (* hour 3600) (* min 60) sec))))
3688 ((and (not (string-match org-ts-regexp-both s))
3689 (string-match "\\(-?\\)\\([0-9]+\\):\\([0-9]+\\)" s))
3690 (setq minus (< 0 (length (match-string 1 s)))
3691 hour (string-to-number (match-string 2 s))
3692 min (string-to-number (match-string 3 s)))
3693 (if minus
3694 (setq res (- (+ (* hour 3600) (* min 60))))
3695 (setq res (+ (* hour 3600) (* min 60)))))
3696 (t (setq res (string-to-number s))))
3697 (number-to-string res))))
3699 (defun org-table-time-seconds-to-string (secs &optional output-format)
3700 "Convert a number of seconds to a time string.
3701 If OUTPUT-FORMAT is non-nil, return a number of days, hours,
3702 minutes or seconds."
3703 (let* ((secs0 (abs secs))
3704 (res
3705 (cond ((eq output-format 'days)
3706 (format "%.3f" (/ (float secs0) 86400)))
3707 ((eq output-format 'hours)
3708 (format "%.2f" (/ (float secs0) 3600)))
3709 ((eq output-format 'minutes)
3710 (format "%.1f" (/ (float secs0) 60)))
3711 ((eq output-format 'seconds)
3712 (format "%d" secs0))
3713 (t (org-format-seconds "%.2h:%.2m:%.2s" secs0)))))
3714 (if (< secs 0) (concat "-" res) res)))
3716 (defun org-table-fedit-convert-buffer (function)
3717 "Convert all references in this buffer, using FUNCTION."
3718 (let ((origin (copy-marker (line-beginning-position))))
3719 (goto-char (point-min))
3720 (while (not (eobp))
3721 (insert (funcall function (buffer-substring (point) (line-end-position))))
3722 (delete-region (point) (line-end-position))
3723 (forward-line))
3724 (goto-char origin)
3725 (set-marker origin nil)))
3727 (defun org-table-fedit-toggle-ref-type ()
3728 "Convert all references in the buffer from B3 to @3$2 and back."
3729 (interactive)
3730 (org-set-local 'org-table-buffer-is-an (not org-table-buffer-is-an))
3731 (org-table-fedit-convert-buffer
3732 (if org-table-buffer-is-an
3733 'org-table-convert-refs-to-an 'org-table-convert-refs-to-rc))
3734 (message "Reference type switched to %s"
3735 (if org-table-buffer-is-an "A1 etc" "@row$column")))
3737 (defun org-table-fedit-ref-up ()
3738 "Shift the reference at point one row/hline up."
3739 (interactive)
3740 (org-table-fedit-shift-reference 'up))
3741 (defun org-table-fedit-ref-down ()
3742 "Shift the reference at point one row/hline down."
3743 (interactive)
3744 (org-table-fedit-shift-reference 'down))
3745 (defun org-table-fedit-ref-left ()
3746 "Shift the reference at point one field to the left."
3747 (interactive)
3748 (org-table-fedit-shift-reference 'left))
3749 (defun org-table-fedit-ref-right ()
3750 "Shift the reference at point one field to the right."
3751 (interactive)
3752 (org-table-fedit-shift-reference 'right))
3754 (defun org-table-fedit-shift-reference (dir)
3755 (cond
3756 ((org-in-regexp "\\(\\<[a-zA-Z]\\)&")
3757 (if (memq dir '(left right))
3758 (org-rematch-and-replace 1 (eq dir 'left))
3759 (user-error "Cannot shift reference in this direction")))
3760 ((org-in-regexp "\\(\\<[a-zA-Z]\\{1,2\\}\\)\\([0-9]+\\)")
3761 ;; A B3-like reference
3762 (if (memq dir '(up down))
3763 (org-rematch-and-replace 2 (eq dir 'up))
3764 (org-rematch-and-replace 1 (eq dir 'left))))
3765 ((org-in-regexp
3766 "\\(@\\|\\.\\.\\)\\([-+]?\\(I+\\>\\|[0-9]+\\)\\)\\(\\$\\([-+]?[0-9]+\\)\\)?")
3767 ;; An internal reference
3768 (if (memq dir '(up down))
3769 (org-rematch-and-replace 2 (eq dir 'up) (match-end 3))
3770 (org-rematch-and-replace 5 (eq dir 'left))))))
3772 (defun org-rematch-and-replace (n &optional decr hline)
3773 "Re-match the group N, and replace it with the shifted reference."
3774 (or (match-end n) (user-error "Cannot shift reference in this direction"))
3775 (goto-char (match-beginning n))
3776 (and (looking-at (regexp-quote (match-string n)))
3777 (replace-match (org-table-shift-refpart (match-string 0) decr hline)
3778 t t)))
3780 (defun org-table-shift-refpart (ref &optional decr hline)
3781 "Shift a reference part REF.
3782 If DECR is set, decrease the references row/column, else increase.
3783 If HLINE is set, this may be a hline reference, it certainly is not
3784 a translation reference."
3785 (save-match-data
3786 (let* ((sign (string-match "^[-+]" ref)) n)
3788 (if sign (setq sign (substring ref 0 1) ref (substring ref 1)))
3789 (cond
3790 ((and hline (string-match "^I+" ref))
3791 (setq n (string-to-number (concat sign (number-to-string (length ref)))))
3792 (setq n (+ n (if decr -1 1)))
3793 (if (= n 0) (setq n (+ n (if decr -1 1))))
3794 (if sign
3795 (setq sign (if (< n 0) "-" "+") n (abs n))
3796 (setq n (max 1 n)))
3797 (concat sign (make-string n ?I)))
3799 ((string-match "^[0-9]+" ref)
3800 (setq n (string-to-number (concat sign ref)))
3801 (setq n (+ n (if decr -1 1)))
3802 (if sign
3803 (concat (if (< n 0) "-" "+") (number-to-string (abs n)))
3804 (number-to-string (max 1 n))))
3806 ((string-match "^[a-zA-Z]+" ref)
3807 (org-number-to-letters
3808 (max 1 (+ (org-letters-to-number ref) (if decr -1 1)))))
3810 (t (user-error "Cannot shift reference"))))))
3812 (defun org-table-fedit-toggle-coordinates ()
3813 "Toggle the display of coordinates in the referenced table."
3814 (interactive)
3815 (let ((pos (marker-position org-pos)))
3816 (with-current-buffer (marker-buffer org-pos)
3817 (save-excursion
3818 (goto-char pos)
3819 (org-table-toggle-coordinate-overlays)))))
3821 (defun org-table-fedit-finish (&optional arg)
3822 "Parse the buffer for formula definitions and install them.
3823 With prefix ARG, apply the new formulas to the table."
3824 (interactive "P")
3825 (org-table-remove-rectangle-highlight)
3826 (if org-table-use-standard-references
3827 (progn
3828 (org-table-fedit-convert-buffer 'org-table-convert-refs-to-rc)
3829 (setq org-table-buffer-is-an nil)))
3830 (let ((pos org-pos) (sel-win org-selected-window) eql var form)
3831 (goto-char (point-min))
3832 (while (re-search-forward
3833 "^\\(@[-+I<>0-9.$@]+\\|@?[0-9]+\\|\\$\\([a-zA-Z0-9]+\\|[<>]+\\)\\) *= *\\(.*\\(\n[ \t]+.*$\\)*\\)"
3834 nil t)
3835 (setq var (if (match-end 2) (match-string 2) (match-string 1))
3836 form (match-string 3))
3837 (setq form (org-trim form))
3838 (when (not (equal form ""))
3839 (while (string-match "[ \t]*\n[ \t]*" form)
3840 (setq form (replace-match " " t t form)))
3841 (when (assoc var eql)
3842 (user-error "Double formulas for %s" var))
3843 (push (cons var form) eql)))
3844 (setq org-pos nil)
3845 (set-window-configuration org-window-configuration)
3846 (select-window sel-win)
3847 (goto-char pos)
3848 (unless (org-at-table-p)
3849 (user-error "Lost table position - cannot install formulas"))
3850 (org-table-store-formulas eql)
3851 (move-marker pos nil)
3852 (kill-buffer "*Edit Formulas*")
3853 (if arg
3854 (org-table-recalculate 'all)
3855 (message "New formulas installed - press C-u C-c C-c to apply."))))
3857 (defun org-table-fedit-abort ()
3858 "Abort editing formulas, without installing the changes."
3859 (interactive)
3860 (org-table-remove-rectangle-highlight)
3861 (let ((pos org-pos) (sel-win org-selected-window))
3862 (set-window-configuration org-window-configuration)
3863 (select-window sel-win)
3864 (goto-char pos)
3865 (move-marker pos nil)
3866 (message "Formula editing aborted without installing changes")))
3868 (defun org-table-fedit-lisp-indent ()
3869 "Pretty-print and re-indent Lisp expressions in the Formula Editor."
3870 (interactive)
3871 (let ((pos (point)) beg end ind)
3872 (beginning-of-line 1)
3873 (cond
3874 ((looking-at "[ \t]")
3875 (goto-char pos)
3876 (call-interactively 'lisp-indent-line))
3877 ((looking-at "[$&@0-9a-zA-Z]+ *= *[^ \t\n']") (goto-char pos))
3878 ((not (fboundp 'pp-buffer))
3879 (user-error "Cannot pretty-print. Command `pp-buffer' is not available"))
3880 ((looking-at "[$&@0-9a-zA-Z]+ *= *'(")
3881 (goto-char (- (match-end 0) 2))
3882 (setq beg (point))
3883 (setq ind (make-string (current-column) ?\ ))
3884 (condition-case nil (forward-sexp 1)
3885 (error
3886 (user-error "Cannot pretty-print Lisp expression: Unbalanced parenthesis")))
3887 (setq end (point))
3888 (save-restriction
3889 (narrow-to-region beg end)
3890 (if (eq last-command this-command)
3891 (progn
3892 (goto-char (point-min))
3893 (setq this-command nil)
3894 (while (re-search-forward "[ \t]*\n[ \t]*" nil t)
3895 (replace-match " ")))
3896 (pp-buffer)
3897 (untabify (point-min) (point-max))
3898 (goto-char (1+ (point-min)))
3899 (while (re-search-forward "^." nil t)
3900 (beginning-of-line 1)
3901 (insert ind))
3902 (goto-char (point-max))
3903 (org-delete-backward-char 1)))
3904 (goto-char beg))
3905 (t nil))))
3907 (defvar org-show-positions nil)
3909 (defun org-table-show-reference (&optional local)
3910 "Show the location/value of the $ expression at point."
3911 (interactive)
3912 (org-table-remove-rectangle-highlight)
3913 (when local (org-table-analyze))
3914 (catch 'exit
3915 (let ((pos (if local (point) org-pos))
3916 (table-start (if local org-table-current-begin-pos (org-table-begin)))
3917 (face2 'highlight)
3918 (org-inhibit-highlight-removal t)
3919 (win (selected-window))
3920 (org-show-positions nil)
3921 var name e what match dest)
3922 (setq what (cond
3923 ((org-in-regexp "^@[0-9]+[ \t=]")
3924 (setq match (concat (substring (match-string 0) 0 -1)
3925 "$1.."
3926 (substring (match-string 0) 0 -1)
3927 "$100"))
3928 'range)
3929 ((or (org-in-regexp org-table-range-regexp2)
3930 (org-in-regexp org-table-translate-regexp)
3931 (org-in-regexp org-table-range-regexp))
3932 (setq match
3933 (save-match-data
3934 (org-table-convert-refs-to-rc (match-string 0))))
3935 'range)
3936 ((org-in-regexp "\\$[a-zA-Z][a-zA-Z0-9]*") 'name)
3937 ((org-in-regexp "\\$[0-9]+") 'column)
3938 ((not local) nil)
3939 (t (user-error "No reference at point")))
3940 match (and what (or match (match-string 0))))
3941 (when (and match (not (equal (match-beginning 0) (point-at-bol))))
3942 (org-table-add-rectangle-overlay (match-beginning 0) (match-end 0)
3943 'secondary-selection))
3944 (org-add-hook 'before-change-functions
3945 #'org-table-remove-rectangle-highlight)
3946 (when (eq what 'name) (setq var (substring match 1)))
3947 (when (eq what 'range)
3948 (unless (eq (string-to-char match) ?@) (setq match (concat "@" match)))
3949 (setq match (org-table-formula-substitute-names match)))
3950 (unless local
3951 (save-excursion
3952 (end-of-line)
3953 (re-search-backward "^\\S-" nil t)
3954 (beginning-of-line)
3955 (when (looking-at "\\(\\$[0-9a-zA-Z]+\\|@[0-9]+\\$[0-9]+\\|[a-zA-Z]+\
3956 \\([0-9]+\\|&\\)\\) *=")
3957 (setq dest
3958 (save-match-data
3959 (org-table-convert-refs-to-rc (match-string 1))))
3960 (org-table-add-rectangle-overlay
3961 (match-beginning 1) (match-end 1) face2))))
3962 (if (and (markerp pos) (marker-buffer pos))
3963 (if (get-buffer-window (marker-buffer pos))
3964 (select-window (get-buffer-window (marker-buffer pos)))
3965 (org-switch-to-buffer-other-window (get-buffer-window
3966 (marker-buffer pos)))))
3967 (goto-char pos)
3968 (org-table-force-dataline)
3969 (when dest
3970 (setq name (substring dest 1))
3971 (cond
3972 ((org-string-match-p "\\`\\$[a-zA-Z][a-zA-Z0-9]*" dest)
3973 (org-table-goto-field dest))
3974 ((org-string-match-p "\\`@\\([1-9][0-9]*\\)\\$\\([1-9][0-9]*\\)\\'"
3975 dest)
3976 (org-table-goto-field dest))
3977 (t (org-table-goto-column (string-to-number name))))
3978 (move-marker pos (point))
3979 (org-table-highlight-rectangle nil nil face2))
3980 (cond
3981 ((equal dest match))
3982 ((not match))
3983 ((eq what 'range)
3984 (ignore-errors (org-table-get-range match table-start nil 'highlight)))
3985 ((setq e (assoc var org-table-named-field-locations))
3986 (org-table-goto-field var)
3987 (org-table-highlight-rectangle)
3988 (message "Named field, column %d of line %d" (nth 2 e) (nth 1 e)))
3989 ((setq e (assoc var org-table-column-names))
3990 (org-table-goto-column (string-to-number (cdr e)))
3991 (org-table-highlight-rectangle)
3992 (goto-char table-start)
3993 (if (re-search-forward (concat "^[ \t]*| *! *.*?| *\\(" var "\\) *|")
3994 (org-table-end) t)
3995 (progn
3996 (goto-char (match-beginning 1))
3997 (org-table-highlight-rectangle)
3998 (message "Named column (column %s)" (cdr e)))
3999 (user-error "Column name not found")))
4000 ((eq what 'column)
4001 ;; Column number.
4002 (org-table-goto-column (string-to-number (substring match 1)))
4003 (org-table-highlight-rectangle)
4004 (message "Column %s" (substring match 1)))
4005 ((setq e (assoc var org-table-local-parameters))
4006 (goto-char table-start)
4007 (if (re-search-forward (concat "^[ \t]*| *\\$ *.*?| *\\(" var "=\\)") nil t)
4008 (progn
4009 (goto-char (match-beginning 1))
4010 (org-table-highlight-rectangle)
4011 (message "Local parameter."))
4012 (user-error "Parameter not found")))
4013 ((not var) (user-error "No reference at point"))
4014 ((setq e (assoc var org-table-formula-constants-local))
4015 (message "Local Constant: $%s=%s in #+CONSTANTS line."
4016 var (cdr e)))
4017 ((setq e (assoc var org-table-formula-constants))
4018 (message "Constant: $%s=%s in `org-table-formula-constants'."
4019 var (cdr e)))
4020 ((setq e (and (fboundp 'constants-get) (constants-get var)))
4021 (message "Constant: $%s=%s, from `constants.el'%s."
4022 var e (format " (%s units)" constants-unit-system)))
4023 (t (user-error "Undefined name $%s" var)))
4024 (goto-char pos)
4025 (when (and org-show-positions
4026 (not (memq this-command '(org-table-fedit-scroll
4027 org-table-fedit-scroll-down))))
4028 (push pos org-show-positions)
4029 (push table-start org-show-positions)
4030 (let ((min (apply 'min org-show-positions))
4031 (max (apply 'max org-show-positions)))
4032 (set-window-start (selected-window) min)
4033 (goto-char max)
4034 (or (pos-visible-in-window-p max)
4035 (set-window-start (selected-window) max))))
4036 (select-window win))))
4038 (defun org-table-force-dataline ()
4039 "Make sure the cursor is in a dataline in a table."
4040 (unless (save-excursion
4041 (beginning-of-line 1)
4042 (looking-at org-table-dataline-regexp))
4043 (let* ((re org-table-dataline-regexp)
4044 (p1 (save-excursion (re-search-forward re nil 'move)))
4045 (p2 (save-excursion (re-search-backward re nil 'move))))
4046 (cond ((and p1 p2)
4047 (goto-char (if (< (abs (- p1 (point))) (abs (- p2 (point))))
4048 p1 p2)))
4049 ((or p1 p2) (goto-char (or p1 p2)))
4050 (t (user-error "No table dataline around here"))))))
4052 (defun org-table-fedit-line-up ()
4053 "Move cursor one line up in the window showing the table."
4054 (interactive)
4055 (org-table-fedit-move 'previous-line))
4057 (defun org-table-fedit-line-down ()
4058 "Move cursor one line down in the window showing the table."
4059 (interactive)
4060 (org-table-fedit-move 'next-line))
4062 (defun org-table-fedit-move (command)
4063 "Move the cursor in the window showing the table.
4064 Use COMMAND to do the motion, repeat if necessary to end up in a data line."
4065 (let ((org-table-allow-automatic-line-recalculation nil)
4066 (pos org-pos) (win (selected-window)) p)
4067 (select-window (get-buffer-window (marker-buffer org-pos)))
4068 (setq p (point))
4069 (call-interactively command)
4070 (while (and (org-at-table-p)
4071 (org-at-table-hline-p))
4072 (call-interactively command))
4073 (or (org-at-table-p) (goto-char p))
4074 (move-marker pos (point))
4075 (select-window win)))
4077 (defun org-table-fedit-scroll (N)
4078 (interactive "p")
4079 (let ((other-window-scroll-buffer (marker-buffer org-pos)))
4080 (scroll-other-window N)))
4082 (defun org-table-fedit-scroll-down (N)
4083 (interactive "p")
4084 (org-table-fedit-scroll (- N)))
4086 (defvar org-table-rectangle-overlays nil)
4088 (defun org-table-add-rectangle-overlay (beg end &optional face)
4089 "Add a new overlay."
4090 (let ((ov (make-overlay beg end)))
4091 (overlay-put ov 'face (or face 'secondary-selection))
4092 (push ov org-table-rectangle-overlays)))
4094 (defun org-table-highlight-rectangle (&optional beg end face)
4095 "Highlight rectangular region in a table.
4096 When buffer positions BEG and END are provided, use them to
4097 delimit the region to highlight. Otherwise, refer to point. Use
4098 FACE, when non-nil, for the highlight."
4099 (let* ((beg (or beg (point)))
4100 (end (or end (point)))
4101 (b (min beg end))
4102 (e (max beg end))
4103 (start-coordinates
4104 (save-excursion
4105 (goto-char b)
4106 (cons (line-beginning-position) (org-table-current-column))))
4107 (end-coordinates
4108 (save-excursion
4109 (goto-char e)
4110 (cons (line-beginning-position) (org-table-current-column)))))
4111 (when (boundp 'org-show-positions)
4112 (setq org-show-positions (cons b (cons e org-show-positions))))
4113 (goto-char (car start-coordinates))
4114 (let ((column-start (min (cdr start-coordinates) (cdr end-coordinates)))
4115 (column-end (max (cdr start-coordinates) (cdr end-coordinates)))
4116 (last-row (car end-coordinates)))
4117 (while (<= (point) last-row)
4118 (when (looking-at org-table-dataline-regexp)
4119 (org-table-goto-column column-start)
4120 (skip-chars-backward "^|\n")
4121 (let ((p (point)))
4122 (org-table-goto-column column-end)
4123 (skip-chars-forward "^|\n")
4124 (org-table-add-rectangle-overlay p (point) face)))
4125 (forward-line)))
4126 (goto-char (car start-coordinates)))
4127 (add-hook 'before-change-functions #'org-table-remove-rectangle-highlight))
4129 (defun org-table-remove-rectangle-highlight (&rest ignore)
4130 "Remove the rectangle overlays."
4131 (unless org-inhibit-highlight-removal
4132 (remove-hook 'before-change-functions 'org-table-remove-rectangle-highlight)
4133 (mapc 'delete-overlay org-table-rectangle-overlays)
4134 (setq org-table-rectangle-overlays nil)))
4136 (defvar org-table-coordinate-overlays nil
4137 "Collects the coordinate grid overlays, so that they can be removed.")
4138 (make-variable-buffer-local 'org-table-coordinate-overlays)
4140 (defun org-table-overlay-coordinates ()
4141 "Add overlays to the table at point, to show row/column coordinates."
4142 (interactive)
4143 (mapc 'delete-overlay org-table-coordinate-overlays)
4144 (setq org-table-coordinate-overlays nil)
4145 (save-excursion
4146 (let ((id 0) (ih 0) hline eol s1 s2 str ic ov beg)
4147 (goto-char (org-table-begin))
4148 (while (org-at-table-p)
4149 (setq eol (point-at-eol))
4150 (setq ov (make-overlay (point-at-bol) (1+ (point-at-bol))))
4151 (push ov org-table-coordinate-overlays)
4152 (setq hline (looking-at org-table-hline-regexp))
4153 (setq str (if hline (format "I*%-2d" (setq ih (1+ ih)))
4154 (format "%4d" (setq id (1+ id)))))
4155 (org-overlay-before-string ov str 'org-special-keyword 'evaporate)
4156 (when hline
4157 (setq ic 0)
4158 (while (re-search-forward "[+|]\\(-+\\)" eol t)
4159 (setq beg (1+ (match-beginning 0))
4160 ic (1+ ic)
4161 s1 (concat "$" (int-to-string ic))
4162 s2 (org-number-to-letters ic)
4163 str (if (eq org-table-use-standard-references t) s2 s1))
4164 (setq ov (make-overlay beg (+ beg (length str))))
4165 (push ov org-table-coordinate-overlays)
4166 (org-overlay-display ov str 'org-special-keyword 'evaporate)))
4167 (beginning-of-line 2)))))
4169 ;;;###autoload
4170 (defun org-table-toggle-coordinate-overlays ()
4171 "Toggle the display of Row/Column numbers in tables."
4172 (interactive)
4173 (setq org-table-overlay-coordinates (not org-table-overlay-coordinates))
4174 (message "Tables Row/Column numbers display turned %s"
4175 (if org-table-overlay-coordinates "on" "off"))
4176 (if (and (org-at-table-p) org-table-overlay-coordinates)
4177 (org-table-align))
4178 (unless org-table-overlay-coordinates
4179 (mapc 'delete-overlay org-table-coordinate-overlays)
4180 (setq org-table-coordinate-overlays nil)))
4182 ;;;###autoload
4183 (defun org-table-toggle-formula-debugger ()
4184 "Toggle the formula debugger in tables."
4185 (interactive)
4186 (setq org-table-formula-debug (not org-table-formula-debug))
4187 (message "Formula debugging has been turned %s"
4188 (if org-table-formula-debug "on" "off")))
4190 ;;; The orgtbl minor mode
4192 ;; Define a minor mode which can be used in other modes in order to
4193 ;; integrate the org-mode table editor.
4195 ;; This is really a hack, because the org-mode table editor uses several
4196 ;; keys which normally belong to the major mode, for example the TAB and
4197 ;; RET keys. Here is how it works: The minor mode defines all the keys
4198 ;; necessary to operate the table editor, but wraps the commands into a
4199 ;; function which tests if the cursor is currently inside a table. If that
4200 ;; is the case, the table editor command is executed. However, when any of
4201 ;; those keys is used outside a table, the function uses `key-binding' to
4202 ;; look up if the key has an associated command in another currently active
4203 ;; keymap (minor modes, major mode, global), and executes that command.
4204 ;; There might be problems if any of the keys used by the table editor is
4205 ;; otherwise used as a prefix key.
4207 ;; Another challenge is that the key binding for TAB can be tab or \C-i,
4208 ;; likewise the binding for RET can be return or \C-m. Orgtbl-mode
4209 ;; addresses this by checking explicitly for both bindings.
4211 ;; The optimized version (see variable `orgtbl-optimized') takes over
4212 ;; all keys which are bound to `self-insert-command' in the *global map*.
4213 ;; Some modes bind other commands to simple characters, for example
4214 ;; AUCTeX binds the double quote to `Tex-insert-quote'. With orgtbl-mode
4215 ;; active, this binding is ignored inside tables and replaced with a
4216 ;; modified self-insert.
4219 (defvar orgtbl-mode-map (make-keymap)
4220 "Keymap for `orgtbl-mode'.")
4222 (defvar org-old-auto-fill-inhibit-regexp nil
4223 "Local variable used by `orgtbl-mode'.")
4225 (defconst orgtbl-line-start-regexp
4226 "[ \t]*\\(|\\|#\\+\\(tblfm\\|orgtbl\\|tblname\\):\\)"
4227 "Matches a line belonging to an orgtbl.")
4229 (defconst orgtbl-extra-font-lock-keywords
4230 (list (list (concat "^" orgtbl-line-start-regexp ".*")
4231 0 (quote 'org-table) 'prepend))
4232 "Extra `font-lock-keywords' to be added when `orgtbl-mode' is active.")
4234 ;; Install it as a minor mode.
4235 (put 'orgtbl-mode :included t)
4236 (put 'orgtbl-mode :menu-tag "Org Table Mode")
4238 ;;;###autoload
4239 (define-minor-mode orgtbl-mode
4240 "The `org-mode' table editor as a minor mode for use in other modes."
4241 :lighter " OrgTbl" :keymap orgtbl-mode-map
4242 (org-load-modules-maybe)
4243 (cond
4244 ((derived-mode-p 'org-mode)
4245 ;; Exit without error, in case some hook functions calls this
4246 ;; by accident in org-mode.
4247 (message "Orgtbl-mode is not useful in org-mode, command ignored"))
4248 (orgtbl-mode
4249 (and (orgtbl-setup) (defun orgtbl-setup () nil)) ;; FIXME: Yuck!?!
4250 ;; Make sure we are first in minor-mode-map-alist
4251 (let ((c (assq 'orgtbl-mode minor-mode-map-alist)))
4252 ;; FIXME: maybe it should use emulation-mode-map-alists?
4253 (and c (setq minor-mode-map-alist
4254 (cons c (delq c minor-mode-map-alist)))))
4255 (org-set-local (quote org-table-may-need-update) t)
4256 (org-add-hook 'before-change-functions 'org-before-change-function
4257 nil 'local)
4258 (org-set-local 'org-old-auto-fill-inhibit-regexp
4259 auto-fill-inhibit-regexp)
4260 (org-set-local 'auto-fill-inhibit-regexp
4261 (if auto-fill-inhibit-regexp
4262 (concat orgtbl-line-start-regexp "\\|"
4263 auto-fill-inhibit-regexp)
4264 orgtbl-line-start-regexp))
4265 (add-to-invisibility-spec '(org-cwidth))
4266 (when (fboundp 'font-lock-add-keywords)
4267 (font-lock-add-keywords nil orgtbl-extra-font-lock-keywords)
4268 (org-restart-font-lock))
4269 (easy-menu-add orgtbl-mode-menu))
4271 (setq auto-fill-inhibit-regexp org-old-auto-fill-inhibit-regexp)
4272 (org-table-cleanup-narrow-column-properties)
4273 (org-remove-from-invisibility-spec '(org-cwidth))
4274 (remove-hook 'before-change-functions 'org-before-change-function t)
4275 (when (fboundp 'font-lock-remove-keywords)
4276 (font-lock-remove-keywords nil orgtbl-extra-font-lock-keywords)
4277 (org-restart-font-lock))
4278 (easy-menu-remove orgtbl-mode-menu)
4279 (force-mode-line-update 'all))))
4281 (defun org-table-cleanup-narrow-column-properties ()
4282 "Remove all properties related to narrow-column invisibility."
4283 (let ((s (point-min)))
4284 (while (setq s (text-property-any s (point-max)
4285 'display org-narrow-column-arrow))
4286 (remove-text-properties s (1+ s) '(display t)))
4287 (setq s (point-min))
4288 (while (setq s (text-property-any s (point-max) 'org-cwidth 1))
4289 (remove-text-properties s (1+ s) '(org-cwidth t)))
4290 (setq s (point-min))
4291 (while (setq s (text-property-any s (point-max) 'invisible 'org-cwidth))
4292 (remove-text-properties s (1+ s) '(invisible t)))))
4294 (defun orgtbl-make-binding (fun n &rest keys)
4295 "Create a function for binding in the table minor mode.
4296 FUN is the command to call inside a table. N is used to create a unique
4297 command name. KEYS are keys that should be checked in for a command
4298 to execute outside of tables."
4299 (eval
4300 (list 'defun
4301 (intern (concat "orgtbl-hijacker-command-" (int-to-string n)))
4302 '(arg)
4303 (concat "In tables, run `" (symbol-name fun) "'.\n"
4304 "Outside of tables, run the binding of `"
4305 (mapconcat #'key-description keys "' or `")
4306 "'.")
4307 '(interactive "p")
4308 (list 'if
4309 '(org-at-table-p)
4310 (list 'call-interactively (list 'quote fun))
4311 (list 'let '(orgtbl-mode)
4312 (list 'call-interactively
4313 (append '(or)
4314 (mapcar (lambda (k)
4315 (list 'key-binding k))
4316 keys)
4317 '('orgtbl-error))))))))
4319 (defun orgtbl-error ()
4320 "Error when there is no default binding for a table key."
4321 (interactive)
4322 (user-error "This key has no function outside tables"))
4324 (defun orgtbl-setup ()
4325 "Setup orgtbl keymaps."
4326 (let ((nfunc 0)
4327 (bindings
4328 '(([(meta shift left)] org-table-delete-column)
4329 ([(meta left)] org-table-move-column-left)
4330 ([(meta right)] org-table-move-column-right)
4331 ([(meta shift right)] org-table-insert-column)
4332 ([(meta shift up)] org-table-kill-row)
4333 ([(meta shift down)] org-table-insert-row)
4334 ([(meta up)] org-table-move-row-up)
4335 ([(meta down)] org-table-move-row-down)
4336 ("\C-c\C-w" org-table-cut-region)
4337 ("\C-c\M-w" org-table-copy-region)
4338 ("\C-c\C-y" org-table-paste-rectangle)
4339 ("\C-c\C-w" org-table-wrap-region)
4340 ("\C-c-" org-table-insert-hline)
4341 ("\C-c}" org-table-toggle-coordinate-overlays)
4342 ("\C-c{" org-table-toggle-formula-debugger)
4343 ("\C-m" org-table-next-row)
4344 ([(shift return)] org-table-copy-down)
4345 ("\C-c?" org-table-field-info)
4346 ("\C-c " org-table-blank-field)
4347 ("\C-c+" org-table-sum)
4348 ("\C-c=" org-table-eval-formula)
4349 ("\C-c'" org-table-edit-formulas)
4350 ("\C-c`" org-table-edit-field)
4351 ("\C-c*" org-table-recalculate)
4352 ("\C-c^" org-table-sort-lines)
4353 ("\M-a" org-table-beginning-of-field)
4354 ("\M-e" org-table-end-of-field)
4355 ([(control ?#)] org-table-rotate-recalc-marks)))
4356 elt key fun cmd)
4357 (while (setq elt (pop bindings))
4358 (setq nfunc (1+ nfunc))
4359 (setq key (org-key (car elt))
4360 fun (nth 1 elt)
4361 cmd (orgtbl-make-binding fun nfunc key))
4362 (org-defkey orgtbl-mode-map key cmd))
4364 ;; Special treatment needed for TAB and RET
4365 (org-defkey orgtbl-mode-map [(return)]
4366 (orgtbl-make-binding 'orgtbl-ret 100 [(return)] "\C-m"))
4367 (org-defkey orgtbl-mode-map "\C-m"
4368 (orgtbl-make-binding 'orgtbl-ret 101 "\C-m" [(return)]))
4370 (org-defkey orgtbl-mode-map [(tab)]
4371 (orgtbl-make-binding 'orgtbl-tab 102 [(tab)] "\C-i"))
4372 (org-defkey orgtbl-mode-map "\C-i"
4373 (orgtbl-make-binding 'orgtbl-tab 103 "\C-i" [(tab)]))
4375 (org-defkey orgtbl-mode-map [(shift tab)]
4376 (orgtbl-make-binding 'org-table-previous-field 104
4377 [(shift tab)] [(tab)] "\C-i"))
4380 (unless (featurep 'xemacs)
4381 (org-defkey orgtbl-mode-map [S-iso-lefttab]
4382 (orgtbl-make-binding 'org-table-previous-field 107
4383 [S-iso-lefttab] [backtab] [(shift tab)]
4384 [(tab)] "\C-i")))
4386 (org-defkey orgtbl-mode-map [backtab]
4387 (orgtbl-make-binding 'org-table-previous-field 108
4388 [backtab] [S-iso-lefttab] [(shift tab)]
4389 [(tab)] "\C-i"))
4391 (org-defkey orgtbl-mode-map "\M-\C-m"
4392 (orgtbl-make-binding 'org-table-wrap-region 105
4393 "\M-\C-m" [(meta return)]))
4394 (org-defkey orgtbl-mode-map [(meta return)]
4395 (orgtbl-make-binding 'org-table-wrap-region 106
4396 [(meta return)] "\M-\C-m"))
4398 (org-defkey orgtbl-mode-map "\C-c\C-c" 'orgtbl-ctrl-c-ctrl-c)
4399 (org-defkey orgtbl-mode-map "\C-c|" 'orgtbl-create-or-convert-from-region)
4401 (when orgtbl-optimized
4402 ;; If the user wants maximum table support, we need to hijack
4403 ;; some standard editing functions
4404 (org-remap orgtbl-mode-map
4405 'self-insert-command 'orgtbl-self-insert-command
4406 'delete-char 'org-delete-char
4407 'delete-backward-char 'org-delete-backward-char)
4408 (org-defkey orgtbl-mode-map "|" 'org-force-self-insert))
4409 (easy-menu-define orgtbl-mode-menu orgtbl-mode-map "OrgTbl menu"
4410 '("OrgTbl"
4411 ["Create or convert" org-table-create-or-convert-from-region
4412 :active (not (org-at-table-p)) :keys "C-c |" ]
4413 "--"
4414 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p) :keys "C-c C-c"]
4415 ["Next Field" org-cycle :active (org-at-table-p) :keys "TAB"]
4416 ["Previous Field" org-shifttab :active (org-at-table-p) :keys "S-TAB"]
4417 ["Next Row" org-return :active (org-at-table-p) :keys "RET"]
4418 "--"
4419 ["Blank Field" org-table-blank-field :active (org-at-table-p) :keys "C-c SPC"]
4420 ["Edit Field" org-table-edit-field :active (org-at-table-p) :keys "C-c ` "]
4421 ["Copy Field from Above"
4422 org-table-copy-down :active (org-at-table-p) :keys "S-RET"]
4423 "--"
4424 ("Column"
4425 ["Move Column Left" org-metaleft :active (org-at-table-p) :keys "M-<left>"]
4426 ["Move Column Right" org-metaright :active (org-at-table-p) :keys "M-<right>"]
4427 ["Delete Column" org-shiftmetaleft :active (org-at-table-p) :keys "M-S-<left>"]
4428 ["Insert Column" org-shiftmetaright :active (org-at-table-p) :keys "M-S-<right>"])
4429 ("Row"
4430 ["Move Row Up" org-metaup :active (org-at-table-p) :keys "M-<up>"]
4431 ["Move Row Down" org-metadown :active (org-at-table-p) :keys "M-<down>"]
4432 ["Delete Row" org-shiftmetaup :active (org-at-table-p) :keys "M-S-<up>"]
4433 ["Insert Row" org-shiftmetadown :active (org-at-table-p) :keys "M-S-<down>"]
4434 ["Sort lines in region" org-table-sort-lines :active (org-at-table-p) :keys "C-c ^"]
4435 "--"
4436 ["Insert Hline" org-table-insert-hline :active (org-at-table-p) :keys "C-c -"])
4437 ("Rectangle"
4438 ["Copy Rectangle" org-copy-special :active (org-at-table-p)]
4439 ["Cut Rectangle" org-cut-special :active (org-at-table-p)]
4440 ["Paste Rectangle" org-paste-special :active (org-at-table-p)]
4441 ["Fill Rectangle" org-table-wrap-region :active (org-at-table-p)])
4442 "--"
4443 ("Radio tables"
4444 ["Insert table template" orgtbl-insert-radio-table
4445 (assq major-mode orgtbl-radio-table-templates)]
4446 ["Comment/uncomment table" orgtbl-toggle-comment t])
4447 "--"
4448 ["Set Column Formula" org-table-eval-formula :active (org-at-table-p) :keys "C-c ="]
4449 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
4450 ["Edit Formulas" org-table-edit-formulas :active (org-at-table-p) :keys "C-c '"]
4451 ["Recalculate line" org-table-recalculate :active (org-at-table-p) :keys "C-c *"]
4452 ["Recalculate all" (org-table-recalculate '(4)) :active (org-at-table-p) :keys "C-u C-c *"]
4453 ["Iterate all" (org-table-recalculate '(16)) :active (org-at-table-p) :keys "C-u C-u C-c *"]
4454 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks :active (org-at-table-p) :keys "C-c #"]
4455 ["Sum Column/Rectangle" org-table-sum
4456 :active (or (org-at-table-p) (org-region-active-p)) :keys "C-c +"]
4457 ["Which Column?" org-table-current-column :active (org-at-table-p) :keys "C-c ?"]
4458 ["Debug Formulas"
4459 org-table-toggle-formula-debugger :active (org-at-table-p)
4460 :keys "C-c {"
4461 :style toggle :selected org-table-formula-debug]
4462 ["Show Col/Row Numbers"
4463 org-table-toggle-coordinate-overlays :active (org-at-table-p)
4464 :keys "C-c }"
4465 :style toggle :selected org-table-overlay-coordinates]
4466 "--"
4467 ("Plot"
4468 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
4469 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
4472 (defun orgtbl-ctrl-c-ctrl-c (arg)
4473 "If the cursor is inside a table, realign the table.
4474 If it is a table to be sent away to a receiver, do it.
4475 With prefix arg, also recompute table."
4476 (interactive "P")
4477 (let ((case-fold-search t) (pos (point)) action)
4478 (save-excursion
4479 (beginning-of-line 1)
4480 (setq action (cond
4481 ((looking-at "[ \t]*#\\+ORGTBL:.*\n[ \t]*|") (match-end 0))
4482 ((looking-at "[ \t]*|") pos)
4483 ((looking-at "[ \t]*#\\+tblfm:") 'recalc))))
4484 (cond
4485 ((integerp action)
4486 (goto-char action)
4487 (org-table-maybe-eval-formula)
4488 (if arg
4489 (call-interactively 'org-table-recalculate)
4490 (org-table-maybe-recalculate-line))
4491 (call-interactively 'org-table-align)
4492 (when (orgtbl-send-table 'maybe)
4493 (run-hooks 'orgtbl-after-send-table-hook)))
4494 ((eq action 'recalc)
4495 (save-excursion
4496 (beginning-of-line 1)
4497 (skip-chars-backward " \r\n\t")
4498 (if (org-at-table-p)
4499 (org-call-with-arg 'org-table-recalculate t))))
4500 (t (let (orgtbl-mode)
4501 (call-interactively (key-binding "\C-c\C-c")))))))
4503 (defun orgtbl-create-or-convert-from-region (arg)
4504 "Create table or convert region to table, if no conflicting binding.
4505 This installs the table binding `C-c |', but only if there is no
4506 conflicting binding to this key outside orgtbl-mode."
4507 (interactive "P")
4508 (let* (orgtbl-mode (cmd (key-binding "\C-c|")))
4509 (if cmd
4510 (call-interactively cmd)
4511 (call-interactively 'org-table-create-or-convert-from-region))))
4513 (defun orgtbl-tab (arg)
4514 "Justification and field motion for `orgtbl-mode'."
4515 (interactive "P")
4516 (if arg (org-table-edit-field t)
4517 (org-table-justify-field-maybe)
4518 (org-table-next-field)))
4520 (defun orgtbl-ret ()
4521 "Justification and field motion for `orgtbl-mode'."
4522 (interactive)
4523 (if (bobp)
4524 (newline)
4525 (org-table-justify-field-maybe)
4526 (org-table-next-row)))
4528 (defun orgtbl-self-insert-command (N)
4529 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
4530 If the cursor is in a table looking at whitespace, the whitespace is
4531 overwritten, and the table is not marked as requiring realignment."
4532 (interactive "p")
4533 (if (and (org-at-table-p)
4535 (and org-table-auto-blank-field
4536 (member last-command
4537 '(orgtbl-hijacker-command-100
4538 orgtbl-hijacker-command-101
4539 orgtbl-hijacker-command-102
4540 orgtbl-hijacker-command-103
4541 orgtbl-hijacker-command-104
4542 orgtbl-hijacker-command-105
4543 yas/expand))
4544 (org-table-blank-field))
4546 (eq N 1)
4547 (looking-at "[^|\n]* +|"))
4548 (let (org-table-may-need-update)
4549 (goto-char (1- (match-end 0)))
4550 (org-delete-backward-char 1)
4551 (goto-char (match-beginning 0))
4552 (self-insert-command N))
4553 (setq org-table-may-need-update t)
4554 (let* (orgtbl-mode
4556 (cmd (or (key-binding
4557 (or (and (listp function-key-map)
4558 (setq a (assoc last-input-event function-key-map))
4559 (cdr a))
4560 (vector last-input-event)))
4561 'self-insert-command)))
4562 (call-interactively cmd)
4563 (if (and org-self-insert-cluster-for-undo
4564 (eq cmd 'self-insert-command))
4565 (if (not (eq last-command 'orgtbl-self-insert-command))
4566 (setq org-self-insert-command-undo-counter 1)
4567 (if (>= org-self-insert-command-undo-counter 20)
4568 (setq org-self-insert-command-undo-counter 1)
4569 (and (> org-self-insert-command-undo-counter 0)
4570 buffer-undo-list
4571 (not (cadr buffer-undo-list)) ; remove nil entry
4572 (setcdr buffer-undo-list (cddr buffer-undo-list)))
4573 (setq org-self-insert-command-undo-counter
4574 (1+ org-self-insert-command-undo-counter))))))))
4576 ;;;###autoload
4577 (defvar orgtbl-exp-regexp "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$"
4578 "Regular expression matching exponentials as produced by calc.")
4580 (defun orgtbl-gather-send-defs ()
4581 "Gather a plist of :name, :transform, :params for each destination before
4582 a radio table."
4583 (save-excursion
4584 (goto-char (org-table-begin))
4585 (let (rtn)
4586 (beginning-of-line 0)
4587 (while (looking-at "[ \t]*#\\+ORGTBL[: \t][ \t]*SEND[ \t]+\\([^ \t\r\n]+\\)[ \t]+\\([^ \t\r\n]+\\)\\([ \t]+.*\\)?")
4588 (let ((name (org-no-properties (match-string 1)))
4589 (transform (intern (match-string 2)))
4590 (params (if (match-end 3)
4591 (read (concat "(" (match-string 3) ")")))))
4592 (push (list :name name :transform transform :params params)
4593 rtn)
4594 (beginning-of-line 0)))
4595 rtn)))
4597 (defun orgtbl-send-replace-tbl (name txt)
4598 "Find and replace table NAME with TXT."
4599 (save-excursion
4600 (goto-char (point-min))
4601 (unless (re-search-forward
4602 (concat "BEGIN +RECEIVE +ORGTBL +" name "\\([ \t]\\|$\\)") nil t)
4603 (user-error "Don't know where to insert translated table"))
4604 (let ((beg (line-beginning-position 2)))
4605 (unless (re-search-forward
4606 (concat "END +RECEIVE +ORGTBL +" name) nil t)
4607 (user-error "Cannot find end of insertion region"))
4608 (beginning-of-line)
4609 (delete-region beg (point)))
4610 (insert txt "\n")))
4612 ;;;###autoload
4613 (defun org-table-to-lisp (&optional txt)
4614 "Convert the table at point to a Lisp structure.
4615 The structure will be a list. Each item is either the symbol `hline'
4616 for a horizontal separator line, or a list of field values as strings.
4617 The table is taken from the parameter TXT, or from the buffer at point."
4618 (unless (or txt (org-at-table-p)) (user-error "No table at point"))
4619 (let ((txt (or txt
4620 (buffer-substring-no-properties (org-table-begin)
4621 (org-table-end)))))
4622 (mapcar (lambda (x)
4623 (if (string-match org-table-hline-regexp x) 'hline
4624 (org-split-string (org-trim x) "\\s-*|\\s-*")))
4625 (org-split-string txt "[ \t]*\n[ \t]*"))))
4627 (defun orgtbl-send-table (&optional maybe)
4628 "Send a transformed version of table at point to the receiver position.
4629 With argument MAYBE, fail quietly if no transformation is defined
4630 for this table."
4631 (interactive)
4632 (catch 'exit
4633 (unless (org-at-table-p) (user-error "Not at a table"))
4634 ;; when non-interactive, we assume align has just happened.
4635 (when (org-called-interactively-p 'any) (org-table-align))
4636 (let ((dests (orgtbl-gather-send-defs))
4637 (table (org-table-to-lisp
4638 (buffer-substring-no-properties (org-table-begin)
4639 (org-table-end))))
4640 (ntbl 0))
4641 (unless dests
4642 (if maybe (throw 'exit nil)
4643 (user-error "Don't know how to transform this table")))
4644 (dolist (dest dests)
4645 (let ((name (plist-get dest :name))
4646 (transform (plist-get dest :transform))
4647 (params (plist-get dest :params)))
4648 (unless (fboundp transform)
4649 (user-error "No such transformation function %s" transform))
4650 (orgtbl-send-replace-tbl name (funcall transform table params)))
4651 (incf ntbl))
4652 (message "Table converted and installed at %d receiver location%s"
4653 ntbl (if (> ntbl 1) "s" ""))
4654 (and (> ntbl 0) ntbl))))
4656 (defun org-remove-by-index (list indices &optional i0)
4657 "Remove the elements in LIST with indices in INDICES.
4658 First element has index 0, or I0 if given."
4659 (if (not indices)
4660 list
4661 (if (integerp indices) (setq indices (list indices)))
4662 (setq i0 (1- (or i0 0)))
4663 (delq :rm (mapcar (lambda (x)
4664 (setq i0 (1+ i0))
4665 (if (memq i0 indices) :rm x))
4666 list))))
4668 (defun orgtbl-toggle-comment ()
4669 "Comment or uncomment the orgtbl at point."
4670 (interactive)
4671 (let* ((case-fold-search t)
4672 (re1 (concat "^" (regexp-quote comment-start) orgtbl-line-start-regexp))
4673 (re2 (concat "^" orgtbl-line-start-regexp))
4674 (commented (save-excursion (beginning-of-line 1)
4675 (cond ((looking-at re1) t)
4676 ((looking-at re2) nil)
4677 (t (user-error "Not at an org table")))))
4678 (re (if commented re1 re2))
4679 beg end)
4680 (save-excursion
4681 (beginning-of-line 1)
4682 (while (looking-at re) (beginning-of-line 0))
4683 (beginning-of-line 2)
4684 (setq beg (point))
4685 (while (looking-at re) (beginning-of-line 2))
4686 (setq end (point)))
4687 (comment-region beg end (if commented '(4) nil))))
4689 (defun orgtbl-insert-radio-table ()
4690 "Insert a radio table template appropriate for this major mode."
4691 (interactive)
4692 (let* ((e (assq major-mode orgtbl-radio-table-templates))
4693 (txt (nth 1 e))
4694 name pos)
4695 (unless e (user-error "No radio table setup defined for %s" major-mode))
4696 (setq name (read-string "Table name: "))
4697 (while (string-match "%n" txt)
4698 (setq txt (replace-match name t t txt)))
4699 (or (bolp) (insert "\n"))
4700 (setq pos (point))
4701 (insert txt)
4702 (goto-char pos)))
4704 ;;;###autoload
4705 (defun orgtbl-to-generic (table params)
4706 "Convert the orgtbl-mode TABLE to some other format.
4708 This generic routine can be used for many standard cases.
4710 TABLE is a list, each entry either the symbol `hline' for
4711 a horizontal separator line, or a list of fields for that
4712 line. PARAMS is a property list of parameters that can
4713 influence the conversion.
4715 Valid parameters are:
4717 :backend, :raw
4719 Export back-end used as a basis to transcode elements of the
4720 table, when no specific parameter applies to it. It is also
4721 used to translate cells contents. You can prevent this by
4722 setting :raw property to a non-nil value.
4724 :splice
4726 When non-nil, only convert rows, not the table itself. This is
4727 equivalent to setting to the empty string both :tstart
4728 and :tend, which see.
4730 :skip
4732 When set to an integer N, skip the first N lines of the table.
4733 Horizontal separation lines do count for this parameter!
4735 :skipcols
4737 List of columns that should be skipped. If the table has
4738 a column with calculation marks, that column is automatically
4739 discarded beforehand.
4741 :hline
4743 String to be inserted on horizontal separation lines. May be
4744 nil to ignore these lines altogether.
4746 :sep
4748 Separator between two fields, as a string.
4750 Each in the following group may be either a string or a function
4751 of no arguments returning a string:
4753 :tstart, :tend
4755 Strings to start and end the table. Ignored when :splice is t.
4757 :lstart, :lend
4759 Strings to start and end a new table line.
4761 :llstart, :llend
4763 Strings to start and end the last table line. Default,
4764 respectively, to :lstart and :lend.
4766 Each in the following group may be a string or a function of one
4767 argument (either the cells in the current row, as a list of
4768 strings, or the current cell) returning a string:
4770 :lfmt
4772 Format string for an entire row, with enough %s to capture all
4773 fields. When non-nil, :lstart, :lend, and :sep are ignored.
4775 :llfmt
4777 Format for the entire last line, defaults to :lfmt.
4779 :fmt
4781 A format to be used to wrap the field, should contain %s for
4782 the original field value. For example, to wrap everything in
4783 dollars, you could use :fmt \"$%s$\". This may also be
4784 a property list with column numbers and format strings, or
4785 functions, e.g.,
4787 \(:fmt (2 \"$%s$\" 4 (lambda (c) (format \"$%s$\" c))))
4789 :hlstart :hllstart :hlend :hllend :hsep :hlfmt :hllfmt :hfmt
4791 Same as above, specific for the header lines in the table.
4792 All lines before the first hline are treated as header. If
4793 any of these is not present, the data line value is used.
4795 This may be either a string or a function of two arguments:
4797 :efmt
4799 Use this format to print numbers with exponential. The format
4800 should have %s twice for inserting mantissa and exponent, for
4801 example \"%s\\\\times10^{%s}\". This may also be a property
4802 list with column numbers and format strings or functions.
4803 :fmt will still be applied after :efmt."
4804 ;; Make sure `org-export-create-backend' is available.
4805 (require 'ox)
4806 (let* ((backend (plist-get params :backend))
4807 (custom-backend
4808 ;; Build a custom back-end according to PARAMS. Before
4809 ;; defining a translator, check if there is anything to do.
4810 ;; When there isn't, let BACKEND handle the element.
4811 (org-export-create-backend
4812 :parent (or backend 'org)
4813 :transcoders
4814 `((table . ,(org-table--to-generic-table params))
4815 (table-row . ,(org-table--to-generic-row params))
4816 (table-cell . ,(org-table--to-generic-cell params))
4817 ;; Macros are not going to be expanded. However, no
4818 ;; regular back-end has a transcoder for them. We
4819 ;; provide one so they are not ignored, but displayed
4820 ;; as-is instead.
4821 (macro . (lambda (m c i) (org-element-macro-interpreter m nil))))))
4822 data info)
4823 ;; Store TABLE as Org syntax in DATA. Tolerate non-string cells.
4824 ;; Initialize communication channel in INFO.
4825 (with-temp-buffer
4826 (let ((org-inhibit-startup t)) (org-mode))
4827 (let ((standard-output (current-buffer)))
4828 (dolist (e table)
4829 (cond ((eq e 'hline) (princ "|--\n"))
4830 ((consp e)
4831 (princ "| ") (dolist (c e) (princ c) (princ " |"))
4832 (princ "\n")))))
4833 (setq data
4834 (org-element-map (org-element-parse-buffer) 'table
4835 #'identity nil t))
4836 (setq info (org-export-get-environment backend nil params)))
4837 (when (and backend (symbolp backend) (not (org-export-get-backend backend)))
4838 (user-error "Unknown :backend value"))
4839 (when (or (not backend) (plist-get info :raw)) (require 'ox-org))
4840 ;; Handle :skip parameter.
4841 (let ((skip (plist-get info :skip)))
4842 (when skip
4843 (unless (wholenump skip) (user-error "Wrong :skip value"))
4844 (let ((n 0))
4845 (org-element-map data 'table-row
4846 (lambda (row)
4847 (if (>= n skip) t
4848 (org-element-extract-element row)
4849 (incf n)
4850 nil))
4851 nil t))))
4852 ;; Handle :skipcols parameter.
4853 (let ((skipcols (plist-get info :skipcols)))
4854 (when skipcols
4855 (unless (consp skipcols) (user-error "Wrong :skipcols value"))
4856 (org-element-map data 'table
4857 (lambda (table)
4858 (let ((specialp (org-export-table-has-special-column-p table)))
4859 (dolist (row (org-element-contents table))
4860 (when (eq (org-element-property :type row) 'standard)
4861 (let ((c 1))
4862 (dolist (cell (nthcdr (if specialp 1 0)
4863 (org-element-contents row)))
4864 (when (memq c skipcols)
4865 (org-element-extract-element cell))
4866 (incf c))))))))))
4867 ;; Since we are going to export using a low-level mechanism,
4868 ;; ignore special column and special rows manually.
4869 (let ((special? (org-export-table-has-special-column-p data))
4870 ignore)
4871 (org-element-map data (if special? '(table-cell table-row) 'table-row)
4872 (lambda (datum)
4873 (when (if (eq (org-element-type datum) 'table-row)
4874 (org-export-table-row-is-special-p datum nil)
4875 (org-export-first-sibling-p datum nil))
4876 (push datum ignore))))
4877 (setq info (plist-put info :ignore-list ignore)))
4878 ;; We use a low-level mechanism to export DATA so as to skip all
4879 ;; usual pre-processing and post-processing, i.e., hooks, filters,
4880 ;; Babel code evaluation, include keywords and macro expansion,
4881 ;; and filters.
4882 (let ((output (org-export-data-with-backend data custom-backend info)))
4883 ;; Remove final newline.
4884 (if (org-string-nw-p output) (substring-no-properties output 0 -1) ""))))
4886 (defun org-table--generic-apply (value name &optional with-cons &rest args)
4887 (cond ((null value) nil)
4888 ((functionp value) `(funcall ',value ,@args))
4889 ((stringp value)
4890 (cond ((consp (car args)) `(apply #'format ,value ,@args))
4891 (args `(format ,value ,@args))
4892 (t value)))
4893 ((and with-cons (consp value))
4894 `(let ((val (cadr (memq column ',value))))
4895 (cond ((null val) contents)
4896 ((stringp val) (format val ,@args))
4897 ((functionp val) (funcall val ,@args))
4898 (t (user-error "Wrong %s value" ,name)))))
4899 (t (user-error "Wrong %s value" name))))
4901 (defun org-table--to-generic-table (params)
4902 "Return custom table transcoder according to PARAMS.
4903 PARAMS is a plist. See `orgtbl-to-generic' for more
4904 information."
4905 (let ((backend (plist-get params :backend))
4906 (splice (plist-get params :splice))
4907 (tstart (plist-get params :tstart))
4908 (tend (plist-get params :tend)))
4909 `(lambda (table contents info)
4910 (concat
4911 ,(and tstart (not splice)
4912 `(concat ,(org-table--generic-apply tstart ":tstart") "\n"))
4913 ,(if (or (not backend) tstart tend splice) 'contents
4914 `(org-export-with-backend ',backend table contents info))
4915 ,(org-table--generic-apply (and (not splice) tend) ":tend")))))
4917 (defun org-table--to-generic-row (params)
4918 "Return custom table row transcoder according to PARAMS.
4919 PARAMS is a plist. See `orgtbl-to-generic' for more
4920 information."
4921 (let* ((backend (plist-get params :backend))
4922 (lstart (plist-get params :lstart))
4923 (llstart (plist-get params :llstart))
4924 (hlstart (plist-get params :hlstart))
4925 (hllstart (plist-get params :hllstart))
4926 (lend (plist-get params :lend))
4927 (llend (plist-get params :llend))
4928 (hlend (plist-get params :hlend))
4929 (hllend (plist-get params :hllend))
4930 (lfmt (plist-get params :lfmt))
4931 (llfmt (plist-get params :llfmt))
4932 (hlfmt (plist-get params :hlfmt))
4933 (hllfmt (plist-get params :hllfmt)))
4934 `(lambda (row contents info)
4935 (if (eq (org-element-property :type row) 'rule)
4936 ,(cond
4937 ((plist-member params :hline)
4938 (org-table--generic-apply (plist-get params :hline) ":hline"))
4939 (backend `(org-export-with-backend ',backend row nil info)))
4940 (let ((headerp (org-export-table-row-in-header-p row info))
4941 (lastp (not (org-export-get-next-element row info)))
4942 (last-header-p (org-export-table-row-ends-header-p row info)))
4943 (when contents
4944 ;; Check if we can apply `:lfmt', `:llfmt', `:hlfmt', or
4945 ;; `:hllfmt' to CONTENTS. Otherwise, fallback on
4946 ;; `:lstart', `:lend' and their relatives.
4947 ,(let ((cells
4948 '(org-element-map row 'table-cell
4949 (lambda (cell)
4950 ;; Export all cells, without separators.
4952 ;; Use `org-export-data-with-backend'
4953 ;; instead of `org-export-data' to eschew
4954 ;; cached values, which
4955 ;; ignore :orgtbl-ignore-sep parameter.
4956 (org-export-data-with-backend
4957 cell
4958 (plist-get info :back-end)
4959 (org-combine-plists info '(:orgtbl-ignore-sep t))))
4960 info)))
4961 `(cond
4962 ,(and hllfmt
4963 `(last-header-p ,(org-table--generic-apply
4964 hllfmt ":hllfmt" nil cells)))
4965 ,(and hlfmt
4966 `(headerp ,(org-table--generic-apply
4967 hlfmt ":hlfmt" nil cells)))
4968 ,(and llfmt
4969 `(lastp ,(org-table--generic-apply
4970 llfmt ":llfmt" nil cells)))
4972 ,(if lfmt (org-table--generic-apply lfmt ":lfmt" nil cells)
4973 `(concat
4974 (cond
4975 ,(and
4976 (or hllstart hllend)
4977 `(last-header-p
4978 (concat
4979 ,(org-table--generic-apply hllstart ":hllstart")
4980 contents
4981 ,(org-table--generic-apply hllend ":hllend"))))
4982 ,(and
4983 (or hlstart hlend)
4984 `(headerp
4985 (concat
4986 ,(org-table--generic-apply hlstart ":hlstart")
4987 contents
4988 ,(org-table--generic-apply hlend ":hlend"))))
4989 ,(and
4990 (or llstart llend)
4991 `(lastp
4992 (concat
4993 ,(org-table--generic-apply llstart ":llstart")
4994 contents
4995 ,(org-table--generic-apply llend ":llend"))))
4997 ,(cond
4998 ((or lstart lend)
4999 `(concat
5000 ,(org-table--generic-apply lstart ":lstart")
5001 contents
5002 ,(org-table--generic-apply lend ":lend")))
5003 (backend
5004 `(org-export-with-backend
5005 ',backend row contents info))
5006 (t 'contents)))))))))))))))
5008 (defun org-table--to-generic-cell (params)
5009 "Return custom table cell transcoder according to PARAMS.
5010 PARAMS is a plist. See `orgtbl-to-generic' for more
5011 information."
5012 (let* ((backend (plist-get params :backend))
5013 (efmt (plist-get params :efmt))
5014 (fmt (plist-get params :fmt))
5015 (hfmt (plist-get params :hfmt))
5016 (sep (plist-get params :sep))
5017 (hsep (plist-get params :hsep)))
5018 `(lambda (cell contents info)
5019 (let ((headerp (org-export-table-row-in-header-p
5020 (org-export-get-parent-element cell) info))
5021 (column (1+ (cdr (org-export-table-cell-address cell info)))))
5022 ;; Make sure that contents are exported as Org data when :raw
5023 ;; parameter is non-nil.
5024 ,(when (and backend (plist-get params :raw))
5025 `(setq contents
5026 ;; Since we don't know what are the pseudo object
5027 ;; types defined in backend, we cannot pass them to
5028 ;; `org-element-interpret-data'. As a consequence,
5029 ;; they will be treated as pseudo elements, and
5030 ;; will have newlines appended instead of spaces.
5031 ;; Therefore, we must make sure :post-blank value
5032 ;; is really turned into spaces.
5033 (replace-regexp-in-string
5034 "\n" " "
5035 (org-trim
5036 (org-element-interpret-data
5037 (org-element-contents cell))))))
5038 (when contents
5039 ;; Check if we can apply `:efmt' on CONTENTS.
5040 ,(when efmt
5041 `(when (string-match orgtbl-exp-regexp contents)
5042 (let ((mantissa (match-string 1 contents))
5043 (exponent (match-string 2 contents)))
5044 (setq contents ,(org-table--generic-apply
5045 efmt ":efmt" t 'mantissa 'exponent)))))
5046 ;; Check if we can apply FMT (or HFMT) on CONTENTS.
5047 (cond
5048 ,(and hfmt `(headerp (setq contents ,(org-table--generic-apply
5049 hfmt ":hfmt" t 'contents))))
5050 ,(and fmt `(t (setq contents ,(org-table--generic-apply
5051 fmt ":fmt" t 'contents))))))
5052 ;; If a separator is provided, use it instead of BACKEND's.
5053 ;; Separators are ignored when LFMT (or equivalent) is
5054 ;; provided.
5055 ,(cond
5056 ((or hsep sep)
5057 `(if (or ,(and (not sep) '(not headerp))
5058 (plist-get info :orgtbl-ignore-sep)
5059 (not (org-export-get-next-element cell info)))
5060 ,(if (not backend) 'contents
5061 `(org-export-with-backend ',backend cell contents info))
5062 (concat contents
5063 ,(if (and sep hsep) `(if headerp ,hsep ,sep)
5064 (or hsep sep)))))
5065 (backend `(org-export-with-backend ',backend cell contents info))
5066 (t 'contents))))))
5068 ;;;###autoload
5069 (defun orgtbl-to-tsv (table params)
5070 "Convert the orgtbl-mode table to TAB separated material."
5071 (orgtbl-to-generic table (org-combine-plists '(:sep "\t") params)))
5073 ;;;###autoload
5074 (defun orgtbl-to-csv (table params)
5075 "Convert the orgtbl-mode table to CSV material.
5076 This does take care of the proper quoting of fields with comma or quotes."
5077 (orgtbl-to-generic table
5078 (org-combine-plists '(:sep "," :fmt org-quote-csv-field)
5079 params)))
5081 ;;;###autoload
5082 (defun orgtbl-to-latex (table params)
5083 "Convert the orgtbl-mode TABLE to LaTeX.
5085 TABLE is a list, each entry either the symbol `hline' for
5086 a horizontal separator line, or a list of fields for that line.
5087 PARAMS is a property list of parameters that can influence the
5088 conversion. All parameters from `orgtbl-to-generic' are
5089 supported. It is also possible to use the following ones:
5091 :booktabs
5093 When non-nil, use formal \"booktabs\" style.
5095 :environment
5097 Specify environment to use, as a string. If you use
5098 \"longtable\", you may also want to specify :language property,
5099 as a string, to get proper continuation strings."
5100 (require 'ox-latex)
5101 (orgtbl-to-generic
5102 table
5103 (org-combine-plists
5104 ;; Provide sane default values.
5105 (list :backend 'latex
5106 :latex-default-table-mode 'table
5107 :latex-tables-centered nil
5108 :latex-tables-booktabs (plist-get params :booktabs)
5109 :latex-table-scientific-notation nil
5110 :latex-default-table-environment
5111 (or (plist-get params :environment) "tabular"))
5112 params)))
5114 ;;;###autoload
5115 (defun orgtbl-to-html (table params)
5116 "Convert the orgtbl-mode TABLE to HTML.
5118 TABLE is a list, each entry either the symbol `hline' for
5119 a horizontal separator line, or a list of fields for that line.
5120 PARAMS is a property list of parameters that can influence the
5121 conversion. All parameters from `orgtbl-to-generic' are
5122 supported. It is also possible to use the following one:
5124 :attributes
5126 Attributes and values, as a plist, which will be used in
5127 <table> tag."
5128 (require 'ox-html)
5129 (orgtbl-to-generic
5130 table
5131 (org-combine-plists
5132 ;; Provide sane default values.
5133 (list :backend 'html
5134 :html-table-data-tags '("<td%s>" . "</td>")
5135 :html-table-use-header-tags-for-first-column nil
5136 :html-table-align-individual-fields t
5137 :html-table-row-tags '("<tr>" . "</tr>")
5138 :html-table-attributes
5139 (if (plist-member params :attributes)
5140 (plist-get params :attributes)
5141 '(:border "2" :cellspacing "0" :cellpadding "6" :rules "groups"
5142 :frame "hsides")))
5143 params)))
5145 ;;;###autoload
5146 (defun orgtbl-to-texinfo (table params)
5147 "Convert the orgtbl-mode TABLE to Texinfo.
5149 TABLE is a list, each entry either the symbol `hline' for
5150 a horizontal separator line, or a list of fields for that line.
5151 PARAMS is a property list of parameters that can influence the
5152 conversion. All parameters from `orgtbl-to-generic' are
5153 supported. It is also possible to use the following one:
5155 :columns
5157 Column widths, as a string. When providing column fractions,
5158 \"@columnfractions\" command can be omitted."
5159 (require 'ox-texinfo)
5160 (let ((output
5161 (orgtbl-to-generic
5162 table
5163 (org-combine-plists
5164 (list :backend 'texinfo
5165 :texinfo-tables-verbatim nil
5166 :texinfo-table-scientific-notation nil)
5167 params)))
5168 (columns (let ((w (plist-get params :columns)))
5169 (cond ((not w) nil)
5170 ((org-string-match-p "{\\|@columnfractions " w) w)
5171 (t (concat "@columnfractions " w))))))
5172 (if (not columns) output
5173 (replace-regexp-in-string
5174 "@multitable \\(.*\\)" columns output t nil 1))))
5176 ;;;###autoload
5177 (defun orgtbl-to-orgtbl (table params)
5178 "Convert the orgtbl-mode TABLE into another orgtbl-mode table.
5180 TABLE is a list, each entry either the symbol `hline' for
5181 a horizontal separator line, or a list of fields for that line.
5182 PARAMS is a property list of parameters that can influence the
5183 conversion. All parameters from `orgtbl-to-generic' are
5184 supported.
5186 Useful when slicing one table into many. The :hline, :sep,
5187 :lstart, and :lend provide orgtbl framing. :tstart and :tend can
5188 be set to provide ORGTBL directives for the generated table."
5189 (require 'ox-org)
5190 (orgtbl-to-generic table (org-combine-plists params (list :backend 'org))))
5192 (defun orgtbl-to-table.el (table params)
5193 "Convert the orgtbl-mode TABLE into a table.el table.
5194 TABLE is a list, each entry either the symbol `hline' for
5195 a horizontal separator line, or a list of fields for that line.
5196 PARAMS is a property list of parameters that can influence the
5197 conversion. All parameters from `orgtbl-to-generic' are
5198 supported."
5199 (with-temp-buffer
5200 (insert (orgtbl-to-orgtbl table params))
5201 (org-table-align)
5202 (replace-regexp-in-string
5203 "-|" "-+"
5204 (replace-regexp-in-string "|-" "+-" (buffer-substring 1 (buffer-size))))))
5206 (defun orgtbl-to-unicode (table params)
5207 "Convert the orgtbl-mode TABLE into a table with unicode characters.
5209 TABLE is a list, each entry either the symbol `hline' for
5210 a horizontal separator line, or a list of fields for that line.
5211 PARAMS is a property list of parameters that can influence the
5212 conversion. All parameters from `orgtbl-to-generic' are
5213 supported. It is also possible to use the following ones:
5215 :ascii-art
5217 When non-nil, use \"ascii-art-to-unicode\" package to translate
5218 the table. You can download it here:
5219 http://gnuvola.org/software/j/aa2u/ascii-art-to-unicode.el.
5221 :narrow
5223 When non-nil, narrow columns width than provided width cookie,
5224 using \"=>\" as an ellipsis, just like in an Org mode buffer."
5225 (require 'ox-ascii)
5226 (orgtbl-to-generic
5227 table
5228 (org-combine-plists
5229 (list :backend 'ascii
5230 :ascii-charset 'utf-8
5231 :ascii-table-widen-columns (not (plist-get params :narrow))
5232 :ascii-table-use-ascii-art (plist-get params :ascii-art))
5233 params)))
5235 ;; Put the cursor in a column containing numerical values
5236 ;; of an Org-Mode table,
5237 ;; type C-c " a
5238 ;; A new column is added with a bar plot.
5239 ;; When the table is refreshed (C-u C-c *),
5240 ;; the plot is updated to reflect the new values.
5242 (defun orgtbl-ascii-draw (value min max &optional width characters)
5243 "Draw an ascii bar in a table.
5244 VALUE is a the value to plot, the width of the bar to draw. A
5245 value equal to MIN will be displayed as empty (zero width bar).
5246 A value equal to MAX will draw a bar filling all the WIDTH.
5247 WIDTH is the expected width in characters of the column.
5248 CHARACTERS is a string that will compose the bar, with shades of
5249 grey from pure white to pure black. It defaults to a 10
5250 characters string of regular ascii characters."
5251 (let* ((characters (or characters " .:;c!lhVHW"))
5252 (width (or width 12))
5253 (value (if (numberp value) value (string-to-number value)))
5254 (value (* (/ (- (+ value 0.0) min) (- max min)) width)))
5255 (cond
5256 ((< value 0) "too small")
5257 ((> value width) "too large")
5259 (let ((len (1- (length characters))))
5260 (concat
5261 (make-string (floor value) (elt characters len))
5262 (string (elt characters
5263 (floor (* (- value (floor value)) len))))))))))
5265 ;;;###autoload
5266 (defun orgtbl-ascii-plot (&optional ask)
5267 "Draw an ascii bar plot in a column.
5268 With cursor in a column containing numerical values, this
5269 function will draw a plot in a new column.
5270 ASK, if given, is a numeric prefix to override the default 12
5271 characters width of the plot. ASK may also be the
5272 \\[universal-argument] prefix, which will prompt for the width."
5273 (interactive "P")
5274 (let ((col (org-table-current-column))
5275 (min 1e999) ; 1e999 will be converted to infinity
5276 (max -1e999) ; which is the desired result
5277 (table (org-table-to-lisp))
5278 (length
5279 (cond ((consp ask)
5280 (read-number "Length of column " 12))
5281 ((numberp ask) ask)
5282 (t 12))))
5283 ;; Skip any hline a the top of table.
5284 (while (eq (car table) 'hline) (setq table (cdr table)))
5285 ;; Skip table header if any.
5286 (dolist (x (or (cdr (memq 'hline table)) table))
5287 (when (consp x)
5288 (setq x (nth (1- col) x))
5289 (when (string-match
5290 "^[-+]?\\([0-9]*[.]\\)?[0-9]*\\([eE][+-]?[0-9]+\\)?$"
5292 (setq x (string-to-number x))
5293 (when (> min x) (setq min x))
5294 (when (< max x) (setq max x)))))
5295 (org-table-insert-column)
5296 (org-table-move-column-right)
5297 (org-table-store-formulas
5298 (cons
5299 (cons
5300 (concat "$" (number-to-string (1+ col)))
5301 (format "'(%s $%s %s %s %s)"
5302 "orgtbl-ascii-draw" col min max length))
5303 (org-table-get-stored-formulas)))
5304 (org-table-recalculate t)))
5306 ;; Example of extension: unicode characters
5307 ;; Here are two examples of different styles.
5309 ;; Unicode block characters are used to give a smooth effect.
5310 ;; See http://en.wikipedia.org/wiki/Block_Elements
5311 ;; Use one of those drawing functions
5312 ;; - orgtbl-ascii-draw (the default ascii)
5313 ;; - orgtbl-uc-draw-grid (unicode with a grid effect)
5314 ;; - orgtbl-uc-draw-cont (smooth unicode)
5316 ;; This is best viewed with the "DejaVu Sans Mono" font
5317 ;; (use M-x set-default-font).
5319 (defun orgtbl-uc-draw-grid (value min max &optional width)
5320 "Draw a bar in a table using block unicode characters.
5321 It is a variant of orgtbl-ascii-draw with Unicode block
5322 characters, for a smooth display. Bars appear as grids (to the
5323 extent the font allows)."
5324 ;; http://en.wikipedia.org/wiki/Block_Elements
5325 ;; best viewed with the "DejaVu Sans Mono" font.
5326 (orgtbl-ascii-draw value min max width
5327 " \u258F\u258E\u258D\u258C\u258B\u258A\u2589"))
5329 (defun orgtbl-uc-draw-cont (value min max &optional width)
5330 "Draw a bar in a table using block unicode characters.
5331 It is a variant of orgtbl-ascii-draw with Unicode block
5332 characters, for a smooth display. Bars are solid (to the extent
5333 the font allows)."
5334 (orgtbl-ascii-draw value min max width
5335 " \u258F\u258E\u258D\u258C\u258B\u258A\u2589\u2588"))
5337 (defun org-table-get-remote-range (name-or-id form)
5338 "Get a field value or a list of values in a range from table at ID.
5340 NAME-OR-ID may be the name of a table in the current file as set
5341 by a \"#+NAME:\" directive. The first table following this line
5342 will then be used. Alternatively, it may be an ID referring to
5343 any entry, also in a different file. In this case, the first
5344 table in that entry will be referenced.
5345 FORM is a field or range descriptor like \"@2$3\" or \"B3\" or
5346 \"@I$2..@II$2\". All the references must be absolute, not relative.
5348 The return value is either a single string for a single field, or a
5349 list of the fields in the rectangle."
5350 (save-match-data
5351 (let ((case-fold-search t) (id-loc nil)
5352 ;; Protect a bunch of variables from being overwritten by
5353 ;; the context of the remote table.
5354 org-table-column-names org-table-column-name-regexp
5355 org-table-local-parameters org-table-named-field-locations
5356 org-table-current-line-types
5357 org-table-current-begin-pos org-table-dlines
5358 org-table-current-ncol
5359 org-table-hlines org-table-last-alignment
5360 org-table-last-column-widths org-table-last-alignment
5361 org-table-last-column-widths
5362 buffer loc)
5363 (setq form (org-table-convert-refs-to-rc form))
5364 (org-with-wide-buffer
5365 (goto-char (point-min))
5366 (if (re-search-forward
5367 (concat "^[ \t]*#\\+\\(tbl\\)?name:[ \t]*"
5368 (regexp-quote name-or-id) "[ \t]*$")
5369 nil t)
5370 (setq buffer (current-buffer) loc (match-beginning 0))
5371 (setq id-loc (org-id-find name-or-id 'marker))
5372 (unless (and id-loc (markerp id-loc))
5373 (user-error "Can't find remote table \"%s\"" name-or-id))
5374 (setq buffer (marker-buffer id-loc)
5375 loc (marker-position id-loc))
5376 (move-marker id-loc nil))
5377 (with-current-buffer buffer
5378 (org-with-wide-buffer
5379 (goto-char loc)
5380 (forward-char 1)
5381 (unless (and (re-search-forward "^\\(\\*+ \\)\\|^[ \t]*|" nil t)
5382 (not (match-beginning 1)))
5383 (user-error "Cannot find a table at NAME or ID %s" name-or-id))
5384 (org-table-analyze)
5385 (setq form (org-table-formula-substitute-names
5386 (org-table-formula-handle-first/last-rc form)))
5387 (if (and (string-match org-table-range-regexp form)
5388 (> (length (match-string 0 form)) 1))
5389 (org-table-get-range
5390 (match-string 0 form) org-table-current-begin-pos 1)
5391 form)))))))
5393 (defun org-table-remote-reference-indirection (form)
5394 "Return formula with table remote references substituted by indirection.
5395 For example \"remote($1, @>$2)\" => \"remote(year_2013, @>$1)\".
5396 This indirection works only with the format @ROW$COLUMN. The
5397 format \"B3\" is not supported because it can not be
5398 distinguished from a plain table name or ID."
5399 (let ((regexp
5400 ;; Same as in `org-table-eval-formula'.
5401 (concat "\\<remote([ \t]*\\("
5402 ;; Allow "$1", "@<", "$-1", "@<<$1" etc.
5403 "[@$][^ \t,]+"
5404 "\\)[ \t]*,[ \t]*\\([^\n)]+\\))")))
5405 (replace-regexp-in-string
5406 regexp
5407 (lambda (m)
5408 (save-match-data
5409 (let ((eq (org-table-formula-handle-first/last-rc (match-string 1 m))))
5410 (org-table-get-range
5411 (if (org-string-match-p "\\`\\$[0-9]+\\'" eq)
5412 (concat "@0" eq)
5413 eq)))))
5414 form t t 1)))
5416 (defmacro org-define-lookup-function (mode)
5417 (let ((mode-str (symbol-name mode))
5418 (first-p (equal mode 'first))
5419 (all-p (equal mode 'all)))
5420 (let ((plural-str (if all-p "s" "")))
5421 `(defun ,(intern (format "org-lookup-%s" mode-str)) (val s-list r-list &optional predicate)
5422 ,(format "Find %s occurrence%s of VAL in S-LIST; return corresponding element%s of R-LIST.
5423 If R-LIST is nil, return matching element%s of S-LIST.
5424 If PREDICATE is not nil, use it instead of `equal' to match VAL.
5425 Matching is done by (PREDICATE VAL S), where S is an element of S-LIST.
5426 This function is generated by a call to the macro `org-define-lookup-function'."
5427 mode-str plural-str plural-str plural-str)
5428 (let ,(let ((lvars '((p (or predicate 'equal))
5429 (sl s-list)
5430 (rl (or r-list s-list))
5431 (ret nil))))
5432 (if first-p (add-to-list 'lvars '(match-p nil)))
5433 lvars)
5434 (while ,(if first-p '(and (not match-p) sl) 'sl)
5435 (progn
5436 (if (funcall p val (car sl))
5437 (progn
5438 ,(if first-p '(setq match-p t))
5439 (let ((rval (car rl)))
5440 (setq ret ,(if all-p '(append ret (list rval)) 'rval)))))
5441 (setq sl (cdr sl) rl (cdr rl))))
5442 ret)))))
5444 (org-define-lookup-function first)
5445 (org-define-lookup-function last)
5446 (org-define-lookup-function all)
5448 (provide 'org-table)
5450 ;; Local variables:
5451 ;; generated-autoload-file: "org-loaddefs.el"
5452 ;; End:
5454 ;;; org-table.el ends here