Merge branch 'master' into comment-cache
[emacs.git] / lisp / progmodes / octave.el
blobac9ba630c4e230f4e0ad981f1a7909d3be61e760
1 ;;; octave.el --- editing octave source files under emacs -*- lexical-binding: t; -*-
3 ;; Copyright (C) 1997, 2001-2017 Free Software Foundation, Inc.
5 ;; Author: Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
6 ;; John Eaton <jwe@octave.org>
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Keywords: languages
10 ;; This file is part of GNU Emacs.
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.
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.
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/>.
25 ;;; Commentary:
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.
31 ;; See the documentation of `octave-mode' and `run-octave' for further
32 ;; information on usage and customization.
34 ;;; Code:
35 (require 'comint)
37 (defgroup octave nil
38 "Editing Octave code."
39 :link '(custom-manual "(octave-mode)Top")
40 :link '(url-link "http://www.gnu.org/s/octave")
41 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
42 :group 'languages)
44 (define-obsolete-function-alias 'octave-submit-bug-report
45 'report-emacs-bug "24.4")
47 (define-abbrev-table 'octave-abbrev-table nil
48 "Abbrev table for Octave's reserved words.
49 Used in `octave-mode' and `inferior-octave-mode' buffers.")
51 (defvar octave-comment-char ?#
52 "Character to start an Octave comment.")
54 (defvar octave-comment-start (char-to-string octave-comment-char)
55 "Octave-specific `comment-start' (which see).")
57 (defvar octave-comment-start-skip "\\(^\\|\\S<\\)\\(?:%!\\|\\s<+\\)\\s-*"
58 "Octave-specific `comment-start-skip' (which see).")
60 (defvar octave-function-header-regexp
61 (concat "^\\s-*\\_<\\(function\\)\\_>"
62 "\\([^=;(\n]*=[ \t]*\\|[ \t]*\\)\\(\\(?:\\w\\|\\s_\\)+\\)\\_>")
63 "Regexp to match an Octave function header.
64 The string `function' and its name are given by the first and third
65 parenthetical grouping.")
68 (defvar octave-mode-map
69 (let ((map (make-sparse-keymap)))
70 (define-key map "\M-." 'octave-find-definition)
71 (define-key map "\M-\C-j" 'octave-indent-new-comment-line)
72 (define-key map "\C-c\C-p" 'octave-previous-code-line)
73 (define-key map "\C-c\C-n" 'octave-next-code-line)
74 (define-key map "\C-c\C-a" 'octave-beginning-of-line)
75 (define-key map "\C-c\C-e" 'octave-end-of-line)
76 (define-key map [remap down-list] 'smie-down-list)
77 (define-key map "\C-c\M-\C-h" 'octave-mark-block)
78 (define-key map "\C-c]" 'smie-close-block)
79 (define-key map "\C-c/" 'smie-close-block)
80 (define-key map "\C-c;" 'octave-update-function-file-comment)
81 (define-key map "\C-hd" 'octave-help)
82 (define-key map "\C-ha" 'octave-lookfor)
83 (define-key map "\C-c\C-l" 'octave-source-file)
84 (define-key map "\C-c\C-f" 'octave-insert-defun)
85 (define-key map "\C-c\C-il" 'octave-send-line)
86 (define-key map "\C-c\C-ib" 'octave-send-block)
87 (define-key map "\C-c\C-if" 'octave-send-defun)
88 (define-key map "\C-c\C-ir" 'octave-send-region)
89 (define-key map "\C-c\C-ia" 'octave-send-buffer)
90 (define-key map "\C-c\C-is" 'octave-show-process-buffer)
91 (define-key map "\C-c\C-iq" 'octave-hide-process-buffer)
92 (define-key map "\C-c\C-ik" 'octave-kill-process)
93 (define-key map "\C-c\C-i\C-l" 'octave-send-line)
94 (define-key map "\C-c\C-i\C-b" 'octave-send-block)
95 (define-key map "\C-c\C-i\C-f" 'octave-send-defun)
96 (define-key map "\C-c\C-i\C-r" 'octave-send-region)
97 (define-key map "\C-c\C-i\C-a" 'octave-send-buffer)
98 (define-key map "\C-c\C-i\C-s" 'octave-show-process-buffer)
99 (define-key map "\C-c\C-i\C-q" 'octave-hide-process-buffer)
100 (define-key map "\C-c\C-i\C-k" 'octave-kill-process)
101 map)
102 "Keymap used in Octave mode.")
106 (easy-menu-define octave-mode-menu octave-mode-map
107 "Menu for Octave mode."
108 '("Octave"
109 ["Split Line at Point" octave-indent-new-comment-line t]
110 ["Previous Code Line" octave-previous-code-line t]
111 ["Next Code Line" octave-next-code-line t]
112 ["Begin of Line" octave-beginning-of-line t]
113 ["End of Line" octave-end-of-line t]
114 ["Mark Block" octave-mark-block t]
115 ["Close Block" smie-close-block t]
116 "---"
117 ["Start Octave Process" run-octave t]
118 ["Documentation Lookup" info-lookup-symbol t]
119 ["Help on Function" octave-help t]
120 ["Search help" octave-lookfor t]
121 ["Find Function Definition" octave-find-definition t]
122 ["Insert Function" octave-insert-defun t]
123 ["Update Function File Comment" octave-update-function-file-comment t]
124 "---"
125 ["Function Syntax Hints" (eldoc-mode 'toggle)
126 :style toggle :selected (bound-and-true-p eldoc-mode)
127 :help "Display function signatures after typing `SPC' or `('"]
128 ["Delimiter Matching" show-paren-mode
129 :style toggle :selected show-paren-mode
130 :help "Highlight matched pairs such as `if ... end'"
131 :visible (fboundp 'smie--matching-block-data)]
132 ["Auto Fill" auto-fill-mode
133 :style toggle :selected auto-fill-function
134 :help "Automatic line breaking"]
135 ["Electric Layout" electric-layout-mode
136 :style toggle :selected electric-layout-mode
137 :help "Automatically insert newlines around some chars"]
138 "---"
139 ("Debug"
140 ["Send Current Line" octave-send-line t]
141 ["Send Current Block" octave-send-block t]
142 ["Send Current Function" octave-send-defun t]
143 ["Send Region" octave-send-region t]
144 ["Send Buffer" octave-send-buffer t]
145 ["Source Current File" octave-source-file t]
146 ["Show Process Buffer" octave-show-process-buffer t]
147 ["Hide Process Buffer" octave-hide-process-buffer t]
148 ["Kill Process" octave-kill-process t])
149 "---"
150 ["Octave Mode Manual" (info "(octave-mode)Top") t]
151 ["Customize Octave" (customize-group 'octave) t]
152 ["Submit Bug Report" report-emacs-bug t]))
154 (defvar octave-mode-syntax-table
155 (let ((table (make-syntax-table)))
156 (modify-syntax-entry ?\r " " table)
157 (modify-syntax-entry ?+ "." table)
158 (modify-syntax-entry ?- "." table)
159 (modify-syntax-entry ?= "." table)
160 (modify-syntax-entry ?* "." table)
161 (modify-syntax-entry ?/ "." table)
162 (modify-syntax-entry ?> "." table)
163 (modify-syntax-entry ?< "." table)
164 (modify-syntax-entry ?& "." table)
165 (modify-syntax-entry ?| "." table)
166 (modify-syntax-entry ?! "." table)
167 (modify-syntax-entry ?\\ "." table)
168 (modify-syntax-entry ?\' "." table)
169 (modify-syntax-entry ?\` "." table)
170 (modify-syntax-entry ?. "." table)
171 (modify-syntax-entry ?\" "\"" table)
172 (modify-syntax-entry ?_ "_" table)
173 ;; The "b" flag only applies to the second letter of the comstart
174 ;; and the first letter of the comend, i.e. the "4b" below is ineffective.
175 ;; If we try to put `b' on the single-line comments, we get a similar
176 ;; problem where the % and # chars appear as first chars of the 2-char
177 ;; comend, so the multi-line ender is also turned into style-b.
178 ;; So we need the new "c" comment style.
179 (modify-syntax-entry ?\% "< 13" table)
180 (modify-syntax-entry ?\# "< 13" table)
181 (modify-syntax-entry ?\{ "(} 2c" table)
182 (modify-syntax-entry ?\} "){ 4c" table)
183 (modify-syntax-entry ?\n ">" table)
184 table)
185 "Syntax table in use in `octave-mode' buffers.")
187 (defcustom octave-font-lock-texinfo-comment t
188 "Control whether to highlight the texinfo comment block."
189 :type 'boolean
190 :version "24.4")
192 (defcustom octave-blink-matching-block t
193 "Control the blinking of matching Octave block keywords.
194 Non-nil means show matching begin of block when inserting a space,
195 newline or semicolon after an else or end keyword."
196 :type 'boolean)
198 (defcustom octave-block-offset 2
199 "Extra indentation applied to statements in Octave block structures."
200 :type 'integer)
202 (defvar octave-block-comment-start
203 (concat (make-string 2 octave-comment-char) " ")
204 "String to insert to start a new Octave comment on an empty line.")
206 (defcustom octave-continuation-offset 4
207 "Extra indentation applied to Octave continuation lines."
208 :type 'integer)
210 (eval-and-compile
211 (defconst octave-continuation-marker-regexp "\\\\\\|\\.\\.\\."))
213 (defvar octave-continuation-regexp
214 (concat "[^#%\n]*\\(" octave-continuation-marker-regexp
215 "\\)\\s-*\\(\\s<.*\\)?$"))
217 ;; Char \ is considered a bad decision for continuing a line.
218 (defconst octave-continuation-string "..."
219 "Character string used for Octave continuation lines.")
221 (defvar octave-mode-imenu-generic-expression
222 (list
223 ;; Functions
224 (list nil octave-function-header-regexp 3))
225 "Imenu expression for Octave mode. See `imenu-generic-expression'.")
227 (defcustom octave-mode-hook nil
228 "Hook to be run when Octave mode is started."
229 :type 'hook)
231 (defcustom octave-send-show-buffer t
232 "Non-nil means display `inferior-octave-buffer' after sending to it."
233 :type 'boolean)
235 (defcustom octave-send-line-auto-forward t
236 "Control auto-forward after sending to the inferior Octave process.
237 Non-nil means always go to the next Octave code line after sending."
238 :type 'boolean)
240 (defcustom octave-send-echo-input t
241 "Non-nil means echo input sent to the inferior Octave process."
242 :type 'boolean)
245 ;;; SMIE indentation
247 (require 'smie)
249 (let-when-compile
250 ((operator-table
251 ;; Use '__operators__' in Octave REPL to get a full list?
252 '((assoc ";" "\n") (assoc ",") ;The doc says they have equal precedence!?
253 (right "=" "+=" "-=" "*=" "/=")
254 (assoc "&&") (assoc "||") ; The doc claims they have equal precedence!?
255 (assoc "&") (assoc "|") ; The doc claims they have equal precedence!?
256 (nonassoc "<" "<=" "==" ">=" ">" "!=" "~=")
257 (nonassoc ":") ;No idea what this is.
258 (assoc "+" "-")
259 (assoc "*" "/" "\\" ".\\" ".*" "./")
260 (nonassoc "'" ".'")
261 (nonassoc "++" "--" "!" "~") ;And unary "+" and "-".
262 (right "^" "**" ".^" ".**")
263 ;; It's not really an operator, but for indentation purposes it
264 ;; could be convenient to treat it as one.
265 (assoc "...")))
267 (matchedrules
268 ;; We can't distinguish the first element in a sequence with
269 ;; precedence grammars, so we can't distinguish the condition
270 ;; of the `if' from the subsequent body, for example.
271 ;; This has to be done later in the indentation rules.
272 '(("try" exp "catch" exp "end_try_catch")
273 ("unwind_protect" exp
274 "unwind_protect_cleanup" exp "end_unwind_protect")
275 ("for" exp "endfor")
276 ("parfor" exp "endparfor")
277 ("while" exp "endwhile")
278 ("if" exp "endif")
279 ("if" exp "else" exp "endif")
280 ("if" exp "elseif" exp "else" exp "endif")
281 ("if" exp "elseif" exp "elseif" exp "else" exp "endif")
282 ("switch" exp "case" exp "endswitch")
283 ("switch" exp "case" exp "otherwise" exp "endswitch")
284 ("switch" exp "case" exp "case" exp "otherwise" exp "endswitch")
285 ("function" exp "endfunction")
286 ("enumeration" exp "endenumeration")
287 ("events" exp "endevents")
288 ("methods" exp "endmethods")
289 ("properties" exp "endproperties")
290 ("classdef" exp "endclassdef")
293 (bnf-table
294 `((atom)
295 ;; FIXME: We don't parse these declarations correctly since
296 ;; SMIE *really* likes to parse "a b = 2 c" as "(a b) = (2 c)".
297 ;; IOW to do it right, we'd need to change octave-smie-*ward-token
298 ;; so that the spaces between vars in var-decls are lexed as
299 ;; something like ",".
300 ;; Doesn't seem worth the trouble/slowdown for now.
301 ;; We could hack smie-rules so as to work around the bad parse,
302 ;; but even that doesn't seem worth the trouble.
303 (var-decls (atom "=" atom)) ;; (var-decls "," var-decls)
304 (single-exp (atom "=" atom))
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 ("do" exp "until" single-exp)
311 ,@matchedrules
312 ;; For every rule that ends in "endfoo", add a corresponding
313 ;; rule which uses "end" instead.
314 ,@(mapcar (lambda (rule) (nconc (butlast rule) '("end")))
315 matchedrules)
316 ("global" var-decls) ("persistent" var-decls)
317 ;; These aren't super-important, but having them here
318 ;; makes it easier to extract all keywords.
319 ("break") ("continue") ("return")
320 ;; The following rules do not correspond to valid code AFAIK,
321 ;; but they lead to a grammar that degrades more gracefully
322 ;; on incomplete/incorrect code. It also helps us in
323 ;; computing octave--block-offset-keywords.
324 ("try" exp "end") ("unwind_protect" exp "end")
326 ;; (fundesc (atom "=" atom))
329 (defconst octave-smie-grammar
330 (eval-when-compile
331 (smie-prec2->grammar
332 (smie-merge-prec2s
333 (smie-bnf->prec2 bnf-table '((assoc "\n" ";")))
334 (smie-precs->prec2 operator-table)))))
336 (defconst octave-operator-regexp
337 (eval-when-compile
338 (regexp-opt (remove "\n" (apply #'append
339 (mapcar #'cdr operator-table)))))))
341 ;; Tokenizing needs to be refined so that ";;" is treated as two
342 ;; tokens and also so as to recognize the \n separator (and
343 ;; corresponding continuation lines).
345 (defun octave-smie--funcall-p ()
346 "Return non-nil if we're in an expression context. Moves point."
347 (looking-at "[ \t]*("))
349 (defun octave-smie--end-index-p ()
350 (let ((ppss (syntax-ppss)))
351 (and (nth 1 ppss)
352 (memq (char-after (nth 1 ppss)) '(?\( ?\[ ?\{)))))
354 (defun octave-smie--in-parens-p ()
355 (let ((ppss (syntax-ppss)))
356 (and (nth 1 ppss)
357 (eq ?\( (char-after (nth 1 ppss))))))
359 (defun octave-smie-backward-token ()
360 (let ((pos (point)))
361 (forward-comment (- (point)))
362 (cond
363 ((and (not (eq (char-before) ?\;)) ;Coalesce ";" and "\n".
364 (> pos (line-end-position))
365 (if (looking-back octave-continuation-marker-regexp (- (point) 3))
366 (progn
367 (goto-char (match-beginning 0))
368 (forward-comment (- (point)))
369 nil)
371 (not (octave-smie--in-parens-p)))
372 (skip-chars-forward " \t")
373 ;; Why bother distinguishing \n and ;?
374 ";") ;;"\n"
375 ((and (looking-back octave-operator-regexp (- (point) 3) 'greedy)
376 ;; Don't mistake a string quote for a transpose.
377 (not (looking-back "\\s\"" (1- (point)))))
378 (goto-char (match-beginning 0))
379 (match-string-no-properties 0))
381 (let ((tok (smie-default-backward-token)))
382 (cond
383 ((equal tok "enumeration")
384 (if (save-excursion (smie-default-forward-token)
385 (octave-smie--funcall-p))
386 "enumeration (function)"
387 tok))
388 ((equal tok "end") (if (octave-smie--end-index-p) "end (index)" tok))
389 (t tok)))))))
391 (defun octave-smie-forward-token ()
392 (skip-chars-forward " \t")
393 (when (looking-at (eval-when-compile
394 (concat "\\(" octave-continuation-marker-regexp
395 "\\)[ \t]*\\($\\|[%#]\\)")))
396 (goto-char (match-end 1))
397 (forward-comment 1))
398 (cond
399 ((and (looking-at "[%#\n]")
400 (not (or (save-excursion (skip-chars-backward " \t")
401 ;; Only add implicit ; when needed.
402 (or (bolp) (eq (char-before) ?\;)))
403 (octave-smie--in-parens-p))))
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))
419 (let ((tok (smie-default-forward-token)))
420 (cond
421 ((equal tok "enumeration")
422 (if (octave-smie--funcall-p)
423 "enumeration (function)"
424 tok))
425 ((equal tok "end") (if (octave-smie--end-index-p) "end (index)" tok))
426 (t tok))))))
428 (defconst octave--block-offset-keywords
429 (let* ((end-prec (nth 1 (assoc "end" octave-smie-grammar)))
430 (end-matchers
431 (delq nil
432 (mapcar (lambda (x) (if (eq end-prec (nth 2 x)) (car x)))
433 octave-smie-grammar))))
434 ;; Not sure if it would harm to keep "switch", but the previous code
435 ;; excluded it, presumably because there shouldn't be any code on
436 ;; the lines between "switch" and "case".
437 (delete "switch" end-matchers)))
439 (defun octave-smie-rules (kind token)
440 (pcase (cons kind token)
441 ;; We could set smie-indent-basic instead, but that would have two
442 ;; disadvantages:
443 ;; - changes to octave-block-offset wouldn't take effect immediately.
444 ;; - edebug wouldn't show the use of this variable.
445 (`(:elem . basic) octave-block-offset)
446 (`(:list-intro . ,(or "global" "persistent")) t)
447 ;; Since "case" is in the same BNF rules as switch..end, SMIE by default
448 ;; aligns it with "switch".
449 (`(:before . "case") (if (not (smie-rule-sibling-p)) octave-block-offset))
450 (`(:after . ";")
451 (if (apply #'smie-rule-parent-p octave--block-offset-keywords)
452 (smie-rule-parent octave-block-offset)
453 ;; For (invalid) code between switch and case.
454 ;; (if (smie-rule-parent-p "switch") 4)
455 nil))))
457 (defun octave-indent-comment ()
458 "A function for `smie-indent-functions' (which see)."
459 (save-excursion
460 (back-to-indentation)
461 (cond
462 ((octave-in-string-or-comment-p) nil)
463 ((looking-at-p "\\(\\s<\\)\\1\\{2,\\}")
465 ;; Exclude %{, %} and %!.
466 ((and (looking-at-p "\\s<\\(?:[^{}!]\\|$\\)")
467 (not (looking-at-p "\\(\\s<\\)\\1")))
468 (comment-choose-indent)))))
471 (defvar octave-reserved-words
472 (delq nil
473 (mapcar (lambda (x)
474 (setq x (car x))
475 (and (stringp x) (string-match "\\`[[:alpha:]]" x) x))
476 octave-smie-grammar))
477 "Reserved words in Octave.")
479 (defvar octave-font-lock-keywords
480 (list
481 ;; Fontify all builtin keywords.
482 (cons (concat "\\_<" (regexp-opt octave-reserved-words) "\\_>")
483 'font-lock-keyword-face)
484 ;; Note: 'end' also serves as the last index in an indexing expression,
485 ;; and 'enumerate' is also a function.
486 ;; Ref: http://www.mathworks.com/help/matlab/ref/end.html
487 ;; Ref: http://www.mathworks.com/help/matlab/ref/enumeration.html
488 (list (lambda (limit)
489 (while (re-search-forward "\\_<en\\(?:d\\|umeratio\\(n\\)\\)\\_>"
490 limit 'move)
491 (let ((beg (match-beginning 0))
492 (end (match-end 0)))
493 (unless (octave-in-string-or-comment-p)
494 (when (if (match-end 1)
495 (octave-smie--funcall-p)
496 (octave-smie--end-index-p))
497 (put-text-property beg end 'face nil)))))
498 nil))
499 ;; Fontify all operators.
500 (cons octave-operator-regexp 'font-lock-builtin-face)
501 ;; Fontify all function declarations.
502 (list octave-function-header-regexp
503 '(1 font-lock-keyword-face)
504 '(3 font-lock-function-name-face nil t)))
505 "Additional Octave expressions to highlight.")
507 (defun octave-syntax-propertize-function (start end)
508 (goto-char start)
509 (octave-syntax-propertize-sqs end)
510 (funcall (syntax-propertize-rules
511 ("\\\\" (0 (when (eq (nth 3 (save-excursion
512 (syntax-ppss (match-beginning 0))))
513 ?\")
514 (string-to-syntax "\\"))))
515 ;; Try to distinguish the string-quotes from the transpose-quotes.
516 ("\\(?:^\\|[[({,; ]\\)\\('\\)"
517 (1 (prog1 "\"'" (octave-syntax-propertize-sqs end)))))
518 (point) end))
520 (defun octave-syntax-propertize-sqs (end)
521 "Propertize the content/end of single-quote strings."
522 (when (eq (nth 3 (syntax-ppss)) ?\')
523 ;; A '..' string.
524 (when (re-search-forward
525 "\\(?:\\=\\|[^']\\)\\(?:''\\)*\\('\\)\\($\\|[^']\\)" end 'move)
526 (goto-char (match-beginning 2))
527 (when (eq (char-before (match-beginning 1)) ?\\)
528 ;; Backslash cannot escape a single quote.
529 (put-text-property (1- (match-beginning 1)) (match-beginning 1)
530 'syntax-table (string-to-syntax ".")))
531 (put-text-property (match-beginning 1) (match-end 1)
532 'syntax-table (string-to-syntax "\"'")))))
534 (defvar electric-layout-rules)
536 ;;;###autoload
537 (define-derived-mode octave-mode prog-mode "Octave"
538 "Major mode for editing Octave code.
540 Octave is a high-level language, primarily intended for numerical
541 computations. It provides a convenient command line interface
542 for solving linear and nonlinear problems numerically. Function
543 definitions can also be stored in files and used in batch mode.
545 See Info node `(octave-mode) Using Octave Mode' for more details.
547 Key bindings:
548 \\{octave-mode-map}"
549 :abbrev-table octave-abbrev-table
550 :group 'octave
552 (smie-setup octave-smie-grammar #'octave-smie-rules
553 :forward-token #'octave-smie-forward-token
554 :backward-token #'octave-smie-backward-token)
555 (setq-local smie-indent-basic 'octave-block-offset)
556 (add-hook 'smie-indent-functions #'octave-indent-comment nil t)
558 (setq-local smie-blink-matching-triggers
559 (cons ?\; smie-blink-matching-triggers))
560 (unless octave-blink-matching-block
561 (remove-hook 'post-self-insert-hook #'smie-blink-matching-open 'local))
563 (setq-local electric-indent-chars
564 (cons ?\; electric-indent-chars))
565 ;; IIUC matlab-mode takes the opposite approach: it makes RET insert
566 ;; a ";" at those places where it's correct (i.e. outside of parens).
567 (setq-local electric-layout-rules '((?\; . after)))
569 (setq-local comment-use-syntax t)
570 (setq-local comment-start octave-comment-start)
571 (setq-local comment-end "")
572 (setq-local comment-start-skip octave-comment-start-skip)
573 (setq-local comment-add 1)
575 (setq-local parse-sexp-ignore-comments t)
576 (setq-local paragraph-start (concat "\\s-*$\\|" page-delimiter))
577 (setq-local paragraph-separate paragraph-start)
578 (setq-local paragraph-ignore-fill-prefix t)
579 (setq-local fill-paragraph-function 'octave-fill-paragraph)
581 (setq-local fill-nobreak-predicate
582 (lambda () (eq (octave-in-string-p) ?')))
583 (add-function :around (local 'comment-line-break-function)
584 #'octave--indent-new-comment-line)
586 (setq font-lock-defaults '(octave-font-lock-keywords))
588 (setq-local syntax-propertize-function #'octave-syntax-propertize-function)
590 (setq-local imenu-generic-expression octave-mode-imenu-generic-expression)
591 (setq-local imenu-case-fold-search nil)
593 (setq-local add-log-current-defun-function #'octave-add-log-current-defun)
595 (add-hook 'completion-at-point-functions 'octave-completion-at-point nil t)
596 (add-hook 'before-save-hook 'octave-sync-function-file-names nil t)
597 (setq-local beginning-of-defun-function 'octave-beginning-of-defun)
598 (and octave-font-lock-texinfo-comment (octave-font-lock-texinfo-comment))
599 (add-function :before-until (local 'eldoc-documentation-function)
600 'octave-eldoc-function)
602 (easy-menu-add octave-mode-menu))
605 (defcustom inferior-octave-program "octave"
606 "Program invoked by `inferior-octave'."
607 :type 'string)
609 (defcustom inferior-octave-buffer "*Inferior Octave*"
610 "Name of buffer for running an inferior Octave process."
611 :type 'string)
613 (defcustom inferior-octave-prompt
614 ;; For Octave >= 3.8, default is always 'octave', see
615 ;; http://hg.savannah.gnu.org/hgweb/octave/rev/708173343c50
616 "\\(?:^octave\\(?:.bin\\|.exe\\)?\\(?:-[.0-9]+\\)?\\(?::[0-9]+\\)?\\|^debug\\|^\\)>+ "
617 "Regexp to match prompts for the inferior Octave process."
618 :type 'regexp)
620 (defcustom inferior-octave-prompt-read-only comint-prompt-read-only
621 "If non-nil, the Octave prompt is read only.
622 See `comint-prompt-read-only' for details."
623 :type 'boolean
624 :version "24.4")
626 (defcustom inferior-octave-startup-file
627 (let ((n (file-name-nondirectory inferior-octave-program)))
628 (locate-user-emacs-file (format "init_%s.m" n) (format ".emacs-%s" n)))
629 "Name of the inferior Octave startup file.
630 The contents of this file are sent to the inferior Octave process on
631 startup."
632 :type '(choice (const :tag "None" nil) file)
633 :version "24.4")
635 (defcustom inferior-octave-startup-args '("-i" "--no-line-editing")
636 "List of command line arguments for the inferior Octave process.
637 For example, for suppressing the startup message and using `traditional'
638 mode, include \"-q\" and \"--traditional\"."
639 :type '(repeat string)
640 :version "24.4")
642 (defcustom inferior-octave-mode-hook nil
643 "Hook to be run when Inferior Octave mode is started."
644 :type 'hook)
646 (defcustom inferior-octave-error-regexp-alist
647 '(("error:\\s-*\\(.*?\\) at line \\([0-9]+\\), column \\([0-9]+\\)"
648 1 2 3 2 1)
649 ("warning:\\s-*\\([^:\n]+\\):.*at line \\([0-9]+\\), column \\([0-9]+\\)"
650 1 2 3 1 1))
651 "Value for `compilation-error-regexp-alist' in inferior octave."
652 :version "24.4"
653 :type '(repeat (choice (symbol :tag "Predefined symbol")
654 (sexp :tag "Error specification"))))
656 (defvar inferior-octave-compilation-font-lock-keywords
657 '(("\\_<PASS\\_>" . compilation-info-face)
658 ("\\_<FAIL\\_>" . compilation-error-face)
659 ("\\_<\\(warning\\):" 1 compilation-warning-face)
660 ("\\_<\\(error\\):" 1 compilation-error-face)
661 ("^\\s-*!!!!!.*\\|^.*failed$" . compilation-error-face))
662 "Value for `compilation-mode-font-lock-keywords' in inferior octave.")
664 (defvar inferior-octave-process nil)
666 (defvar inferior-octave-mode-map
667 (let ((map (make-sparse-keymap)))
668 (set-keymap-parent map comint-mode-map)
669 (define-key map "\M-." 'octave-find-definition)
670 (define-key map "\t" 'completion-at-point)
671 (define-key map "\C-hd" 'octave-help)
672 (define-key map "\C-ha" 'octave-lookfor)
673 ;; Same as in `shell-mode'.
674 (define-key map "\M-?" 'comint-dynamic-list-filename-completions)
675 (define-key map "\C-c\C-l" 'inferior-octave-dynamic-list-input-ring)
676 (define-key map [menu-bar inout list-history]
677 '("List Input History" . inferior-octave-dynamic-list-input-ring))
678 map)
679 "Keymap used in Inferior Octave mode.")
681 (defvar inferior-octave-mode-syntax-table
682 (let ((table (make-syntax-table octave-mode-syntax-table)))
683 table)
684 "Syntax table in use in `inferior-octave-mode' buffers.")
686 (defvar inferior-octave-font-lock-keywords
687 (list
688 (cons inferior-octave-prompt 'font-lock-type-face))
689 ;; Could certainly do more font locking in inferior Octave ...
690 "Additional expressions to highlight in Inferior Octave mode.")
692 (defvar inferior-octave-output-list nil)
693 (defvar inferior-octave-output-string nil)
694 (defvar inferior-octave-receive-in-progress nil)
696 (define-obsolete-variable-alias 'inferior-octave-startup-hook
697 'inferior-octave-mode-hook "24.4")
699 (defvar inferior-octave-dynamic-complete-functions
700 '(inferior-octave-completion-at-point comint-filename-completion)
701 "List of functions called to perform completion for inferior Octave.
702 This variable is used to initialize `comint-dynamic-complete-functions'
703 in the Inferior Octave buffer.")
705 (defvar info-lookup-mode)
706 (defvar compilation-error-regexp-alist)
707 (defvar compilation-mode-font-lock-keywords)
709 (declare-function compilation-forget-errors "compile" ())
711 (defun inferior-octave-process-live-p ()
712 (process-live-p inferior-octave-process))
714 (define-derived-mode inferior-octave-mode comint-mode "Inferior Octave"
715 "Major mode for interacting with an inferior Octave process.
717 See Info node `(octave-mode) Running Octave from Within Emacs' for more
718 details.
720 Key bindings:
721 \\{inferior-octave-mode-map}"
722 :abbrev-table octave-abbrev-table
723 :group 'octave
725 (setq comint-prompt-regexp inferior-octave-prompt)
727 (setq-local comment-use-syntax t)
728 (setq-local comment-start octave-comment-start)
729 (setq-local comment-end "")
730 (setq comment-column 32)
731 (setq-local comment-start-skip octave-comment-start-skip)
733 (setq font-lock-defaults '(inferior-octave-font-lock-keywords nil nil))
735 (setq-local info-lookup-mode 'octave-mode)
736 (setq-local eldoc-documentation-function 'octave-eldoc-function)
738 (setq-local comint-input-ring-file-name
739 (or (getenv "OCTAVE_HISTFILE") "~/.octave_hist"))
740 (setq-local comint-input-ring-size
741 (string-to-number (or (getenv "OCTAVE_HISTSIZE") "1024")))
742 (comint-read-input-ring t)
743 (setq-local comint-dynamic-complete-functions
744 inferior-octave-dynamic-complete-functions)
745 (setq-local comint-prompt-read-only inferior-octave-prompt-read-only)
746 (add-hook 'comint-input-filter-functions
747 'inferior-octave-directory-tracker nil t)
748 ;; http://thread.gmane.org/gmane.comp.gnu.octave.general/48572
749 (add-hook 'window-configuration-change-hook
750 'inferior-octave-track-window-width-change nil t)
751 (setq-local compilation-error-regexp-alist inferior-octave-error-regexp-alist)
752 (setq-local compilation-mode-font-lock-keywords
753 inferior-octave-compilation-font-lock-keywords)
754 (compilation-shell-minor-mode 1)
755 (compilation-forget-errors))
757 ;;;###autoload
758 (defun inferior-octave (&optional arg)
759 "Run an inferior Octave process, I/O via `inferior-octave-buffer'.
760 This buffer is put in Inferior Octave mode. See `inferior-octave-mode'.
762 Unless ARG is non-nil, switches to this buffer.
764 The elements of the list `inferior-octave-startup-args' are sent as
765 command line arguments to the inferior Octave process on startup.
767 Additional commands to be executed on startup can be provided either in
768 the file specified by `inferior-octave-startup-file' or by the default
769 startup file, `~/.emacs-octave'."
770 (interactive "P")
771 (let ((buffer (get-buffer-create inferior-octave-buffer)))
772 (unless arg
773 (pop-to-buffer buffer))
774 (unless (comint-check-proc buffer)
775 (with-current-buffer buffer
776 (inferior-octave-startup)
777 (inferior-octave-mode)))
778 buffer))
780 ;;;###autoload
781 (defalias 'run-octave 'inferior-octave)
783 (defun inferior-octave-startup ()
784 "Start an inferior Octave process."
785 (let ((proc (comint-exec-1
786 (substring inferior-octave-buffer 1 -1)
787 inferior-octave-buffer
788 inferior-octave-program
789 (append
790 inferior-octave-startup-args
791 ;; --no-gui is introduced in Octave > 3.7
792 (and (not (member "--no-gui" inferior-octave-startup-args))
793 (zerop (process-file inferior-octave-program
794 nil nil nil "--no-gui" "--help"))
795 '("--no-gui"))))))
796 (set-process-filter proc 'inferior-octave-output-digest)
797 (setq inferior-octave-process proc
798 inferior-octave-output-list nil
799 inferior-octave-output-string nil
800 inferior-octave-receive-in-progress t)
802 ;; This may look complicated ... However, we need to make sure that
803 ;; we additional startup code only AFTER Octave is ready (otherwise,
804 ;; output may be mixed up). Hence, we need to digest the Octave
805 ;; output to see when it issues a prompt.
806 (while inferior-octave-receive-in-progress
807 (unless (inferior-octave-process-live-p)
808 ;; Spit out the error messages.
809 (when inferior-octave-output-list
810 (princ (concat (mapconcat 'identity inferior-octave-output-list "\n")
811 "\n")
812 (process-mark inferior-octave-process)))
813 (error "Process `%s' died" inferior-octave-process))
814 (accept-process-output inferior-octave-process))
815 (goto-char (point-max))
816 (set-marker (process-mark proc) (point))
817 (insert-before-markers
818 (concat
819 (if (not (bobp)) "\f\n")
820 (if inferior-octave-output-list
821 (concat (mapconcat
822 'identity inferior-octave-output-list "\n")
823 "\n"))))
825 ;; An empty secondary prompt, as e.g. obtained by '--braindead',
826 ;; means trouble.
827 (inferior-octave-send-list-and-digest (list "PS2\n"))
828 (when (string-match "\\(PS2\\|ans\\) = *$"
829 (car inferior-octave-output-list))
830 (inferior-octave-send-list-and-digest (list "PS2 ('> ');\n")))
832 (inferior-octave-send-list-and-digest
833 (list "disp (getenv ('OCTAVE_SRCDIR'))\n"))
834 (process-put proc 'octave-srcdir
835 (unless (equal (car inferior-octave-output-list) "")
836 (car inferior-octave-output-list)))
838 ;; O.K., now we are ready for the Inferior Octave startup commands.
839 (inferior-octave-send-list-and-digest
840 (list "more off;\n"
841 (unless (equal inferior-octave-output-string ">> ")
842 ;; See http://hg.savannah.gnu.org/hgweb/octave/rev/708173343c50
843 "PS1 ('octave> ');\n")
844 (when (and inferior-octave-startup-file
845 (file-exists-p inferior-octave-startup-file))
846 (format "source ('%s');\n" inferior-octave-startup-file))))
847 (when inferior-octave-output-list
848 (insert-before-markers
849 (mapconcat 'identity inferior-octave-output-list "\n")))
851 ;; And finally, everything is back to normal.
852 (set-process-filter proc 'comint-output-filter)
853 ;; Just in case, to be sure a cd in the startup file won't have
854 ;; detrimental effects.
855 (with-demoted-errors (inferior-octave-resync-dirs))
856 ;; Generate a proper prompt, which is critical to
857 ;; `comint-history-isearch-backward-regexp'. Bug#14433.
858 (comint-send-string proc "\n")))
860 (defun inferior-octave-completion-table ()
861 (completion-table-with-cache
862 (lambda (command)
863 (inferior-octave-send-list-and-digest
864 (list (format "completion_matches ('%s');\n" command)))
865 (delete-consecutive-dups
866 (sort inferior-octave-output-list 'string-lessp)))))
868 (defun inferior-octave-completion-at-point ()
869 "Return the data to complete the Octave symbol at point."
870 ;; http://debbugs.gnu.org/14300
871 (unless (string-match-p "/" (or (comint--match-partial-filename) ""))
872 (let ((beg (save-excursion
873 (skip-syntax-backward "w_" (comint-line-beginning-position))
874 (point)))
875 (end (point)))
876 (when (and beg (> end beg))
877 (list beg end (completion-table-in-turn
878 (inferior-octave-completion-table)
879 'comint-completion-file-name-table))))))
881 (defun inferior-octave-dynamic-list-input-ring ()
882 "List the buffer's input history in a help buffer."
883 ;; We cannot use `comint-dynamic-list-input-ring', because it replaces
884 ;; "completion" by "history reference" ...
885 (interactive)
886 (if (or (not (ring-p comint-input-ring))
887 (ring-empty-p comint-input-ring))
888 (message "No history")
889 (let ((history nil)
890 (history-buffer " *Input History*")
891 (index (1- (ring-length comint-input-ring)))
892 (conf (current-window-configuration)))
893 ;; We have to build up a list ourselves from the ring vector.
894 (while (>= index 0)
895 (setq history (cons (ring-ref comint-input-ring index) history)
896 index (1- index)))
897 ;; Change "completion" to "history reference"
898 ;; to make the display accurate.
899 (with-output-to-temp-buffer history-buffer
900 (display-completion-list history)
901 (set-buffer history-buffer))
902 (message "Hit space to flush")
903 (let ((ch (read-event)))
904 (if (eq ch ?\ )
905 (set-window-configuration conf)
906 (push ch unread-command-events))))))
908 (defun inferior-octave-output-digest (_proc string)
909 "Special output filter for the inferior Octave process.
910 Save all output between newlines into `inferior-octave-output-list', and
911 the rest to `inferior-octave-output-string'."
912 (setq string (concat inferior-octave-output-string string))
913 (while (string-match "\n" string)
914 (setq inferior-octave-output-list
915 (append inferior-octave-output-list
916 (list (substring string 0 (match-beginning 0))))
917 string (substring string (match-end 0))))
918 (if (string-match inferior-octave-prompt string)
919 (setq inferior-octave-receive-in-progress nil))
920 (setq inferior-octave-output-string string))
922 (defun inferior-octave-check-process ()
923 (or (inferior-octave-process-live-p)
924 (error (substitute-command-keys
925 "No inferior octave process running. Type \\[run-octave]"))))
927 (defun inferior-octave-send-list-and-digest (list)
928 "Send LIST to the inferior Octave process and digest the output.
929 The elements of LIST have to be strings and are sent one by one. All
930 output is passed to the filter `inferior-octave-output-digest'."
931 (inferior-octave-check-process)
932 (let* ((proc inferior-octave-process)
933 (filter (process-filter proc))
934 string)
935 (set-process-filter proc 'inferior-octave-output-digest)
936 (setq inferior-octave-output-list nil)
937 (unwind-protect
938 (while (setq string (car list))
939 (setq inferior-octave-output-string nil
940 inferior-octave-receive-in-progress t)
941 (comint-send-string proc string)
942 (while inferior-octave-receive-in-progress
943 (accept-process-output proc))
944 (setq list (cdr list)))
945 (set-process-filter proc filter))))
947 (defvar inferior-octave-directory-tracker-resync nil)
948 (make-variable-buffer-local 'inferior-octave-directory-tracker-resync)
950 (defun inferior-octave-directory-tracker (string)
951 "Tracks `cd' commands issued to the inferior Octave process.
952 Use \\[inferior-octave-resync-dirs] to resync if Emacs gets confused."
953 (when inferior-octave-directory-tracker-resync
954 (or (inferior-octave-resync-dirs 'noerror)
955 (setq inferior-octave-directory-tracker-resync nil)))
956 (cond
957 ((string-match "^[ \t]*cd[ \t;]*$" string)
958 (cd "~"))
959 ((string-match "^[ \t]*cd[ \t]+\\([^ \t\n;]*\\)[ \t\n;]*" string)
960 (condition-case err
961 (cd (match-string 1 string))
962 (error (setq inferior-octave-directory-tracker-resync t)
963 (message "%s: `%s'"
964 (error-message-string err)
965 (match-string 1 string)))))))
967 (defun inferior-octave-resync-dirs (&optional noerror)
968 "Resync the buffer's idea of the current directory.
969 This command queries the inferior Octave process about its current
970 directory and makes this the current buffer's default directory."
971 (interactive)
972 (inferior-octave-send-list-and-digest '("disp (pwd ())\n"))
973 (condition-case err
974 (progn
975 (cd (car inferior-octave-output-list))
977 (error (unless noerror (signal (car err) (cdr err))))))
979 (defcustom inferior-octave-minimal-columns 80
980 "The minimal column width for the inferior Octave process."
981 :type 'integer
982 :version "24.4")
984 (defvar inferior-octave-last-column-width nil)
986 (defun inferior-octave-track-window-width-change ()
987 ;; http://thread.gmane.org/gmane.comp.gnu.octave.general/48572
988 (let ((width (max inferior-octave-minimal-columns (window-width))))
989 (unless (eq inferior-octave-last-column-width width)
990 (setq-local inferior-octave-last-column-width width)
991 (when (inferior-octave-process-live-p)
992 (inferior-octave-send-list-and-digest
993 (list (format "putenv ('COLUMNS', '%s');\n" width)))))))
996 ;;; Miscellaneous useful functions
998 (defun octave-in-comment-p ()
999 "Return non-nil if point is inside an Octave comment."
1000 (nth 4 (syntax-ppss)))
1002 (defun octave-in-string-p ()
1003 "Return non-nil if point is inside an Octave string."
1004 (nth 3 (syntax-ppss)))
1006 (defun octave-in-string-or-comment-p ()
1007 "Return non-nil if point is inside an Octave string or comment."
1008 (nth 8 (syntax-ppss)))
1010 (defun octave-looking-at-kw (regexp)
1011 "Like `looking-at', but sets `case-fold-search' nil."
1012 (let ((case-fold-search nil))
1013 (looking-at regexp)))
1015 (defun octave-maybe-insert-continuation-string ()
1016 (if (or (octave-in-comment-p)
1017 (save-excursion
1018 (beginning-of-line)
1019 (looking-at octave-continuation-regexp)))
1021 (delete-horizontal-space)
1022 (insert (concat " " octave-continuation-string))))
1024 (defun octave-completing-read ()
1025 (let ((def (or (thing-at-point 'symbol)
1026 (save-excursion
1027 (skip-syntax-backward "-(")
1028 (thing-at-point 'symbol)))))
1029 (completing-read
1030 (format (if def "Function (default %s): " "Function: ") def)
1031 (inferior-octave-completion-table)
1032 nil nil nil nil def)))
1034 (defun octave-goto-function-definition (fn)
1035 "Go to the function definition of FN in current buffer."
1036 (let ((search
1037 (lambda (re sub)
1038 (let ((orig (point)) found)
1039 (goto-char (point-min))
1040 (while (and (not found) (re-search-forward re nil t))
1041 (when (and (equal (match-string sub) fn)
1042 (not (nth 8 (syntax-ppss))))
1043 (setq found t)))
1044 (unless found (goto-char orig))
1045 found))))
1046 (pcase (and buffer-file-name (file-name-extension buffer-file-name))
1047 (`"cc" (funcall search
1048 "\\_<DEFUN\\(?:_DLD\\)?\\s-*(\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)" 1))
1049 (_ (funcall search octave-function-header-regexp 3)))))
1051 (defun octave-function-file-p ()
1052 "Return non-nil if the first token is \"function\".
1053 The value is (START END NAME-START NAME-END) of the function."
1054 (save-excursion
1055 (goto-char (point-min))
1056 (when (equal (funcall smie-forward-token-function) "function")
1057 (forward-word-strictly -1)
1058 (let* ((start (point))
1059 (end (progn (forward-sexp 1) (point)))
1060 (name (when (progn
1061 (goto-char start)
1062 (re-search-forward octave-function-header-regexp
1063 end t))
1064 (list (match-beginning 3) (match-end 3)))))
1065 (cons start (cons end name))))))
1067 ;; Like forward-comment but stop at non-comment blank
1068 (defun octave-skip-comment-forward (limit)
1069 (let ((ppss (syntax-ppss)))
1070 (if (nth 4 ppss)
1071 (goto-char (nth 8 ppss))
1072 (goto-char (or (comment-search-forward limit t) (point)))))
1073 (while (and (< (point) limit) (looking-at-p "\\s<"))
1074 (forward-comment 1)))
1076 ;;; First non-copyright comment block
1077 (defun octave-function-file-comment ()
1078 "Beginning and end positions of the function file comment."
1079 (save-excursion
1080 (goto-char (point-min))
1081 ;; Copyright block: octave/libinterp/parse-tree/lex.ll around line 1634
1082 (while (save-excursion
1083 (when (comment-search-forward (point-max) t)
1084 (when (eq (char-after) ?\{) ; case of block comment
1085 (forward-char 1))
1086 (skip-syntax-forward "-")
1087 (let ((case-fold-search t))
1088 (looking-at-p "\\(?:copyright\\|author\\)\\_>"))))
1089 (octave-skip-comment-forward (point-max)))
1090 (let ((beg (comment-search-forward (point-max) t)))
1091 (when beg
1092 (goto-char beg)
1093 (octave-skip-comment-forward (point-max))
1094 (list beg (point))))))
1096 (defun octave-sync-function-file-names ()
1097 "Ensure function name agree with function file name.
1098 See Info node `(octave)Function Files'."
1099 (interactive)
1100 (when buffer-file-name
1101 (pcase-let ((`(,start ,_end ,name-start ,name-end)
1102 (octave-function-file-p)))
1103 (when (and start name-start)
1104 (let* ((func (buffer-substring name-start name-end))
1105 (file (file-name-sans-extension
1106 (file-name-nondirectory buffer-file-name)))
1107 (help-form (format-message "\
1108 a: Use function name `%s'
1109 b: Use file name `%s'
1110 q: Don't fix\n" func file))
1111 (c (unless (equal file func)
1112 (save-window-excursion
1113 (help-form-show)
1114 (read-char-choice
1115 "Which name to use? (a/b/q) " '(?a ?b ?q))))))
1116 (pcase c
1117 (`?a (let ((newname (expand-file-name
1118 (concat func (file-name-extension
1119 buffer-file-name t)))))
1120 (when (or (not (file-exists-p newname))
1121 (yes-or-no-p
1122 (format "Target file %s exists; proceed? " newname)))
1123 (when (file-exists-p buffer-file-name)
1124 (rename-file buffer-file-name newname t))
1125 (set-visited-file-name newname))))
1126 (`?b (save-excursion
1127 (goto-char name-start)
1128 (delete-region name-start name-end)
1129 (insert file)))))))))
1131 (defun octave-update-function-file-comment (beg end)
1132 "Query replace function names in function file comment."
1133 (interactive
1134 (progn
1135 (barf-if-buffer-read-only)
1136 (if (use-region-p)
1137 (list (region-beginning) (region-end))
1138 (or (octave-function-file-comment)
1139 (error "No function file comment found")))))
1140 (save-excursion
1141 (let* ((bounds (or (octave-function-file-p)
1142 (error "Not in a function file buffer")))
1143 (func (if (cddr bounds)
1144 (apply #'buffer-substring (cddr bounds))
1145 (error "Function name not found")))
1146 (old-func (progn
1147 (goto-char beg)
1148 (when (re-search-forward
1149 "[=}]\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)\\_>"
1150 (min (line-end-position 4) end)
1152 (match-string 1))))
1153 (old-func (read-string (format (if old-func
1154 "Name to replace (default %s): "
1155 "Name to replace: ")
1156 old-func)
1157 nil nil old-func)))
1158 (if (and func old-func (not (equal func old-func)))
1159 (perform-replace old-func func 'query
1160 nil 'delimited nil nil beg end)
1161 (message "Function names match")))))
1163 (defface octave-function-comment-block
1164 '((t (:inherit font-lock-doc-face)))
1165 "Face used to highlight function comment block.")
1167 (eval-when-compile (require 'texinfo))
1169 (defun octave-font-lock-texinfo-comment ()
1170 (let ((kws
1171 (eval-when-compile
1172 (delq nil (mapcar
1173 (lambda (kw)
1174 (if (numberp (nth 1 kw))
1175 `(,(nth 0 kw) ,(nth 1 kw) ,(nth 2 kw) prepend)
1176 (message "Ignoring Texinfo highlight: %S" kw)))
1177 texinfo-font-lock-keywords)))))
1178 (font-lock-add-keywords
1180 `((,(lambda (limit)
1181 (while (and (< (point) limit)
1182 (search-forward "-*- texinfo -*-" limit t)
1183 (octave-in-comment-p))
1184 (let ((beg (nth 8 (syntax-ppss)))
1185 (end (progn
1186 (octave-skip-comment-forward (point-max))
1187 (point))))
1188 (put-text-property beg end 'font-lock-multiline t)
1189 (font-lock-prepend-text-property
1190 beg end 'face 'octave-function-comment-block)
1191 (dolist (kw kws)
1192 (goto-char beg)
1193 (while (re-search-forward (car kw) end 'move)
1194 (font-lock-apply-highlight (cdr kw))))))
1195 nil)))
1196 'append)))
1199 ;;; Indentation
1201 (defun octave-indent-new-comment-line (&optional soft)
1202 "Break Octave line at point, continuing comment if within one.
1203 Insert `octave-continuation-string' before breaking the line
1204 unless inside a list. Signal an error if within a single-quoted
1205 string."
1206 (interactive)
1207 (funcall comment-line-break-function soft))
1209 (defun octave--indent-new-comment-line (orig &rest args)
1210 (cond
1211 ((octave-in-comment-p) nil)
1212 ((eq (octave-in-string-p) ?')
1213 (error "Cannot split a single-quoted string"))
1214 ((eq (octave-in-string-p) ?\")
1215 (insert octave-continuation-string))
1217 (delete-horizontal-space)
1218 (unless (and (cadr (syntax-ppss))
1219 (eq (char-after (cadr (syntax-ppss))) ?\())
1220 (insert " " octave-continuation-string))))
1221 (apply orig args)
1222 (indent-according-to-mode))
1224 (define-obsolete-function-alias
1225 'octave-indent-defun 'prog-indent-sexp "24.4")
1228 ;;; Motion
1229 (defun octave-next-code-line (&optional arg)
1230 "Move ARG lines of Octave code forward (backward if ARG is negative).
1231 Skips past all empty and comment lines. Default for ARG is 1.
1233 On success, return 0. Otherwise, go as far as possible and return -1."
1234 (interactive "p")
1235 (or arg (setq arg 1))
1236 (beginning-of-line)
1237 (let ((n 0)
1238 (inc (if (> arg 0) 1 -1)))
1239 (while (and (/= arg 0) (= n 0))
1240 (setq n (forward-line inc))
1241 (while (and (= n 0)
1242 (looking-at "\\s-*\\($\\|\\s<\\)"))
1243 (setq n (forward-line inc)))
1244 (setq arg (- arg inc)))
1247 (defun octave-previous-code-line (&optional arg)
1248 "Move ARG lines of Octave code backward (forward if ARG is negative).
1249 Skips past all empty and comment lines. Default for ARG is 1.
1251 On success, return 0. Otherwise, go as far as possible and return -1."
1252 (interactive "p")
1253 (or arg (setq arg 1))
1254 (octave-next-code-line (- arg)))
1256 (defun octave-beginning-of-line ()
1257 "Move point to beginning of current Octave line.
1258 If on an empty or comment line, go to the beginning of that line.
1259 Otherwise, move backward to the beginning of the first Octave code line
1260 which is not inside a continuation statement, i.e., which does not
1261 follow a code line ending with `...' or is inside an open
1262 parenthesis list."
1263 (interactive)
1264 (beginning-of-line)
1265 (unless (looking-at "\\s-*\\($\\|\\s<\\)")
1266 (while (or (when (cadr (syntax-ppss))
1267 (goto-char (cadr (syntax-ppss)))
1268 (beginning-of-line)
1270 (and (or (looking-at "\\s-*\\($\\|\\s<\\)")
1271 (save-excursion
1272 (if (zerop (octave-previous-code-line))
1273 (looking-at octave-continuation-regexp))))
1274 (zerop (forward-line -1)))))))
1276 (defun octave-end-of-line ()
1277 "Move point to end of current Octave line.
1278 If on an empty or comment line, go to the end of that line.
1279 Otherwise, move forward to the end of the first Octave code line which
1280 does not end with `...' or is inside an open parenthesis list."
1281 (interactive)
1282 (end-of-line)
1283 (unless (save-excursion
1284 (beginning-of-line)
1285 (looking-at "\\s-*\\($\\|\\s<\\)"))
1286 (while (or (when (cadr (syntax-ppss))
1287 (condition-case nil
1288 (progn
1289 (up-list 1)
1290 (end-of-line)
1292 (error nil)))
1293 (and (save-excursion
1294 (beginning-of-line)
1295 (or (looking-at "\\s-*\\($\\|\\s<\\)")
1296 (looking-at octave-continuation-regexp)))
1297 (zerop (forward-line 1)))))
1298 (end-of-line)))
1300 (defun octave-mark-block ()
1301 "Put point at the beginning of this Octave block, mark at the end.
1302 The block marked is the one that contains point or follows point."
1303 (interactive)
1304 (if (and (looking-at "\\sw\\|\\s_")
1305 (looking-back "\\sw\\|\\s_" (1- (point))))
1306 (skip-syntax-forward "w_"))
1307 (unless (or (looking-at "\\s(")
1308 (save-excursion
1309 (let* ((token (funcall smie-forward-token-function))
1310 (level (assoc token smie-grammar)))
1311 (and level (not (numberp (cadr level)))))))
1312 (backward-up-list 1))
1313 (mark-sexp))
1315 (defun octave-beginning-of-defun (&optional arg)
1316 "Octave-specific `beginning-of-defun-function' (which see)."
1317 (or arg (setq arg 1))
1318 ;; Move out of strings or comments.
1319 (when (octave-in-string-or-comment-p)
1320 (goto-char (octave-in-string-or-comment-p)))
1321 (letrec ((orig (point))
1322 (toplevel (lambda (pos)
1323 (condition-case nil
1324 (progn
1325 (backward-up-list 1)
1326 (funcall toplevel (point)))
1327 (scan-error pos)))))
1328 (goto-char (funcall toplevel (point)))
1329 (when (and (> arg 0) (/= orig (point)))
1330 (setq arg (1- arg)))
1331 (forward-sexp (- arg))
1332 (and (< arg 0) (forward-sexp -1))
1333 (/= orig (point))))
1335 (defun octave-fill-paragraph (&optional _arg)
1336 "Fill paragraph of Octave code, handling Octave comments."
1337 ;; FIXME: difference with generic fill-paragraph:
1338 ;; - code lines are only split, never joined.
1339 ;; - \n that end comments are never removed.
1340 ;; - insert continuation marker when splitting code lines.
1341 (interactive "P")
1342 (save-excursion
1343 (let ((end (progn (forward-paragraph) (copy-marker (point) t)))
1344 (beg (progn
1345 (forward-paragraph -1)
1346 (skip-chars-forward " \t\n")
1347 (beginning-of-line)
1348 (point)))
1349 (cfc (current-fill-column))
1350 comment-prefix)
1351 (goto-char beg)
1352 (while (< (point) end)
1353 (condition-case nil
1354 (indent-according-to-mode)
1355 (error nil))
1356 (move-to-column cfc)
1357 ;; First check whether we need to combine non-empty comment lines
1358 (if (and (< (current-column) cfc)
1359 (octave-in-comment-p)
1360 (not (save-excursion
1361 (beginning-of-line)
1362 (looking-at "^\\s-*\\s<+\\s-*$"))))
1363 ;; This is a nonempty comment line which does not extend
1364 ;; past the fill column. If it is followed by a nonempty
1365 ;; comment line with the same comment prefix, try to
1366 ;; combine them, and repeat this until either we reach the
1367 ;; fill-column or there is nothing more to combine.
1368 (progn
1369 ;; Get the comment prefix
1370 (save-excursion
1371 (beginning-of-line)
1372 (while (and (re-search-forward "\\s<+")
1373 (not (octave-in-comment-p))))
1374 (setq comment-prefix (match-string 0)))
1375 ;; And keep combining ...
1376 (while (and (< (current-column) cfc)
1377 (save-excursion
1378 (forward-line 1)
1379 (and (looking-at
1380 (concat "^\\s-*"
1381 comment-prefix
1382 "\\S<"))
1383 (not (looking-at
1384 (concat "^\\s-*"
1385 comment-prefix
1386 "\\s-*$"))))))
1387 (delete-char 1)
1388 (re-search-forward comment-prefix)
1389 (delete-region (match-beginning 0) (match-end 0))
1390 (fixup-whitespace)
1391 (move-to-column cfc))))
1392 ;; We might also try to combine continued code lines> Perhaps
1393 ;; some other time ...
1394 (skip-chars-forward "^ \t\n")
1395 (delete-horizontal-space)
1396 (if (or (< (current-column) cfc)
1397 (and (= (current-column) cfc) (eolp)))
1398 (forward-line 1)
1399 (if (not (eolp)) (insert " "))
1400 (or (funcall normal-auto-fill-function)
1401 (forward-line 1))))
1402 t)))
1404 (defun octave-completion-at-point ()
1405 "Find the text to complete and the corresponding table."
1406 (let* ((beg (save-excursion (skip-syntax-backward "w_") (point)))
1407 (end (point)))
1408 (if (< beg (point))
1409 ;; Extend region past point, if applicable.
1410 (save-excursion (skip-syntax-forward "w_")
1411 (setq end (point))))
1412 (when (> end beg)
1413 (list beg end (or (and (inferior-octave-process-live-p)
1414 (inferior-octave-completion-table))
1415 octave-reserved-words)))))
1417 (defun octave-add-log-current-defun ()
1418 "A function for `add-log-current-defun-function' (which see)."
1419 (save-excursion
1420 (end-of-line)
1421 (and (beginning-of-defun)
1422 (re-search-forward octave-function-header-regexp
1423 (line-end-position) t)
1424 (match-string 3))))
1427 ;;; Electric characters && friends
1428 (define-skeleton octave-insert-defun
1429 "Insert an Octave function skeleton.
1430 Prompt for the function's name, arguments and return values (to be
1431 entered without parens)."
1432 (let* ((defname (file-name-sans-extension (buffer-name)))
1433 (name (read-string (format "Function name (default %s): " defname)
1434 nil nil defname))
1435 (args (read-string "Arguments: "))
1436 (vals (read-string "Return values: ")))
1437 (format "%s%s (%s)"
1438 (cond
1439 ((string-equal vals "") vals)
1440 ((string-match "[ ,]" vals) (concat "[" vals "] = "))
1441 (t (concat vals " = ")))
1442 name
1443 args))
1444 \n octave-block-comment-start "usage: " str \n
1445 octave-block-comment-start '(delete-horizontal-space) \n
1446 octave-block-comment-start '(delete-horizontal-space) \n
1447 "function " > str \n
1448 _ \n
1449 "endfunction" > \n)
1451 ;;; Communication with the inferior Octave process
1452 (defun octave-kill-process ()
1453 "Kill inferior Octave process and its buffer."
1454 (interactive)
1455 (when (and (buffer-live-p (get-buffer inferior-octave-buffer))
1456 (or (yes-or-no-p (format "Kill %S and its buffer? "
1457 inferior-octave-process))
1458 (user-error "Aborted")))
1459 (when (inferior-octave-process-live-p)
1460 (set-process-query-on-exit-flag inferior-octave-process nil)
1461 (process-send-string inferior-octave-process "quit;\n")
1462 (accept-process-output inferior-octave-process))
1463 (kill-buffer inferior-octave-buffer)))
1465 (defun octave-show-process-buffer ()
1466 "Make sure that `inferior-octave-buffer' is displayed."
1467 (interactive)
1468 (if (get-buffer inferior-octave-buffer)
1469 (display-buffer inferior-octave-buffer)
1470 (message "No buffer named %s" inferior-octave-buffer)))
1472 (defun octave-hide-process-buffer ()
1473 "Delete all windows that display `inferior-octave-buffer'."
1474 (interactive)
1475 (if (get-buffer inferior-octave-buffer)
1476 (delete-windows-on inferior-octave-buffer)
1477 (message "No buffer named %s" inferior-octave-buffer)))
1479 (defun octave-source-file (file)
1480 "Execute FILE in the inferior Octave process.
1481 This is done using Octave's source function. FILE defaults to
1482 current buffer file unless called with a prefix arg \\[universal-argument]."
1483 (interactive (list (or (and (not current-prefix-arg) buffer-file-name)
1484 (read-file-name "File: " nil nil t))))
1485 (or (stringp file)
1486 (signal 'wrong-type-argument (list 'stringp file)))
1487 (inferior-octave t)
1488 (with-current-buffer inferior-octave-buffer
1489 (comint-send-string inferior-octave-process
1490 (format "source '%s'\n" file))))
1492 (defun octave-send-region (beg end)
1493 "Send current region to the inferior Octave process."
1494 (interactive "r")
1495 (inferior-octave t)
1496 (let ((proc inferior-octave-process)
1497 (string (buffer-substring-no-properties beg end))
1498 line)
1499 (with-current-buffer inferior-octave-buffer
1500 ;; http://lists.gnu.org/archive/html/emacs-devel/2013-10/msg00095.html
1501 (compilation-forget-errors)
1502 (setq inferior-octave-output-list nil)
1503 (while (not (string-equal string ""))
1504 (if (string-match "\n" string)
1505 (setq line (substring string 0 (match-beginning 0))
1506 string (substring string (match-end 0)))
1507 (setq line string string ""))
1508 (setq inferior-octave-receive-in-progress t)
1509 (inferior-octave-send-list-and-digest (list (concat line "\n")))
1510 (while inferior-octave-receive-in-progress
1511 (accept-process-output proc))
1512 (insert-before-markers
1513 (mapconcat 'identity
1514 (append
1515 (if octave-send-echo-input (list line) (list ""))
1516 inferior-octave-output-list
1517 (list inferior-octave-output-string))
1518 "\n")))))
1519 (if octave-send-show-buffer
1520 (display-buffer inferior-octave-buffer)))
1522 (defun octave-send-buffer ()
1523 "Send current buffer to the inferior Octave process."
1524 (interactive)
1525 (octave-send-region (point-min) (point-max)))
1527 (defun octave-send-block ()
1528 "Send current Octave block to the inferior Octave process."
1529 (interactive)
1530 (save-excursion
1531 (octave-mark-block)
1532 (octave-send-region (point) (mark))))
1534 (defun octave-send-defun ()
1535 "Send current Octave function to the inferior Octave process."
1536 (interactive)
1537 (save-excursion
1538 (mark-defun)
1539 (octave-send-region (point) (mark))))
1541 (defun octave-send-line (&optional arg)
1542 "Send current Octave code line to the inferior Octave process.
1543 With positive prefix ARG, send that many lines.
1544 If `octave-send-line-auto-forward' is non-nil, go to the next unsent
1545 code line."
1546 (interactive "P")
1547 (or arg (setq arg 1))
1548 (if (> arg 0)
1549 (let (beg end)
1550 (beginning-of-line)
1551 (setq beg (point))
1552 (octave-next-code-line (- arg 1))
1553 (end-of-line)
1554 (setq end (point))
1555 (if octave-send-line-auto-forward
1556 (octave-next-code-line 1))
1557 (octave-send-region beg end))))
1559 (defun octave-eval-print-last-sexp ()
1560 "Evaluate Octave sexp before point and print value into current buffer."
1561 (interactive)
1562 (inferior-octave t)
1563 (let ((standard-output (current-buffer))
1564 (print-escape-newlines nil)
1565 (opoint (point)))
1566 (terpri)
1567 (prin1
1568 (save-excursion
1569 (forward-sexp -1)
1570 (inferior-octave-send-list-and-digest
1571 (list (concat (buffer-substring-no-properties (point) opoint)
1572 "\n")))
1573 (mapconcat 'identity inferior-octave-output-list "\n")))
1574 (terpri)))
1578 (defcustom octave-eldoc-message-style 'auto
1579 "Octave eldoc message style: auto, oneline, multiline."
1580 :type '(choice (const :tag "Automatic" auto)
1581 (const :tag "One Line" oneline)
1582 (const :tag "Multi Line" multiline))
1583 :version "24.4")
1585 ;; (FN SIGNATURE1 SIGNATURE2 ...)
1586 (defvar octave-eldoc-cache nil)
1588 (defun octave-eldoc-function-signatures (fn)
1589 (unless (equal fn (car octave-eldoc-cache))
1590 (inferior-octave-send-list-and-digest
1591 (list (format "print_usage ('%s');\n" fn)))
1592 (let (result)
1593 (dolist (line inferior-octave-output-list)
1594 (when (string-match
1595 "\\s-*\\(?:--[^:]+\\|usage\\):\\s-*\\(.*\\)$"
1596 line)
1597 (push (match-string 1 line) result)))
1598 (setq octave-eldoc-cache
1599 (cons (substring-no-properties fn)
1600 (nreverse result)))))
1601 (cdr octave-eldoc-cache))
1603 (defun octave-eldoc-function ()
1604 "A function for `eldoc-documentation-function' (which see)."
1605 (when (inferior-octave-process-live-p)
1606 (let* ((ppss (syntax-ppss))
1607 (paren-pos (cadr ppss))
1608 (fn (save-excursion
1609 (if (and paren-pos
1610 ;; PAREN-POS must be after the prompt
1611 (>= paren-pos
1612 (if (eq (get-buffer-process (current-buffer))
1613 inferior-octave-process)
1614 (process-mark inferior-octave-process)
1615 (point-min)))
1616 (or (not (eq (get-buffer-process (current-buffer))
1617 inferior-octave-process))
1618 (< (process-mark inferior-octave-process)
1619 paren-pos))
1620 (eq (char-after paren-pos) ?\())
1621 (goto-char paren-pos)
1622 (setq paren-pos nil))
1623 (when (or (< (skip-syntax-backward "-") 0) paren-pos)
1624 (thing-at-point 'symbol))))
1625 (sigs (and fn (octave-eldoc-function-signatures fn)))
1626 (oneline (mapconcat 'identity sigs
1627 (propertize " | " 'face 'warning)))
1628 (multiline (mapconcat (lambda (s) (concat "-- " s)) sigs "\n")))
1630 ;; Return the value according to style.
1631 (pcase octave-eldoc-message-style
1632 (`auto (if (< (length oneline) (window-width (minibuffer-window)))
1633 oneline
1634 multiline))
1635 (`oneline oneline)
1636 (`multiline multiline)))))
1638 (defcustom octave-help-buffer "*Octave Help*"
1639 "Buffer name for `octave-help'."
1640 :type 'string
1641 :version "24.4")
1643 ;; Used in a mode derived from help-mode.
1644 (declare-function help-button-action "help-mode" (button))
1646 (define-button-type 'octave-help-file
1647 'follow-link t
1648 'action #'help-button-action
1649 'help-function 'octave-find-definition)
1651 (define-button-type 'octave-help-function
1652 'follow-link t
1653 'action (lambda (b)
1654 (octave-help
1655 (buffer-substring (button-start b) (button-end b)))))
1657 (defvar octave-help-mode-map
1658 (let ((map (make-sparse-keymap)))
1659 (define-key map "\M-." 'octave-find-definition)
1660 (define-key map "\C-hd" 'octave-help)
1661 (define-key map "\C-ha" 'octave-lookfor)
1662 map))
1664 (define-derived-mode octave-help-mode help-mode "OctHelp"
1665 "Major mode for displaying Octave documentation."
1666 :abbrev-table nil
1667 :syntax-table octave-mode-syntax-table
1668 (eval-and-compile (require 'help-mode))
1669 ;; Don't highlight `EXAMPLE' as elisp symbols by using a regexp that
1670 ;; can never match.
1671 (setq-local help-xref-symbol-regexp "x\\`"))
1673 (defun octave-help (fn)
1674 "Display the documentation of FN."
1675 (interactive (list (octave-completing-read)))
1676 (inferior-octave-send-list-and-digest
1677 (list (format "help ('%s');\n" fn)))
1678 (let ((lines inferior-octave-output-list)
1679 (inhibit-read-only t))
1680 (when (string-match "error: \\(.*\\)$" (car lines))
1681 (error "%s" (match-string 1 (car lines))))
1682 (with-help-window octave-help-buffer
1683 (princ (mapconcat 'identity lines "\n"))
1684 (with-current-buffer octave-help-buffer
1685 ;; Bound to t so that `help-buffer' returns current buffer for
1686 ;; `help-setup-xref'.
1687 (let ((help-xref-following t))
1688 (help-setup-xref (list 'octave-help fn)
1689 (called-interactively-p 'interactive)))
1690 ;; Note: can be turned off by suppress_verbose_help_message.
1692 ;; Remove boring trailing text: Additional help for built-in functions
1693 ;; and operators ...
1694 (goto-char (point-max))
1695 (when (search-backward "\n\n\n" nil t)
1696 (goto-char (match-beginning 0))
1697 (delete-region (point) (point-max)))
1698 ;; File name highlight
1699 (goto-char (point-min))
1700 (when (re-search-forward "from the file \\(.*\\)$"
1701 (line-end-position)
1703 (let* ((file (match-string 1))
1704 (dir (file-name-directory
1705 (directory-file-name (file-name-directory file)))))
1706 (replace-match "" nil nil nil 1)
1707 (insert (substitute-command-keys "`"))
1708 ;; Include the parent directory which may be regarded as
1709 ;; the category for the FN.
1710 (help-insert-xref-button (file-relative-name file dir)
1711 'octave-help-file fn)
1712 (insert (substitute-command-keys "'"))))
1713 ;; Make 'See also' clickable.
1714 (with-syntax-table octave-mode-syntax-table
1715 (when (re-search-forward "^\\s-*See also:" nil t)
1716 (let ((end (save-excursion (re-search-forward "^\\s-*$" nil t))))
1717 (while (re-search-forward
1718 "\\s-*\\([^,\n]+?\\)\\s-*\\(?:[,]\\|[.]?$\\)" end t)
1719 (make-text-button (match-beginning 1) (match-end 1)
1720 :type 'octave-help-function)))))
1721 (octave-help-mode)))))
1723 (defun octave-lookfor (str &optional all)
1724 "Search for the string STR in all function help strings.
1725 If ALL is non-nil search the entire help string else only search the first
1726 sentence."
1727 (interactive "sSearch for: \nP")
1728 (inferior-octave-send-list-and-digest
1729 (list (format "lookfor (%s'%s');\n"
1730 (if all "'-all', " "")
1731 str)))
1732 (let ((lines inferior-octave-output-list))
1733 (when (and (stringp (car lines))
1734 (string-match "error: \\(.*\\)$" (car lines)))
1735 (error "%s" (match-string 1 (car lines))))
1736 (with-help-window octave-help-buffer
1737 (with-current-buffer octave-help-buffer
1738 (if lines
1739 (insert (mapconcat 'identity lines "\n"))
1740 (insert (format "Nothing found for \"%s\".\n" str)))
1741 ;; Bound to t so that `help-buffer' returns current buffer for
1742 ;; `help-setup-xref'.
1743 (let ((help-xref-following t))
1744 (help-setup-xref (list 'octave-lookfor str all)
1745 (called-interactively-p 'interactive)))
1746 (goto-char (point-min))
1747 (when lines
1748 (while (re-search-forward "^\\([^[:blank:]]+\\) " nil 'noerror)
1749 (make-text-button (match-beginning 1) (match-end 1)
1750 :type 'octave-help-function)))
1751 (unless all
1752 (goto-char (point-max))
1753 (insert "\nRetry with ")
1754 (insert-text-button "'-all'"
1755 'follow-link t
1756 'action #'(lambda (_b)
1757 (octave-lookfor str '-all)))
1758 (insert ".\n"))
1759 (octave-help-mode)))))
1761 (defcustom octave-source-directories nil
1762 "A list of directories for Octave sources.
1763 If the environment variable OCTAVE_SRCDIR is set, it is searched first."
1764 :type '(repeat directory)
1765 :version "24.4")
1767 (defun octave-source-directories ()
1768 (let ((srcdir (or (and inferior-octave-process
1769 (process-get inferior-octave-process 'octave-srcdir))
1770 (getenv "OCTAVE_SRCDIR"))))
1771 (if srcdir
1772 (cons srcdir octave-source-directories)
1773 octave-source-directories)))
1775 (defvar octave-find-definition-filename-function
1776 #'octave-find-definition-default-filename)
1778 (defun octave-find-definition-default-filename (name)
1779 "Default value for `octave-find-definition-filename-function'."
1780 (pcase (file-name-extension name)
1781 (`"oct"
1782 (octave-find-definition-default-filename
1783 (concat "libinterp/dldfcn/"
1784 (file-name-sans-extension (file-name-nondirectory name))
1785 ".cc")))
1786 (`"cc"
1787 (let ((file (or (locate-file name (octave-source-directories))
1788 (locate-file (file-name-nondirectory name)
1789 (octave-source-directories)))))
1790 (or (and file (file-exists-p file))
1791 (error "File `%s' not found" name))
1792 file))
1793 (`"mex"
1794 (if (yes-or-no-p (format-message "File `%s' may be binary; open? "
1795 (file-name-nondirectory name)))
1796 name
1797 (user-error "Aborted")))
1798 (_ name)))
1800 (defvar find-tag-marker-ring)
1802 (defun octave-find-definition (fn)
1803 "Find the definition of FN.
1804 Functions implemented in C++ can be found if
1805 variable `octave-source-directories' is set correctly."
1806 (interactive (list (octave-completing-read)))
1807 (require 'etags)
1808 (let ((orig (point)))
1809 (if (and (derived-mode-p 'octave-mode)
1810 (octave-goto-function-definition fn))
1811 (ring-insert find-tag-marker-ring (copy-marker orig))
1812 (inferior-octave-send-list-and-digest
1813 ;; help NAME is more verbose
1814 (list (format "\
1815 if iskeyword('%s') disp('`%s'' is a keyword') else which('%s') endif\n"
1816 fn fn fn)))
1817 (let (line file)
1818 ;; Skip garbage lines such as
1819 ;; warning: fmincg.m: possible Matlab-style ....
1820 (while (and (not file) (consp inferior-octave-output-list))
1821 (setq line (pop inferior-octave-output-list))
1822 (when (string-match "from the file \\(.*\\)$" line)
1823 (setq file (match-string 1 line))))
1824 (if (not file)
1825 (user-error "%s" (or line (format-message "`%s' not found" fn)))
1826 (ring-insert find-tag-marker-ring (point-marker))
1827 (setq file (funcall octave-find-definition-filename-function file))
1828 (when file
1829 (find-file file)
1830 (octave-goto-function-definition fn)))))))
1832 (provide 'octave)
1833 ;;; octave.el ends here