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