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