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