]> code.delx.au - gnu-emacs/blob - lisp/progmodes/octave.el
Simplify auto fill in Octave mode and some small improvements
[gnu-emacs] / lisp / progmodes / octave.el
1 ;;; octave.el --- editing octave source files under emacs -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 1997, 2001-2013 Free Software Foundation, Inc.
4
5 ;; Author: Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
6 ;; John Eaton <jwe@octave.org>
7 ;; Maintainer: FSF
8 ;; Keywords: languages
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; This package provides emacs support for Octave. It defines a major
28 ;; mode for editing Octave code and contains code for interacting with
29 ;; an inferior Octave process using comint.
30
31 ;; See the documentation of `octave-mode' and `run-octave' for further
32 ;; information on usage and customization.
33
34 ;;; Code:
35 (require 'comint)
36
37 ;;; For emacs < 24.3.
38 (require 'newcomment)
39 (eval-and-compile
40 (unless (fboundp 'user-error)
41 (defalias 'user-error 'error))
42 (unless (fboundp 'delete-consecutive-dups)
43 (defalias 'delete-consecutive-dups 'delete-dups)))
44 (eval-when-compile
45 (unless (fboundp 'setq-local)
46 (defmacro setq-local (var val)
47 "Set variable VAR to value VAL in current buffer."
48 (list 'set (list 'make-local-variable (list 'quote var)) val))))
49
50 (defgroup octave nil
51 "Editing Octave code."
52 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
53 :group 'languages)
54
55 (define-obsolete-function-alias 'octave-submit-bug-report
56 'report-emacs-bug "24.4")
57
58 (define-abbrev-table 'octave-abbrev-table nil
59 "Abbrev table for Octave's reserved words.
60 Used in `octave-mode' and `inferior-octave-mode' buffers.")
61
62 (defvar octave-comment-char ?#
63 "Character to start an Octave comment.")
64
65 (defvar octave-comment-start (char-to-string octave-comment-char)
66 "Octave-specific `comment-start' (which see).")
67
68 (defvar octave-comment-start-skip "\\(^\\|\\S<\\)\\(?:%!\\|\\s<+\\)\\s-*"
69 "Octave-specific `comment-start-skip' (which see).")
70
71 (defvar octave-begin-keywords
72 '("classdef" "do" "enumeration" "events" "for" "function" "if" "methods"
73 "parfor" "properties" "switch" "try" "unwind_protect" "while"))
74
75 (defvar octave-else-keywords
76 '("case" "catch" "else" "elseif" "otherwise" "unwind_protect_cleanup"))
77
78 (defvar octave-end-keywords
79 '("endclassdef" "endenumeration" "endevents" "endfor" "endfunction" "endif"
80 "endmethods" "endparfor" "endproperties" "endswitch" "end_try_catch"
81 "end_unwind_protect" "endwhile" "until" "end"))
82
83 (defvar octave-reserved-words
84 (append octave-begin-keywords
85 octave-else-keywords
86 octave-end-keywords
87 '("break" "continue" "global" "persistent" "return"))
88 "Reserved words in Octave.")
89
90 (defvar octave-function-header-regexp
91 (concat "^\\s-*\\_<\\(function\\)\\_>"
92 "\\([^=;\n]*=[ \t]*\\|[ \t]*\\)\\(\\(?:\\w\\|\\s_\\)+\\)\\_>")
93 "Regexp to match an Octave function header.
94 The string `function' and its name are given by the first and third
95 parenthetical grouping.")
96
97 \f
98 (defvar octave-mode-map
99 (let ((map (make-sparse-keymap)))
100 (define-key map "\M-." 'octave-find-definition)
101 (define-key map "\M-\C-j" 'octave-indent-new-comment-line)
102 (define-key map "\C-c\C-p" 'octave-previous-code-line)
103 (define-key map "\C-c\C-n" 'octave-next-code-line)
104 (define-key map "\C-c\C-a" 'octave-beginning-of-line)
105 (define-key map "\C-c\C-e" 'octave-end-of-line)
106 (define-key map [remap down-list] 'smie-down-list)
107 (define-key map "\C-c\M-\C-h" 'octave-mark-block)
108 (define-key map "\C-c]" 'smie-close-block)
109 (define-key map "\C-c/" 'smie-close-block)
110 (define-key map "\C-c;" 'octave-update-function-file-comment)
111 (define-key map "\C-hd" 'octave-help)
112 (define-key map "\C-c\C-f" 'octave-insert-defun)
113 (define-key map "\C-c\C-il" 'octave-send-line)
114 (define-key map "\C-c\C-ib" 'octave-send-block)
115 (define-key map "\C-c\C-if" 'octave-send-defun)
116 (define-key map "\C-c\C-ir" 'octave-send-region)
117 (define-key map "\C-c\C-is" 'octave-show-process-buffer)
118 (define-key map "\C-c\C-iq" 'octave-hide-process-buffer)
119 (define-key map "\C-c\C-ik" 'octave-kill-process)
120 (define-key map "\C-c\C-i\C-l" 'octave-send-line)
121 (define-key map "\C-c\C-i\C-b" 'octave-send-block)
122 (define-key map "\C-c\C-i\C-f" 'octave-send-defun)
123 (define-key map "\C-c\C-i\C-r" 'octave-send-region)
124 (define-key map "\C-c\C-i\C-s" 'octave-show-process-buffer)
125 (define-key map "\C-c\C-i\C-q" 'octave-hide-process-buffer)
126 (define-key map "\C-c\C-i\C-k" 'octave-kill-process)
127 map)
128 "Keymap used in Octave mode.")
129
130
131
132 (easy-menu-define octave-mode-menu octave-mode-map
133 "Menu for Octave mode."
134 '("Octave"
135 ("Lines"
136 ["Previous Code Line" octave-previous-code-line t]
137 ["Next Code Line" octave-next-code-line t]
138 ["Begin of Continuation" octave-beginning-of-line t]
139 ["End of Continuation" octave-end-of-line t]
140 ["Split Line at Point" octave-indent-new-comment-line t])
141 ("Blocks"
142 ["Mark Block" octave-mark-block t]
143 ["Close Block" smie-close-block t])
144 ("Functions"
145 ["Insert Function" octave-insert-defun t]
146 ["Update function file comment" octave-update-function-file-comment t])
147 "-"
148 ("Debug"
149 ["Send Current Line" octave-send-line t]
150 ["Send Current Block" octave-send-block t]
151 ["Send Current Function" octave-send-defun t]
152 ["Send Region" octave-send-region t]
153 ["Show Process Buffer" octave-show-process-buffer t]
154 ["Hide Process Buffer" octave-hide-process-buffer t]
155 ["Kill Process" octave-kill-process t])
156 "-"
157 ["Indent Line" indent-according-to-mode t]
158 ["Complete Symbol" completion-at-point t]
159 ["Toggle Auto-Fill Mode" auto-fill-mode
160 :style toggle :selected auto-fill-function]
161 "-"
162 ["Describe Octave Mode" describe-mode t]
163 ["Lookup Octave Index" info-lookup-symbol t]
164 ["Customize Octave" (customize-group 'octave) t]
165 "-"
166 ["Submit Bug Report" report-emacs-bug t]))
167
168 (defvar octave-mode-syntax-table
169 (let ((table (make-syntax-table)))
170 (modify-syntax-entry ?\r " " table)
171 (modify-syntax-entry ?+ "." table)
172 (modify-syntax-entry ?- "." table)
173 (modify-syntax-entry ?= "." table)
174 (modify-syntax-entry ?* "." table)
175 (modify-syntax-entry ?/ "." table)
176 (modify-syntax-entry ?> "." table)
177 (modify-syntax-entry ?< "." table)
178 (modify-syntax-entry ?& "." table)
179 (modify-syntax-entry ?| "." table)
180 (modify-syntax-entry ?! "." table)
181 (modify-syntax-entry ?\\ "." table)
182 (modify-syntax-entry ?\' "." table)
183 ;; Was "w" for abbrevs, but now that it's not necessary any more,
184 (modify-syntax-entry ?\` "." table)
185 (modify-syntax-entry ?\" "\"" table)
186 (modify-syntax-entry ?. "_" table)
187 (modify-syntax-entry ?_ "_" table)
188 ;; The "b" flag only applies to the second letter of the comstart
189 ;; and the first letter of the comend, i.e. the "4b" below is ineffective.
190 ;; If we try to put `b' on the single-line comments, we get a similar
191 ;; problem where the % and # chars appear as first chars of the 2-char
192 ;; comend, so the multi-line ender is also turned into style-b.
193 ;; So we need the new "c" comment style.
194 (modify-syntax-entry ?\% "< 13" table)
195 (modify-syntax-entry ?\# "< 13" table)
196 (modify-syntax-entry ?\{ "(} 2c" table)
197 (modify-syntax-entry ?\} "){ 4c" table)
198 (modify-syntax-entry ?\n ">" table)
199 table)
200 "Syntax table in use in `octave-mode' buffers.")
201
202 (defcustom octave-font-lock-texinfo-comment t
203 "Control whether to highlight the texinfo comment block."
204 :type 'boolean
205 :group 'octave
206 :version "24.4")
207
208 (defcustom octave-blink-matching-block t
209 "Control the blinking of matching Octave block keywords.
210 Non-nil means show matching begin of block when inserting a space,
211 newline or semicolon after an else or end keyword."
212 :type 'boolean
213 :group 'octave)
214
215 (defcustom octave-block-offset 2
216 "Extra indentation applied to statements in Octave block structures."
217 :type 'integer
218 :group 'octave)
219
220 (defvar octave-block-comment-start
221 (concat (make-string 2 octave-comment-char) " ")
222 "String to insert to start a new Octave comment on an empty line.")
223
224 (defcustom octave-continuation-offset 4
225 "Extra indentation applied to Octave continuation lines."
226 :type 'integer
227 :group 'octave)
228
229 (eval-and-compile
230 (defconst octave-continuation-marker-regexp "\\\\\\|\\.\\.\\."))
231
232 (defvar octave-continuation-regexp
233 (concat "[^#%\n]*\\(" octave-continuation-marker-regexp
234 "\\)\\s-*\\(\\s<.*\\)?$"))
235
236 ;; Char \ is considered a bad decision for continuing a line.
237 (defconst octave-continuation-string "..."
238 "Character string used for Octave continuation lines.")
239
240 (defvar octave-mode-imenu-generic-expression
241 (list
242 ;; Functions
243 (list nil octave-function-header-regexp 3))
244 "Imenu expression for Octave mode. See `imenu-generic-expression'.")
245
246 (defcustom octave-mode-hook nil
247 "Hook to be run when Octave mode is started."
248 :type 'hook
249 :group 'octave)
250
251 (defcustom octave-send-show-buffer t
252 "Non-nil means display `inferior-octave-buffer' after sending to it."
253 :type 'boolean
254 :group 'octave)
255
256 (defcustom octave-send-line-auto-forward t
257 "Control auto-forward after sending to the inferior Octave process.
258 Non-nil means always go to the next Octave code line after sending."
259 :type 'boolean
260 :group 'octave)
261
262 (defcustom octave-send-echo-input t
263 "Non-nil means echo input sent to the inferior Octave process."
264 :type 'boolean
265 :group 'octave)
266
267 \f
268 ;;; SMIE indentation
269
270 (require 'smie)
271
272 ;; Use '__operators__' in Octave REPL to get a full list.
273 (defconst octave-operator-table
274 '((assoc ";" "\n") (assoc ",") ; The doc claims they have equal precedence!?
275 (right "=" "+=" "-=" "*=" "/=")
276 (assoc "&&") (assoc "||") ; The doc claims they have equal precedence!?
277 (assoc "&") (assoc "|") ; The doc claims they have equal precedence!?
278 (nonassoc "<" "<=" "==" ">=" ">" "!=" "~=")
279 (nonassoc ":") ;No idea what this is.
280 (assoc "+" "-")
281 (assoc "*" "/" "\\" ".\\" ".*" "./")
282 (nonassoc "'" ".'")
283 (nonassoc "++" "--" "!" "~") ;And unary "+" and "-".
284 (right "^" "**" ".^" ".**")
285 ;; It's not really an operator, but for indentation purposes it
286 ;; could be convenient to treat it as one.
287 (assoc "...")))
288
289 (defconst octave-smie-bnf-table
290 '((atom)
291 ;; We can't distinguish the first element in a sequence with
292 ;; precedence grammars, so we can't distinguish the condition
293 ;; if the `if' from the subsequent body, for example.
294 ;; This has to be done later in the indentation rules.
295 (exp (exp "\n" exp)
296 ;; We need to mention at least one of the operators in this part
297 ;; of the grammar: if the BNF and the operator table have
298 ;; no overlap, SMIE can't know how they relate.
299 (exp ";" exp)
300 ("try" exp "catch" exp "end_try_catch")
301 ("try" exp "catch" exp "end")
302 ("unwind_protect" exp
303 "unwind_protect_cleanup" exp "end_unwind_protect")
304 ("unwind_protect" exp "unwind_protect_cleanup" exp "end")
305 ("for" exp "endfor")
306 ("for" exp "end")
307 ("parfor" exp "endparfor")
308 ("parfor" exp "end")
309 ("do" exp "until" atom)
310 ("while" exp "endwhile")
311 ("while" exp "end")
312 ("if" exp "endif")
313 ("if" exp "else" exp "endif")
314 ("if" exp "elseif" exp "else" exp "endif")
315 ("if" exp "elseif" exp "elseif" exp "else" exp "endif")
316 ("if" exp "elseif" exp "elseif" exp "else" exp "end")
317 ("switch" exp "case" exp "endswitch")
318 ("switch" exp "case" exp "otherwise" exp "endswitch")
319 ("switch" exp "case" exp "case" exp "otherwise" exp "endswitch")
320 ("switch" exp "case" exp "case" exp "otherwise" exp "end")
321 ("function" exp "endfunction")
322 ("function" exp "end")
323 ("enumeration" exp "endenumeration")
324 ("enumeration" exp "end")
325 ("events" exp "endevents")
326 ("events" exp "end")
327 ("methods" exp "endmethods")
328 ("methods" exp "end")
329 ("properties" exp "endproperties")
330 ("properties" exp "end")
331 ("classdef" exp "endclassdef")
332 ("classdef" exp "end"))
333 ;; (fundesc (atom "=" atom))
334 ))
335
336 (defconst octave-smie-grammar
337 (smie-prec2->grammar
338 (smie-merge-prec2s
339 (smie-bnf->prec2 octave-smie-bnf-table
340 '((assoc "\n" ";")))
341
342 (smie-precs->prec2 octave-operator-table))))
343
344 ;; Tokenizing needs to be refined so that ";;" is treated as two
345 ;; tokens and also so as to recognize the \n separator (and
346 ;; corresponding continuation lines).
347
348 (defconst octave-operator-regexp
349 (regexp-opt (apply 'append (mapcar 'cdr octave-operator-table))))
350
351 (defun octave-smie-backward-token ()
352 (let ((pos (point)))
353 (forward-comment (- (point)))
354 (cond
355 ((and (not (eq (char-before) ?\;)) ;Coalesce ";" and "\n".
356 (> pos (line-end-position))
357 (if (looking-back octave-continuation-marker-regexp (- (point) 3))
358 (progn
359 (goto-char (match-beginning 0))
360 (forward-comment (- (point)))
361 nil)
362 t)
363 ;; Ignore it if it's within parentheses.
364 (let ((ppss (syntax-ppss)))
365 (not (and (nth 1 ppss)
366 (eq ?\( (char-after (nth 1 ppss)))))))
367 (skip-chars-forward " \t")
368 ;; Why bother distinguishing \n and ;?
369 ";") ;;"\n"
370 ((and (looking-back octave-operator-regexp (- (point) 3) 'greedy)
371 ;; Don't mistake a string quote for a transpose.
372 (not (looking-back "\\s\"" (1- (point)))))
373 (goto-char (match-beginning 0))
374 (match-string-no-properties 0))
375 (t
376 (smie-default-backward-token)))))
377
378 (defun octave-smie-forward-token ()
379 (skip-chars-forward " \t")
380 (when (looking-at (eval-when-compile
381 (concat "\\(" octave-continuation-marker-regexp
382 "\\)[ \t]*\\($\\|[%#]\\)")))
383 (goto-char (match-end 1))
384 (forward-comment 1))
385 (cond
386 ((and (looking-at "[%#\n]")
387 (not (or (save-excursion (skip-chars-backward " \t")
388 ;; Only add implicit ; when needed.
389 (or (bolp) (eq (char-before) ?\;)))
390 ;; Ignore it if it's within parentheses.
391 (let ((ppss (syntax-ppss)))
392 (and (nth 1 ppss)
393 (eq ?\( (char-after (nth 1 ppss))))))))
394 (if (eolp) (forward-char 1) (forward-comment 1))
395 ;; Why bother distinguishing \n and ;?
396 ";") ;;"\n"
397 ((progn (forward-comment (point-max)) nil))
398 ((looking-at ";[ \t]*\\($\\|[%#]\\)")
399 ;; Combine the ; with the subsequent \n.
400 (goto-char (match-beginning 1))
401 (forward-comment 1)
402 ";")
403 ((and (looking-at octave-operator-regexp)
404 ;; Don't mistake a string quote for a transpose.
405 (not (looking-at "\\s\"")))
406 (goto-char (match-end 0))
407 (match-string-no-properties 0))
408 (t
409 (smie-default-forward-token))))
410
411 (defun octave-smie-rules (kind token)
412 (pcase (cons kind token)
413 ;; We could set smie-indent-basic instead, but that would have two
414 ;; disadvantages:
415 ;; - changes to octave-block-offset wouldn't take effect immediately.
416 ;; - edebug wouldn't show the use of this variable.
417 (`(:elem . basic) octave-block-offset)
418 ;; Since "case" is in the same BNF rules as switch..end, SMIE by default
419 ;; aligns it with "switch".
420 (`(:before . "case") (if (not (smie-rule-sibling-p)) octave-block-offset))
421 (`(:after . ";")
422 (if (smie-rule-parent-p "classdef" "events" "enumeration" "function" "if"
423 "while" "else" "elseif" "for" "parfor"
424 "properties" "methods" "otherwise" "case"
425 "try" "catch" "unwind_protect"
426 "unwind_protect_cleanup")
427 (smie-rule-parent octave-block-offset)
428 ;; For (invalid) code between switch and case.
429 ;; (if (smie-parent-p "switch") 4)
430 0))))
431
432 (defun octave-indent-comment ()
433 "A function for `smie-indent-functions' (which see)."
434 (save-excursion
435 (back-to-indentation)
436 (cond
437 ((octave-in-string-or-comment-p) nil)
438 ((looking-at-p "\\s<\\{3,\\}")
439 0)
440 ;; Exclude %{, %} and %!.
441 ((and (looking-at-p "\\s<\\(?:[^{}!]\\|$\\)")
442 (not (looking-at-p "\\s<\\s<")))
443 (comment-choose-indent)))))
444
445 \f
446 (defvar octave-font-lock-keywords
447 (list
448 ;; Fontify all builtin keywords.
449 (cons (concat "\\_<\\("
450 (regexp-opt octave-reserved-words)
451 "\\)\\_>")
452 'font-lock-keyword-face)
453 ;; Note: 'end' also serves as the last index in an indexing expression.
454 ;; Ref: http://www.mathworks.com/help/matlab/ref/end.html
455 (list (lambda (limit)
456 (while (re-search-forward "\\_<end\\_>" limit 'move)
457 (let ((beg (match-beginning 0))
458 (end (match-end 0)))
459 (unless (octave-in-string-or-comment-p)
460 (condition-case nil
461 (progn
462 (goto-char beg)
463 (backward-up-list)
464 (when (memq (char-after) '(?\( ?\[ ?\{))
465 (put-text-property beg end 'face nil))
466 (goto-char end))
467 (error (goto-char end))))))
468 nil))
469 ;; Fontify all operators.
470 (cons octave-operator-regexp 'font-lock-builtin-face)
471 ;; Fontify all function declarations.
472 (list octave-function-header-regexp
473 '(1 font-lock-keyword-face)
474 '(3 font-lock-function-name-face nil t)))
475 "Additional Octave expressions to highlight.")
476
477 (defun octave-syntax-propertize-function (start end)
478 (goto-char start)
479 (octave-syntax-propertize-sqs end)
480 (funcall (syntax-propertize-rules
481 ("\\\\" (0 (when (eq (nth 3 (save-excursion
482 (syntax-ppss (match-beginning 0))))
483 ?\")
484 (string-to-syntax "\\"))))
485 ;; Try to distinguish the string-quotes from the transpose-quotes.
486 ("\\(?:^\\|[[({,; ]\\)\\('\\)"
487 (1 (prog1 "\"'" (octave-syntax-propertize-sqs end)))))
488 (point) end))
489
490 (defun octave-syntax-propertize-sqs (end)
491 "Propertize the content/end of single-quote strings."
492 (when (eq (nth 3 (syntax-ppss)) ?\')
493 ;; A '..' string.
494 (when (re-search-forward
495 "\\(?:\\=\\|[^']\\)\\(?:''\\)*\\('\\)\\($\\|[^']\\)" end 'move)
496 (goto-char (match-beginning 2))
497 (when (eq (char-before (match-beginning 1)) ?\\)
498 ;; Backslash cannot escape a single quote.
499 (put-text-property (1- (match-beginning 1)) (match-beginning 1)
500 'syntax-table (string-to-syntax ".")))
501 (put-text-property (match-beginning 1) (match-end 1)
502 'syntax-table (string-to-syntax "\"'")))))
503
504 (defvar electric-layout-rules)
505
506 ;;;###autoload
507 (define-derived-mode octave-mode prog-mode "Octave"
508 "Major mode for editing Octave code.
509
510 Octave is a high-level language, primarily intended for numerical
511 computations. It provides a convenient command line interface
512 for solving linear and nonlinear problems numerically. Function
513 definitions can also be stored in files and used in batch mode."
514 :abbrev-table octave-abbrev-table
515
516 (smie-setup octave-smie-grammar #'octave-smie-rules
517 :forward-token #'octave-smie-forward-token
518 :backward-token #'octave-smie-backward-token)
519 (setq-local smie-indent-basic 'octave-block-offset)
520 (add-hook 'smie-indent-functions #'octave-indent-comment nil t)
521
522 (setq-local smie-blink-matching-triggers
523 (cons ?\; smie-blink-matching-triggers))
524 (unless octave-blink-matching-block
525 (remove-hook 'post-self-insert-hook #'smie-blink-matching-open 'local))
526
527 (setq-local electric-indent-chars
528 (cons ?\; electric-indent-chars))
529 ;; IIUC matlab-mode takes the opposite approach: it makes RET insert
530 ;; a ";" at those places where it's correct (i.e. outside of parens).
531 (setq-local electric-layout-rules '((?\; . after)))
532
533 (setq-local comment-start octave-comment-start)
534 (setq-local comment-end "")
535 (setq-local comment-start-skip octave-comment-start-skip)
536 (setq-local comment-add 1)
537
538 (setq-local parse-sexp-ignore-comments t)
539 (setq-local paragraph-start (concat "\\s-*$\\|" page-delimiter))
540 (setq-local paragraph-separate paragraph-start)
541 (setq-local paragraph-ignore-fill-prefix t)
542 (setq-local fill-paragraph-function 'octave-fill-paragraph)
543
544 ;; Use `smie-auto-fill' after fixing bug#14381.
545 (setq-local normal-auto-fill-function 'do-auto-fill)
546 (setq-local fill-nobreak-predicate #'octave-in-string-p)
547 (setq-local comment-line-break-function #'octave-indent-new-comment-line)
548
549 (setq font-lock-defaults '(octave-font-lock-keywords))
550
551 (setq-local syntax-propertize-function #'octave-syntax-propertize-function)
552
553 (setq-local imenu-generic-expression octave-mode-imenu-generic-expression)
554 (setq-local imenu-case-fold-search nil)
555
556 (add-hook 'completion-at-point-functions 'octave-completion-at-point nil t)
557 (add-hook 'before-save-hook 'octave-sync-function-file-names nil t)
558 (setq-local beginning-of-defun-function 'octave-beginning-of-defun)
559 (and octave-font-lock-texinfo-comment (octave-font-lock-texinfo-comment))
560 (setq-local eldoc-documentation-function 'octave-eldoc-function)
561
562 (easy-menu-add octave-mode-menu))
563
564 \f
565 (defcustom inferior-octave-program "octave"
566 "Program invoked by `inferior-octave'."
567 :type 'string
568 :group 'octave)
569
570 (defcustom inferior-octave-buffer "*Inferior Octave*"
571 "Name of buffer for running an inferior Octave process."
572 :type 'string
573 :group 'octave)
574
575 (defcustom inferior-octave-prompt
576 "\\(^octave\\(\\|.bin\\|.exe\\)\\(-[.0-9]+\\)?\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ "
577 "Regexp to match prompts for the inferior Octave process."
578 :type 'regexp
579 :group 'octave)
580
581 (defcustom inferior-octave-prompt-read-only comint-prompt-read-only
582 "If non-nil, the Octave prompt is read only.
583 See `comint-prompt-read-only' for details."
584 :type 'boolean
585 :group 'octave
586 :version "24.4")
587
588 (defcustom inferior-octave-startup-file
589 (convert-standard-filename
590 (concat "~/.emacs-" (file-name-nondirectory inferior-octave-program)))
591 "Name of the inferior Octave startup file.
592 The contents of this file are sent to the inferior Octave process on
593 startup."
594 :type '(choice (const :tag "None" nil) file)
595 :group 'octave
596 :version "24.4")
597
598 (defcustom inferior-octave-startup-args nil
599 "List of command line arguments for the inferior Octave process.
600 For example, for suppressing the startup message and using `traditional'
601 mode, set this to (\"-q\" \"--traditional\")."
602 :type '(repeat string)
603 :group 'octave)
604
605 (defcustom inferior-octave-mode-hook nil
606 "Hook to be run when Inferior Octave mode is started."
607 :type 'hook
608 :group 'octave)
609
610 (defvar inferior-octave-process nil)
611
612 (defvar inferior-octave-mode-map
613 (let ((map (make-sparse-keymap)))
614 (set-keymap-parent map comint-mode-map)
615 (define-key map "\M-." 'octave-find-definition)
616 (define-key map "\t" 'completion-at-point)
617 (define-key map "\C-hd" 'octave-help)
618 ;; Same as in `shell-mode'.
619 (define-key map "\M-?" 'comint-dynamic-list-filename-completions)
620 (define-key map "\C-c\C-l" 'inferior-octave-dynamic-list-input-ring)
621 (define-key map [menu-bar inout list-history]
622 '("List Input History" . inferior-octave-dynamic-list-input-ring))
623 map)
624 "Keymap used in Inferior Octave mode.")
625
626 (defvar inferior-octave-mode-syntax-table
627 (let ((table (make-syntax-table octave-mode-syntax-table)))
628 table)
629 "Syntax table in use in inferior-octave-mode buffers.")
630
631 (defvar inferior-octave-font-lock-keywords
632 (list
633 (cons inferior-octave-prompt 'font-lock-type-face))
634 ;; Could certainly do more font locking in inferior Octave ...
635 "Additional expressions to highlight in Inferior Octave mode.")
636
637 (defvar inferior-octave-output-list nil)
638 (defvar inferior-octave-output-string nil)
639 (defvar inferior-octave-receive-in-progress nil)
640
641 (define-obsolete-variable-alias 'inferior-octave-startup-hook
642 'inferior-octave-mode-hook "24.4")
643
644 (defvar inferior-octave-dynamic-complete-functions
645 '(inferior-octave-completion-at-point comint-filename-completion)
646 "List of functions called to perform completion for inferior Octave.
647 This variable is used to initialize `comint-dynamic-complete-functions'
648 in the Inferior Octave buffer.")
649
650 (defvar info-lookup-mode)
651
652 (define-derived-mode inferior-octave-mode comint-mode "Inferior Octave"
653 "Major mode for interacting with an inferior Octave process."
654 :abbrev-table octave-abbrev-table
655 (setq comint-prompt-regexp inferior-octave-prompt)
656
657 (setq-local comment-start octave-comment-start)
658 (setq-local comment-end "")
659 (setq comment-column 32)
660 (setq-local comment-start-skip octave-comment-start-skip)
661
662 (setq font-lock-defaults '(inferior-octave-font-lock-keywords nil nil))
663
664 (setq-local info-lookup-mode 'octave-mode)
665 (setq-local eldoc-documentation-function 'octave-eldoc-function)
666
667 (setq comint-input-ring-file-name
668 (or (getenv "OCTAVE_HISTFILE") "~/.octave_hist")
669 comint-input-ring-size (or (getenv "OCTAVE_HISTSIZE") 1024))
670 (setq-local comint-dynamic-complete-functions
671 inferior-octave-dynamic-complete-functions)
672 (setq-local comint-prompt-read-only inferior-octave-prompt-read-only)
673 (add-hook 'comint-input-filter-functions
674 'inferior-octave-directory-tracker nil t)
675 (comint-read-input-ring t))
676
677 ;;;###autoload
678 (defun inferior-octave (&optional arg)
679 "Run an inferior Octave process, I/O via `inferior-octave-buffer'.
680 This buffer is put in Inferior Octave mode. See `inferior-octave-mode'.
681
682 Unless ARG is non-nil, switches to this buffer.
683
684 The elements of the list `inferior-octave-startup-args' are sent as
685 command line arguments to the inferior Octave process on startup.
686
687 Additional commands to be executed on startup can be provided either in
688 the file specified by `inferior-octave-startup-file' or by the default
689 startup file, `~/.emacs-octave'."
690 (interactive "P")
691 (let ((buffer (get-buffer-create inferior-octave-buffer)))
692 (unless (comint-check-proc buffer)
693 (with-current-buffer buffer
694 (inferior-octave-startup)
695 (inferior-octave-mode)))
696 (unless arg
697 (pop-to-buffer buffer))
698 buffer))
699
700 ;;;###autoload
701 (defalias 'run-octave 'inferior-octave)
702
703 (defun inferior-octave-startup ()
704 "Start an inferior Octave process."
705 (let ((proc (comint-exec-1
706 (substring inferior-octave-buffer 1 -1)
707 inferior-octave-buffer
708 inferior-octave-program
709 (append (list "-i" "--no-line-editing")
710 ;; --no-gui is introduced in Octave > 3.7
711 (when (zerop (process-file inferior-octave-program
712 nil nil nil
713 "--no-gui" "--help"))
714 (list "--no-gui"))
715 inferior-octave-startup-args))))
716 (set-process-filter proc 'inferior-octave-output-digest)
717 (setq inferior-octave-process proc
718 inferior-octave-output-list nil
719 inferior-octave-output-string nil
720 inferior-octave-receive-in-progress t)
721
722 ;; This may look complicated ... However, we need to make sure that
723 ;; we additional startup code only AFTER Octave is ready (otherwise,
724 ;; output may be mixed up). Hence, we need to digest the Octave
725 ;; output to see when it issues a prompt.
726 (while inferior-octave-receive-in-progress
727 (accept-process-output inferior-octave-process))
728 (goto-char (point-max))
729 (set-marker (process-mark proc) (point))
730 (insert-before-markers
731 (concat
732 (if (not (bobp)) "\f\n")
733 (if inferior-octave-output-list
734 (concat (mapconcat
735 'identity inferior-octave-output-list "\n")
736 "\n"))))
737
738 ;; An empty secondary prompt, as e.g. obtained by '--braindead',
739 ;; means trouble.
740 (inferior-octave-send-list-and-digest (list "PS2\n"))
741 (when (string-match "\\(PS2\\|ans\\) = *$"
742 (car inferior-octave-output-list))
743 (inferior-octave-send-list-and-digest (list "PS2 (\"> \");\n")))
744
745 (inferior-octave-send-list-and-digest
746 (list "disp(getenv(\"OCTAVE_SRCDIR\"))\n"))
747 (process-put proc 'octave-srcdir
748 (unless (equal (car inferior-octave-output-list) "")
749 (car inferior-octave-output-list)))
750
751 ;; O.K., now we are ready for the Inferior Octave startup commands.
752 (inferior-octave-send-list-and-digest
753 (list "more off;\n"
754 (unless (equal inferior-octave-output-string ">> ")
755 "PS1 (\"\\\\s> \");\n")
756 (when (and inferior-octave-startup-file
757 (file-exists-p inferior-octave-startup-file))
758 (format "source (\"%s\");\n" inferior-octave-startup-file))))
759 (insert-before-markers
760 (concat
761 (if inferior-octave-output-list
762 (concat (mapconcat
763 'identity inferior-octave-output-list "\n")
764 "\n"))
765 inferior-octave-output-string))
766
767 ;; And finally, everything is back to normal.
768 (set-process-filter proc 'comint-output-filter)
769 ;; Just in case, to be sure a cd in the startup file
770 ;; won't have detrimental effects.
771 (inferior-octave-resync-dirs)
772 ;; A trick to get the prompt highlighted.
773 (comint-send-string proc "\n")))
774
775 (defvar inferior-octave-completion-table
776 ;;
777 ;; Use cache to avoid repetitive computation of completions due to
778 ;; bug#11906 - http://debbugs.gnu.org/11906 - which may cause
779 ;; noticeable delay. CACHE: (CMD TIME VALUE).
780 (let ((cache))
781 (completion-table-dynamic
782 (lambda (command)
783 (unless (and (equal (car cache) command)
784 (< (float-time) (+ 5 (cadr cache))))
785 (inferior-octave-send-list-and-digest
786 (list (concat "completion_matches (\"" command "\");\n")))
787 (setq cache (list command (float-time)
788 (delete-consecutive-dups
789 (sort inferior-octave-output-list 'string-lessp)))))
790 (car (cddr cache))))))
791
792 (defun inferior-octave-completion-at-point ()
793 "Return the data to complete the Octave symbol at point."
794 ;; http://debbugs.gnu.org/14300
795 (let* ((filecomp (string-match-p
796 "/" (or (comint--match-partial-filename) "")))
797 (end (point))
798 (start
799 (unless filecomp
800 (save-excursion
801 (skip-syntax-backward "w_" (comint-line-beginning-position))
802 (point)))))
803 (when (and start (> end start))
804 (list start end (completion-table-in-turn
805 inferior-octave-completion-table
806 'comint-completion-file-name-table)))))
807
808 (define-obsolete-function-alias 'inferior-octave-complete
809 'completion-at-point "24.1")
810
811 (defun inferior-octave-dynamic-list-input-ring ()
812 "List the buffer's input history in a help buffer."
813 ;; We cannot use `comint-dynamic-list-input-ring', because it replaces
814 ;; "completion" by "history reference" ...
815 (interactive)
816 (if (or (not (ring-p comint-input-ring))
817 (ring-empty-p comint-input-ring))
818 (message "No history")
819 (let ((history nil)
820 (history-buffer " *Input History*")
821 (index (1- (ring-length comint-input-ring)))
822 (conf (current-window-configuration)))
823 ;; We have to build up a list ourselves from the ring vector.
824 (while (>= index 0)
825 (setq history (cons (ring-ref comint-input-ring index) history)
826 index (1- index)))
827 ;; Change "completion" to "history reference"
828 ;; to make the display accurate.
829 (with-output-to-temp-buffer history-buffer
830 (display-completion-list history)
831 (set-buffer history-buffer))
832 (message "Hit space to flush")
833 (let ((ch (read-event)))
834 (if (eq ch ?\ )
835 (set-window-configuration conf)
836 (setq unread-command-events (list ch)))))))
837
838 (defun inferior-octave-output-digest (_proc string)
839 "Special output filter for the inferior Octave process.
840 Save all output between newlines into `inferior-octave-output-list', and
841 the rest to `inferior-octave-output-string'."
842 (setq string (concat inferior-octave-output-string string))
843 (while (string-match "\n" string)
844 (setq inferior-octave-output-list
845 (append inferior-octave-output-list
846 (list (substring string 0 (match-beginning 0))))
847 string (substring string (match-end 0))))
848 (if (string-match inferior-octave-prompt string)
849 (setq inferior-octave-receive-in-progress nil))
850 (setq inferior-octave-output-string string))
851
852 (defun inferior-octave-check-process ()
853 (or (and inferior-octave-process
854 (process-live-p inferior-octave-process))
855 (error (substitute-command-keys
856 "No inferior octave process running. Type \\[run-octave]"))))
857
858 (defun inferior-octave-send-list-and-digest (list)
859 "Send LIST to the inferior Octave process and digest the output.
860 The elements of LIST have to be strings and are sent one by one. All
861 output is passed to the filter `inferior-octave-output-digest'."
862 (inferior-octave-check-process)
863 (let* ((proc inferior-octave-process)
864 (filter (process-filter proc))
865 string)
866 (set-process-filter proc 'inferior-octave-output-digest)
867 (setq inferior-octave-output-list nil)
868 (unwind-protect
869 (while (setq string (car list))
870 (setq inferior-octave-output-string nil
871 inferior-octave-receive-in-progress t)
872 (comint-send-string proc string)
873 (while inferior-octave-receive-in-progress
874 (accept-process-output proc))
875 (setq list (cdr list)))
876 (set-process-filter proc filter))))
877
878 (defun inferior-octave-directory-tracker (string)
879 "Tracks `cd' commands issued to the inferior Octave process.
880 Use \\[inferior-octave-resync-dirs] to resync if Emacs gets confused."
881 (cond
882 ((string-match "^[ \t]*cd[ \t;]*$" string)
883 (cd "~"))
884 ((string-match "^[ \t]*cd[ \t]+\\([^ \t\n;]*\\)[ \t\n;]*" string)
885 (with-demoted-errors ; in case directory doesn't exist
886 (cd (substring string (match-beginning 1) (match-end 1)))))))
887
888 (defun inferior-octave-resync-dirs ()
889 "Resync the buffer's idea of the current directory.
890 This command queries the inferior Octave process about its current
891 directory and makes this the current buffer's default directory."
892 (interactive)
893 (inferior-octave-send-list-and-digest '("disp (pwd ())\n"))
894 (cd (car inferior-octave-output-list)))
895
896 \f
897 ;;; Miscellaneous useful functions
898
899 (defun octave-in-comment-p ()
900 "Return non-nil if point is inside an Octave comment."
901 (nth 4 (syntax-ppss)))
902
903 (defun octave-in-string-p ()
904 "Return non-nil if point is inside an Octave string."
905 (nth 3 (syntax-ppss)))
906
907 (defun octave-in-string-or-comment-p ()
908 "Return non-nil if point is inside an Octave string or comment."
909 (nth 8 (syntax-ppss)))
910
911 (defun octave-looking-at-kw (regexp)
912 "Like `looking-at', but sets `case-fold-search' nil."
913 (let ((case-fold-search nil))
914 (looking-at regexp)))
915
916 (defun octave-maybe-insert-continuation-string ()
917 (if (or (octave-in-comment-p)
918 (save-excursion
919 (beginning-of-line)
920 (looking-at octave-continuation-regexp)))
921 nil
922 (delete-horizontal-space)
923 (insert (concat " " octave-continuation-string))))
924
925 (defun octave-completing-read ()
926 (let ((def (or (thing-at-point 'symbol)
927 (save-excursion
928 (skip-syntax-backward "-(")
929 (thing-at-point 'symbol)))))
930 (completing-read
931 (format (if def "Function (default %s): "
932 "Function: ") def)
933 inferior-octave-completion-table
934 nil nil nil nil def)))
935
936 (defun octave-goto-function-definition (fn)
937 "Go to the function definition of FN in current buffer."
938 (goto-char (point-min))
939 (let ((search
940 (lambda (re sub)
941 (let (done)
942 (while (and (not done) (re-search-forward re nil t))
943 (when (and (equal (match-string sub) fn)
944 (not (nth 8 (syntax-ppss))))
945 (setq done t)))
946 (or done (goto-char (point-min)))))))
947 (pcase (file-name-extension (buffer-file-name))
948 (`"cc" (funcall search
949 "\\_<DEFUN\\(?:_DLD\\)?\\s-*(\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)" 1))
950 (t (funcall search octave-function-header-regexp 3)))))
951
952 (defun octave-function-file-p ()
953 "Return non-nil if the first token is \"function\".
954 The value is (START END NAME-START NAME-END) of the function."
955 (save-excursion
956 (goto-char (point-min))
957 (when (equal (funcall smie-forward-token-function) "function")
958 (forward-word -1)
959 (let* ((start (point))
960 (end (progn (forward-sexp 1) (point)))
961 (name (when (progn
962 (goto-char start)
963 (re-search-forward octave-function-header-regexp
964 end t))
965 (list (match-beginning 3) (match-end 3)))))
966 (cons start (cons end name))))))
967
968 ;; Like forward-comment but stop at non-comment blank
969 (defun octave-skip-comment-forward (limit)
970 (let ((ppss (syntax-ppss)))
971 (if (nth 4 ppss)
972 (goto-char (nth 8 ppss))
973 (goto-char (or (comment-search-forward limit t) (point)))))
974 (while (and (< (point) limit) (looking-at-p "\\s<"))
975 (forward-comment 1)))
976
977 ;;; First non-copyright comment block
978 (defun octave-function-file-comment ()
979 "Beginning and end positions of the function file comment."
980 (save-excursion
981 (goto-char (point-min))
982 ;; Copyright block: octave/libinterp/parse-tree/lex.ll around line 1634
983 (while (save-excursion
984 (when (comment-search-forward (point-max) t)
985 (when (eq (char-after) ?\{) ; case of block comment
986 (forward-char 1))
987 (skip-syntax-forward "-")
988 (let ((case-fold-search t))
989 (looking-at-p "\\(?:copyright\\|author\\)\\_>"))))
990 (octave-skip-comment-forward (point-max)))
991 (let ((beg (comment-search-forward (point-max) t)))
992 (when beg
993 (goto-char beg)
994 (octave-skip-comment-forward (point-max))
995 (list beg (point))))))
996
997 (defun octave-sync-function-file-names ()
998 "Ensure function name agree with function file name.
999 See Info node `(octave)Function Files'."
1000 (interactive)
1001 (when buffer-file-name
1002 (pcase-let ((`(,start ,_end ,name-start ,name-end)
1003 (octave-function-file-p)))
1004 (when (and start name-start)
1005 (let* ((func (buffer-substring name-start name-end))
1006 (file (file-name-sans-extension
1007 (file-name-nondirectory buffer-file-name)))
1008 (help-form (format "\
1009 a: Use function name `%s'
1010 b: Use file name `%s'
1011 q: Don't fix\n" func file))
1012 (c (unless (equal file func)
1013 (save-window-excursion
1014 (help-form-show)
1015 (read-char-choice
1016 "Which name to use? (a/b/q) " '(?a ?b ?q))))))
1017 (pcase c
1018 (`?a (let ((newname (expand-file-name
1019 (concat func (file-name-extension
1020 buffer-file-name t)))))
1021 (when (or (not (file-exists-p newname))
1022 (yes-or-no-p
1023 (format "Target file %s exists; proceed? " newname)))
1024 (when (file-exists-p buffer-file-name)
1025 (rename-file buffer-file-name newname t))
1026 (set-visited-file-name newname))))
1027 (`?b (save-excursion
1028 (goto-char name-start)
1029 (delete-region name-start name-end)
1030 (insert file)))))))))
1031
1032 (defun octave-update-function-file-comment (beg end)
1033 "Query replace function names in function file comment."
1034 (interactive
1035 (progn
1036 (barf-if-buffer-read-only)
1037 (if (use-region-p)
1038 (list (region-beginning) (region-end))
1039 (or (octave-function-file-comment)
1040 (error "No function file comment found")))))
1041 (save-excursion
1042 (let* ((bounds (or (octave-function-file-p)
1043 (error "Not in a function file buffer")))
1044 (func (if (cddr bounds)
1045 (apply #'buffer-substring (cddr bounds))
1046 (error "Function name not found")))
1047 (old-func (progn
1048 (goto-char beg)
1049 (when (re-search-forward
1050 "[=}]\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)\\_>"
1051 (min (line-end-position 4) end)
1052 t)
1053 (match-string 1))))
1054 (old-func (read-string (format (if old-func
1055 "Name to replace (default %s): "
1056 "Name to replace: ")
1057 old-func)
1058 nil nil old-func)))
1059 (if (and func old-func (not (equal func old-func)))
1060 (perform-replace old-func func 'query
1061 nil 'delimited nil nil beg end)
1062 (message "Function names match")))))
1063
1064 (defface octave-function-comment-block
1065 '((t (:inherit font-lock-doc-face)))
1066 "Face used to highlight function comment block."
1067 :group 'octave)
1068
1069 (eval-when-compile (require 'texinfo))
1070
1071 (defun octave-font-lock-texinfo-comment ()
1072 (let ((kws
1073 (eval-when-compile
1074 (delq nil (mapcar
1075 (lambda (kw)
1076 (if (numberp (nth 1 kw))
1077 `(,(nth 0 kw) ,(nth 1 kw) ,(nth 2 kw) prepend)
1078 (message "Ignoring Texinfo highlight: %S" kw)))
1079 texinfo-font-lock-keywords)))))
1080 (font-lock-add-keywords
1081 nil
1082 `((,(lambda (limit)
1083 (while (and (< (point) limit)
1084 (search-forward "-*- texinfo -*-" limit t)
1085 (octave-in-comment-p))
1086 (let ((beg (nth 8 (syntax-ppss)))
1087 (end (progn
1088 (octave-skip-comment-forward (point-max))
1089 (point))))
1090 (put-text-property beg end 'font-lock-multiline t)
1091 (font-lock-prepend-text-property
1092 beg end 'face 'octave-function-comment-block)
1093 (dolist (kw kws)
1094 (goto-char beg)
1095 (while (re-search-forward (car kw) end 'move)
1096 (font-lock-apply-highlight (cdr kw))))))
1097 nil)))
1098 'append)))
1099
1100 \f
1101 ;;; Indentation
1102
1103 (defun octave-indent-new-comment-line (&optional soft)
1104 "Break Octave line at point, continuing comment if within one.
1105 Insert `octave-continuation-string' before breaking the line
1106 unless inside a list. Signal an error if within a single-quoted
1107 string."
1108 (interactive)
1109 (cond
1110 ((octave-in-comment-p) nil)
1111 ((eq (octave-in-string-p) ?')
1112 (error "Cannot split a single-quoted string"))
1113 ((eq (octave-in-string-p) ?\")
1114 (insert octave-continuation-string))
1115 (t
1116 (delete-horizontal-space)
1117 (unless (and (cadr (syntax-ppss))
1118 (eq (char-after (cadr (syntax-ppss))) ?\())
1119 (insert " " octave-continuation-string))))
1120 (indent-new-comment-line soft)
1121 (indent-according-to-mode))
1122
1123 (define-obsolete-function-alias
1124 'octave-indent-defun 'prog-indent-sexp "24.4")
1125
1126 \f
1127 ;;; Motion
1128 (defun octave-next-code-line (&optional arg)
1129 "Move ARG lines of Octave code forward (backward if ARG is negative).
1130 Skips past all empty and comment lines. Default for ARG is 1.
1131
1132 On success, return 0. Otherwise, go as far as possible and return -1."
1133 (interactive "p")
1134 (or arg (setq arg 1))
1135 (beginning-of-line)
1136 (let ((n 0)
1137 (inc (if (> arg 0) 1 -1)))
1138 (while (and (/= arg 0) (= n 0))
1139 (setq n (forward-line inc))
1140 (while (and (= n 0)
1141 (looking-at "\\s-*\\($\\|\\s<\\)"))
1142 (setq n (forward-line inc)))
1143 (setq arg (- arg inc)))
1144 n))
1145
1146 (defun octave-previous-code-line (&optional arg)
1147 "Move ARG lines of Octave code backward (forward if ARG is negative).
1148 Skips past all empty and comment lines. Default for ARG is 1.
1149
1150 On success, return 0. Otherwise, go as far as possible and return -1."
1151 (interactive "p")
1152 (or arg (setq arg 1))
1153 (octave-next-code-line (- arg)))
1154
1155 (defun octave-beginning-of-line ()
1156 "Move point to beginning of current Octave line.
1157 If on an empty or comment line, go to the beginning of that line.
1158 Otherwise, move backward to the beginning of the first Octave code line
1159 which is not inside a continuation statement, i.e., which does not
1160 follow a code line ending with `...' or is inside an open
1161 parenthesis list."
1162 (interactive)
1163 (beginning-of-line)
1164 (unless (looking-at "\\s-*\\($\\|\\s<\\)")
1165 (while (or (when (cadr (syntax-ppss))
1166 (goto-char (cadr (syntax-ppss)))
1167 (beginning-of-line)
1168 t)
1169 (and (or (looking-at "\\s-*\\($\\|\\s<\\)")
1170 (save-excursion
1171 (if (zerop (octave-previous-code-line))
1172 (looking-at octave-continuation-regexp))))
1173 (zerop (forward-line -1)))))))
1174
1175 (defun octave-end-of-line ()
1176 "Move point to end of current Octave line.
1177 If on an empty or comment line, go to the end of that line.
1178 Otherwise, move forward to the end of the first Octave code line which
1179 does not end with `...' or is inside an open parenthesis list."
1180 (interactive)
1181 (end-of-line)
1182 (unless (save-excursion
1183 (beginning-of-line)
1184 (looking-at "\\s-*\\($\\|\\s<\\)"))
1185 (while (or (when (cadr (syntax-ppss))
1186 (condition-case nil
1187 (progn
1188 (up-list 1)
1189 (end-of-line)
1190 t)
1191 (error nil)))
1192 (and (save-excursion
1193 (beginning-of-line)
1194 (or (looking-at "\\s-*\\($\\|\\s<\\)")
1195 (looking-at octave-continuation-regexp)))
1196 (zerop (forward-line 1)))))
1197 (end-of-line)))
1198
1199 (defun octave-mark-block ()
1200 "Put point at the beginning of this Octave block, mark at the end.
1201 The block marked is the one that contains point or follows point."
1202 (interactive)
1203 (if (and (looking-at "\\sw\\|\\s_")
1204 (looking-back "\\sw\\|\\s_" (1- (point))))
1205 (skip-syntax-forward "w_"))
1206 (unless (or (looking-at "\\s(")
1207 (save-excursion
1208 (let* ((token (funcall smie-forward-token-function))
1209 (level (assoc token smie-grammar)))
1210 (and level (not (numberp (cadr level)))))))
1211 (backward-up-list 1))
1212 (mark-sexp))
1213
1214 (defun octave-beginning-of-defun (&optional arg)
1215 "Octave-specific `beginning-of-defun-function' (which see)."
1216 (or arg (setq arg 1))
1217 ;; Move out of strings or comments.
1218 (when (octave-in-string-or-comment-p)
1219 (goto-char (octave-in-string-or-comment-p)))
1220 (letrec ((orig (point))
1221 (toplevel (lambda (pos)
1222 (condition-case nil
1223 (progn
1224 (backward-up-list 1)
1225 (funcall toplevel (point)))
1226 (scan-error pos)))))
1227 (goto-char (funcall toplevel (point)))
1228 (when (and (> arg 0) (/= orig (point)))
1229 (setq arg (1- arg)))
1230 (forward-sexp (- arg))
1231 (and (< arg 0) (forward-sexp -1))
1232 (/= orig (point))))
1233
1234 (defun octave-fill-paragraph (&optional _arg)
1235 "Fill paragraph of Octave code, handling Octave comments."
1236 ;; FIXME: difference with generic fill-paragraph:
1237 ;; - code lines are only split, never joined.
1238 ;; - \n that end comments are never removed.
1239 ;; - insert continuation marker when splitting code lines.
1240 (interactive "P")
1241 (save-excursion
1242 (let ((end (progn (forward-paragraph) (copy-marker (point) t)))
1243 (beg (progn
1244 (forward-paragraph -1)
1245 (skip-chars-forward " \t\n")
1246 (beginning-of-line)
1247 (point)))
1248 (cfc (current-fill-column))
1249 comment-prefix)
1250 (goto-char beg)
1251 (while (< (point) end)
1252 (condition-case nil
1253 (indent-according-to-mode)
1254 (error nil))
1255 (move-to-column cfc)
1256 ;; First check whether we need to combine non-empty comment lines
1257 (if (and (< (current-column) cfc)
1258 (octave-in-comment-p)
1259 (not (save-excursion
1260 (beginning-of-line)
1261 (looking-at "^\\s-*\\s<+\\s-*$"))))
1262 ;; This is a nonempty comment line which does not extend
1263 ;; past the fill column. If it is followed by a nonempty
1264 ;; comment line with the same comment prefix, try to
1265 ;; combine them, and repeat this until either we reach the
1266 ;; fill-column or there is nothing more to combine.
1267 (progn
1268 ;; Get the comment prefix
1269 (save-excursion
1270 (beginning-of-line)
1271 (while (and (re-search-forward "\\s<+")
1272 (not (octave-in-comment-p))))
1273 (setq comment-prefix (match-string 0)))
1274 ;; And keep combining ...
1275 (while (and (< (current-column) cfc)
1276 (save-excursion
1277 (forward-line 1)
1278 (and (looking-at
1279 (concat "^\\s-*"
1280 comment-prefix
1281 "\\S<"))
1282 (not (looking-at
1283 (concat "^\\s-*"
1284 comment-prefix
1285 "\\s-*$"))))))
1286 (delete-char 1)
1287 (re-search-forward comment-prefix)
1288 (delete-region (match-beginning 0) (match-end 0))
1289 (fixup-whitespace)
1290 (move-to-column cfc))))
1291 ;; We might also try to combine continued code lines> Perhaps
1292 ;; some other time ...
1293 (skip-chars-forward "^ \t\n")
1294 (delete-horizontal-space)
1295 (if (or (< (current-column) cfc)
1296 (and (= (current-column) cfc) (eolp)))
1297 (forward-line 1)
1298 (if (not (eolp)) (insert " "))
1299 (or (do-auto-fill)
1300 (forward-line 1))))
1301 t)))
1302
1303 ;;; Completions
1304
1305 (defun octave-completion-at-point ()
1306 "Find the text to complete and the corresponding table."
1307 (let* ((beg (save-excursion (skip-syntax-backward "w_") (point)))
1308 (end (point)))
1309 (if (< beg (point))
1310 ;; Extend region past point, if applicable.
1311 (save-excursion (skip-syntax-forward "w_")
1312 (setq end (point))))
1313 (when (> end beg)
1314 (list beg end (or (and inferior-octave-process
1315 (process-live-p inferior-octave-process)
1316 inferior-octave-completion-table)
1317 octave-reserved-words)))))
1318
1319 (define-obsolete-function-alias 'octave-complete-symbol
1320 'completion-at-point "24.1")
1321 \f
1322 ;;; Electric characters && friends
1323 (define-skeleton octave-insert-defun
1324 "Insert an Octave function skeleton.
1325 Prompt for the function's name, arguments and return values (to be
1326 entered without parens)."
1327 (let* ((defname (file-name-sans-extension (buffer-name)))
1328 (name (read-string (format "Function name (default %s): " defname)
1329 nil nil defname))
1330 (args (read-string "Arguments: "))
1331 (vals (read-string "Return values: ")))
1332 (format "%s%s (%s)"
1333 (cond
1334 ((string-equal vals "") vals)
1335 ((string-match "[ ,]" vals) (concat "[" vals "] = "))
1336 (t (concat vals " = ")))
1337 name
1338 args))
1339 \n octave-block-comment-start "usage: " str \n
1340 octave-block-comment-start '(delete-horizontal-space) \n
1341 octave-block-comment-start '(delete-horizontal-space) \n
1342 "function " > str \n
1343 _ \n
1344 "endfunction" > \n)
1345 \f
1346 ;;; Communication with the inferior Octave process
1347 (defun octave-kill-process ()
1348 "Kill inferior Octave process and its buffer."
1349 (interactive)
1350 (if inferior-octave-process
1351 (progn
1352 (process-send-string inferior-octave-process "quit;\n")
1353 (accept-process-output inferior-octave-process)))
1354 (if inferior-octave-buffer
1355 (kill-buffer inferior-octave-buffer)))
1356
1357 (defun octave-show-process-buffer ()
1358 "Make sure that `inferior-octave-buffer' is displayed."
1359 (interactive)
1360 (if (get-buffer inferior-octave-buffer)
1361 (display-buffer inferior-octave-buffer)
1362 (message "No buffer named %s" inferior-octave-buffer)))
1363
1364 (defun octave-hide-process-buffer ()
1365 "Delete all windows that display `inferior-octave-buffer'."
1366 (interactive)
1367 (if (get-buffer inferior-octave-buffer)
1368 (delete-windows-on inferior-octave-buffer)
1369 (message "No buffer named %s" inferior-octave-buffer)))
1370
1371 (defun octave-send-region (beg end)
1372 "Send current region to the inferior Octave process."
1373 (interactive "r")
1374 (inferior-octave t)
1375 (let ((proc inferior-octave-process)
1376 (string (buffer-substring-no-properties beg end))
1377 line)
1378 (with-current-buffer inferior-octave-buffer
1379 (setq inferior-octave-output-list nil)
1380 (while (not (string-equal string ""))
1381 (if (string-match "\n" string)
1382 (setq line (substring string 0 (match-beginning 0))
1383 string (substring string (match-end 0)))
1384 (setq line string string ""))
1385 (setq inferior-octave-receive-in-progress t)
1386 (inferior-octave-send-list-and-digest (list (concat line "\n")))
1387 (while inferior-octave-receive-in-progress
1388 (accept-process-output proc))
1389 (insert-before-markers
1390 (mapconcat 'identity
1391 (append
1392 (if octave-send-echo-input (list line) (list ""))
1393 inferior-octave-output-list
1394 (list inferior-octave-output-string))
1395 "\n")))))
1396 (if octave-send-show-buffer
1397 (display-buffer inferior-octave-buffer)))
1398
1399 (defun octave-send-block ()
1400 "Send current Octave block to the inferior Octave process."
1401 (interactive)
1402 (save-excursion
1403 (octave-mark-block)
1404 (octave-send-region (point) (mark))))
1405
1406 (defun octave-send-defun ()
1407 "Send current Octave function to the inferior Octave process."
1408 (interactive)
1409 (save-excursion
1410 (mark-defun)
1411 (octave-send-region (point) (mark))))
1412
1413 (defun octave-send-line (&optional arg)
1414 "Send current Octave code line to the inferior Octave process.
1415 With positive prefix ARG, send that many lines.
1416 If `octave-send-line-auto-forward' is non-nil, go to the next unsent
1417 code line."
1418 (interactive "P")
1419 (or arg (setq arg 1))
1420 (if (> arg 0)
1421 (let (beg end)
1422 (beginning-of-line)
1423 (setq beg (point))
1424 (octave-next-code-line (- arg 1))
1425 (end-of-line)
1426 (setq end (point))
1427 (if octave-send-line-auto-forward
1428 (octave-next-code-line 1))
1429 (octave-send-region beg end))))
1430
1431 (defun octave-eval-print-last-sexp ()
1432 "Evaluate Octave sexp before point and print value into current buffer."
1433 (interactive)
1434 (inferior-octave t)
1435 (let ((standard-output (current-buffer))
1436 (print-escape-newlines nil)
1437 (opoint (point)))
1438 (terpri)
1439 (prin1
1440 (save-excursion
1441 (forward-sexp -1)
1442 (inferior-octave-send-list-and-digest
1443 (list (concat (buffer-substring-no-properties (point) opoint)
1444 "\n")))
1445 (mapconcat 'identity inferior-octave-output-list "\n")))
1446 (terpri)))
1447
1448 \f
1449
1450 (defcustom octave-eldoc-message-style 'auto
1451 "Octave eldoc message style: auto, oneline, multiline."
1452 :type '(choice (const :tag "Automatic" auto)
1453 (const :tag "One Line" oneline)
1454 (const :tag "Multi Line" multiline))
1455 :group 'octave
1456 :version "24.4")
1457
1458 ;; (FN SIGNATURE1 SIGNATURE2 ...)
1459 (defvar octave-eldoc-cache nil)
1460
1461 (defun octave-eldoc-function-signatures (fn)
1462 (unless (equal fn (car octave-eldoc-cache))
1463 (inferior-octave-send-list-and-digest
1464 (list (format "\
1465 if ismember(exist(\"%s\"), [2 3 5 103]) print_usage(\"%s\") endif\n"
1466 fn fn)))
1467 (let (result)
1468 (dolist (line inferior-octave-output-list)
1469 (when (string-match
1470 "\\s-*\\(?:--[^:]+\\|usage\\):\\s-*\\(.*\\)$"
1471 line)
1472 (push (match-string 1 line) result)))
1473 (setq octave-eldoc-cache
1474 (cons (substring-no-properties fn)
1475 (nreverse result)))))
1476 (cdr octave-eldoc-cache))
1477
1478 (defun octave-eldoc-function ()
1479 "A function for `eldoc-documentation-function' (which see)."
1480 (when (and inferior-octave-process
1481 (process-live-p inferior-octave-process))
1482 (let* ((ppss (syntax-ppss))
1483 (paren-pos (cadr ppss))
1484 (fn (save-excursion
1485 (if (and paren-pos
1486 ;; PAREN-POS must be after the prompt
1487 (>= paren-pos
1488 (if (eq (get-buffer-process (current-buffer))
1489 inferior-octave-process)
1490 (process-mark inferior-octave-process)
1491 (point-min)))
1492 (or (not (eq (get-buffer-process (current-buffer))
1493 inferior-octave-process))
1494 (< (process-mark inferior-octave-process)
1495 paren-pos))
1496 (eq (char-after paren-pos) ?\())
1497 (goto-char paren-pos)
1498 (setq paren-pos nil))
1499 (when (or (< (skip-syntax-backward "-") 0) paren-pos)
1500 (thing-at-point 'symbol))))
1501 (sigs (and fn (octave-eldoc-function-signatures fn)))
1502 (oneline (mapconcat 'identity sigs
1503 (propertize " | " 'face 'warning)))
1504 (multiline (mapconcat (lambda (s) (concat "-- " s)) sigs "\n")))
1505 ;;
1506 ;; Return the value according to style.
1507 (pcase octave-eldoc-message-style
1508 (`auto (if (< (length oneline) (window-width (minibuffer-window)))
1509 oneline
1510 multiline))
1511 (`oneline oneline)
1512 (`multiline multiline)))))
1513
1514 (defcustom octave-help-buffer "*Octave Help*"
1515 "Buffer name for `octave-help'."
1516 :type 'string
1517 :group 'octave
1518 :version "24.4")
1519
1520 (define-button-type 'octave-help-file
1521 'follow-link t
1522 'action #'help-button-action
1523 'help-function 'octave-find-definition)
1524
1525 (define-button-type 'octave-help-function
1526 'follow-link t
1527 'action (lambda (b)
1528 (octave-help
1529 (buffer-substring (button-start b) (button-end b)))))
1530
1531 (defvar octave-help-mode-map
1532 (let ((map (make-sparse-keymap)))
1533 (define-key map "\M-." 'octave-find-definition)
1534 (define-key map "\C-hd" 'octave-help)
1535 map))
1536
1537 (define-derived-mode octave-help-mode help-mode "OctHelp"
1538 "Major mode for displaying Octave documentation."
1539 :abbrev-table nil
1540 :syntax-table octave-mode-syntax-table
1541 (eval-and-compile (require 'help-mode))
1542 ;; Mostly stolen from `help-make-xrefs'.
1543 (let ((inhibit-read-only t))
1544 (setq-local info-lookup-mode 'octave-mode)
1545 ;; Delete extraneous newlines at the end of the docstring
1546 (goto-char (point-max))
1547 (while (and (not (bobp)) (bolp))
1548 (delete-char -1))
1549 (insert "\n")
1550 (when (or help-xref-stack help-xref-forward-stack)
1551 (insert "\n"))
1552 (when help-xref-stack
1553 (help-insert-xref-button help-back-label 'help-back
1554 (current-buffer)))
1555 (when help-xref-forward-stack
1556 (when help-xref-stack
1557 (insert "\t"))
1558 (help-insert-xref-button help-forward-label 'help-forward
1559 (current-buffer)))
1560 (when (or help-xref-stack help-xref-forward-stack)
1561 (insert "\n"))))
1562
1563 (defvar octave-help-mode-finish-hook nil
1564 "Octave specific hook for `temp-buffer-show-hook'.")
1565
1566 (defun octave-help-mode-finish ()
1567 (when (eq major-mode 'octave-help-mode)
1568 (run-hooks 'octave-help-mode-finish-hook)))
1569
1570 (add-hook 'temp-buffer-show-hook 'octave-help-mode-finish)
1571
1572 (defun octave-help (fn)
1573 "Display the documentation of FN."
1574 (interactive (list (octave-completing-read)))
1575 (inferior-octave-send-list-and-digest
1576 (list (format "help \"%s\"\n" fn)))
1577 (let ((lines inferior-octave-output-list)
1578 (inhibit-read-only t))
1579 (when (string-match "error: \\(.*\\)$" (car lines))
1580 (error "%s" (match-string 1 (car lines))))
1581 (with-help-window octave-help-buffer
1582 (princ (mapconcat 'identity lines "\n"))
1583 (with-current-buffer octave-help-buffer
1584 ;; Bound to t so that `help-buffer' returns current buffer for
1585 ;; `help-setup-xref'.
1586 (let ((help-xref-following t))
1587 (help-setup-xref (list 'octave-help fn)
1588 (called-interactively-p 'interactive)))
1589 ;; Note: can be turned off by suppress_verbose_help_message.
1590 ;;
1591 ;; Remove boring trailing text: Additional help for built-in functions
1592 ;; and operators ...
1593 (goto-char (point-max))
1594 (when (search-backward "\n\n\n" nil t)
1595 (goto-char (match-beginning 0))
1596 (delete-region (point) (point-max)))
1597 ;; File name highlight
1598 (goto-char (point-min))
1599 (when (re-search-forward "from the file \\(.*\\)$"
1600 (line-end-position)
1601 t)
1602 (let* ((file (match-string 1))
1603 (dir (file-name-directory
1604 (directory-file-name (file-name-directory file)))))
1605 (replace-match "" nil nil nil 1)
1606 (insert "`")
1607 ;; Include the parent directory which may be regarded as
1608 ;; the category for the FN.
1609 (help-insert-xref-button (file-relative-name file dir)
1610 'octave-help-file fn)
1611 (insert "'")))
1612 ;; Make 'See also' clickable
1613 (with-syntax-table octave-mode-syntax-table
1614 (when (re-search-forward "^\\s-*See also:" nil t)
1615 (while (re-search-forward "\\_<\\(?:\\sw\\|\\s_\\)+\\_>" nil t)
1616 (make-text-button (match-beginning 0)
1617 (match-end 0)
1618 :type 'octave-help-function))))
1619 (octave-help-mode)))))
1620
1621 (defcustom octave-source-directories nil
1622 "A list of directories for Octave sources.
1623 If the environment variable OCTAVE_SRCDIR is set, it is searched first."
1624 :type '(repeat directory)
1625 :group 'octave
1626 :version "24.4")
1627
1628 (defun octave-source-directories ()
1629 (let ((srcdir (or (and inferior-octave-process
1630 (process-get inferior-octave-process 'octave-srcdir))
1631 (getenv "OCTAVE_SRCDIR"))))
1632 (if srcdir
1633 (cons srcdir octave-source-directories)
1634 octave-source-directories)))
1635
1636 (defvar octave-find-definition-filename-function
1637 #'octave-find-definition-default-filename)
1638
1639 (defun octave-find-definition-default-filename (name)
1640 "Default value for `octave-find-definition-filename-function'."
1641 (pcase (file-name-extension name)
1642 (`"oct"
1643 (octave-find-definition-default-filename
1644 (concat "libinterp/dldfcn/"
1645 (file-name-sans-extension (file-name-nondirectory name))
1646 ".cc")))
1647 (`"cc"
1648 (let ((file (or (locate-file name (octave-source-directories))
1649 (locate-file (file-name-nondirectory name)
1650 (octave-source-directories)))))
1651 (or (and file (file-exists-p file))
1652 (error "File `%s' not found" name))
1653 file))
1654 (`"mex"
1655 (if (yes-or-no-p (format "File `%s' may be binary; open? "
1656 (file-name-nondirectory name)))
1657 name
1658 (user-error "Aborted")))
1659 (t name)))
1660
1661 (defvar find-tag-marker-ring)
1662
1663 (defun octave-find-definition (fn)
1664 "Find the definition of FN.
1665 Functions implemented in C++ can be found if
1666 `octave-source-directories' is set correctly."
1667 (interactive (list (octave-completing-read)))
1668 (inferior-octave-send-list-and-digest
1669 ;; help NAME is more verbose
1670 (list (format "\
1671 if iskeyword(\"%s\") disp(\"`%s' is a keyword\") else which(\"%s\") endif\n"
1672 fn fn fn)))
1673 (let* ((line (car inferior-octave-output-list))
1674 (file (when (and line (string-match "from the file \\(.*\\)$" line))
1675 (match-string 1 line))))
1676 (if (not file)
1677 (user-error "%s" (or line (format "`%s' not found" fn)))
1678 (require 'etags)
1679 (ring-insert find-tag-marker-ring (point-marker))
1680 (setq file (funcall octave-find-definition-filename-function file))
1681 (when file
1682 (find-file file)
1683 (octave-goto-function-definition fn)))))
1684
1685
1686 (provide 'octave)
1687 ;;; octave.el ends here