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