1 ;;; octave.el --- editing octave source files under emacs -*- lexical-binding: t; -*-
3 ;; Copyright (C) 1997, 2001-2013 Free Software Foundation, Inc.
5 ;; Author: Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
6 ;; John Eaton <jwe@octave.org>
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/>.
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.
40 (unless (fboundp 'user-error
)
41 (defalias 'user-error
'error
))
42 (unless (fboundp 'delete-consecutive-dups
)
43 (defalias 'delete-consecutive-dups
'delete-dups
)))
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
))))
51 "Editing Octave code."
52 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
55 (define-obsolete-function-alias 'octave-submit-bug-report
56 'report-emacs-bug
"24.4")
58 (define-abbrev-table 'octave-abbrev-table nil
59 "Abbrev table for Octave's reserved words.
60 Used in `octave-mode' and `inferior-octave-mode' buffers.")
62 (defvar octave-comment-char ?
#
63 "Character to start an Octave comment.")
65 (defvar octave-comment-start
(char-to-string octave-comment-char
)
66 "Octave-specific `comment-start' (which see).")
68 (defvar octave-comment-start-skip
"\\(^\\|\\S<\\)\\(?:%!\\|\\s<+\\)\\s-*"
69 "Octave-specific `comment-start-skip' (which see).")
71 (defvar octave-begin-keywords
72 '("classdef" "do" "enumeration" "events" "for" "function" "if" "methods"
73 "parfor" "properties" "switch" "try" "unwind_protect" "while"))
75 (defvar octave-else-keywords
76 '("case" "catch" "else" "elseif" "otherwise" "unwind_protect_cleanup"))
78 (defvar octave-end-keywords
79 '("endclassdef" "endenumeration" "endevents" "endfor" "endfunction" "endif"
80 "endmethods" "endparfor" "endproperties" "endswitch" "end_try_catch"
81 "end_unwind_protect" "endwhile" "until" "end"))
83 (defvar octave-reserved-words
84 (append octave-begin-keywords
87 '("break" "continue" "global" "persistent" "return"))
88 "Reserved words in Octave.")
90 (defvar octave-function-header-regexp
91 (concat "^\\s-*\\_<\\(function\\)\\_>"
92 "\\([^=;\n]*=[ \t]*\\|[ \t]*\\)\\(\\(?:\\w\\|\\s_\\)+\\)\\_>")
93 "Regexp to match an Octave function header.
94 The string `function' and its name are given by the first and third
95 parenthetical grouping.")
98 (defvar octave-mode-map
99 (let ((map (make-sparse-keymap)))
100 (define-key map
"\M-." 'octave-find-definition
)
101 (define-key map
"\M-\C-j" 'octave-indent-new-comment-line
)
102 (define-key map
"\C-c\C-p" 'octave-previous-code-line
)
103 (define-key map
"\C-c\C-n" 'octave-next-code-line
)
104 (define-key map
"\C-c\C-a" 'octave-beginning-of-line
)
105 (define-key map
"\C-c\C-e" 'octave-end-of-line
)
106 (define-key map
[remap down-list
] 'smie-down-list
)
107 (define-key map
"\C-c\M-\C-h" 'octave-mark-block
)
108 (define-key map
"\C-c]" 'smie-close-block
)
109 (define-key map
"\C-c/" 'smie-close-block
)
110 (define-key map
"\C-c;" 'octave-update-function-file-comment
)
111 (define-key map
"\C-hd" 'octave-help
)
112 (define-key map
"\C-c\C-f" 'octave-insert-defun
)
113 (define-key map
"\C-c\C-il" 'octave-send-line
)
114 (define-key map
"\C-c\C-ib" 'octave-send-block
)
115 (define-key map
"\C-c\C-if" 'octave-send-defun
)
116 (define-key map
"\C-c\C-ir" 'octave-send-region
)
117 (define-key map
"\C-c\C-is" 'octave-show-process-buffer
)
118 (define-key map
"\C-c\C-iq" 'octave-hide-process-buffer
)
119 (define-key map
"\C-c\C-ik" 'octave-kill-process
)
120 (define-key map
"\C-c\C-i\C-l" 'octave-send-line
)
121 (define-key map
"\C-c\C-i\C-b" 'octave-send-block
)
122 (define-key map
"\C-c\C-i\C-f" 'octave-send-defun
)
123 (define-key map
"\C-c\C-i\C-r" 'octave-send-region
)
124 (define-key map
"\C-c\C-i\C-s" 'octave-show-process-buffer
)
125 (define-key map
"\C-c\C-i\C-q" 'octave-hide-process-buffer
)
126 (define-key map
"\C-c\C-i\C-k" 'octave-kill-process
)
128 "Keymap used in Octave mode.")
132 (easy-menu-define octave-mode-menu octave-mode-map
133 "Menu for Octave mode."
135 ["Split Line at Point" octave-indent-new-comment-line t
]
136 ["Previous Code Line" octave-previous-code-line t
]
137 ["Next Code Line" octave-next-code-line t
]
138 ["Begin of Line" octave-beginning-of-line t
]
139 ["End of Line" octave-end-of-line t
]
140 ["Mark Block" octave-mark-block t
]
141 ["Close Block" smie-close-block t
]
143 ["Start Octave Process" run-octave t
]
144 ["Documentation Lookup" info-lookup-symbol t
]
145 ["Help on Function" octave-help t
]
146 ["Find Function Definition" octave-find-definition t
]
147 ["Insert Function" octave-insert-defun
t]
148 ["Update Function File Comment" octave-update-function-file-comment t
]
150 ["Function Syntax Hints" (call-interactively
151 (if (fboundp 'eldoc-post-insert-mode
)
152 'eldoc-post-insert-mode
154 :style toggle
:selected
(or eldoc-post-insert-mode eldoc-mode
)
155 :help
"Display function signatures after typing `SPC' or `('"]
156 ["Delimiter Matching" show-paren-mode
157 :style toggle
:selected show-paren-mode
158 :help
"Highlight matched pairs such as `if ... end'"
159 :visible
(fboundp 'smie--matching-block-data
)]
160 ["Auto Fill" auto-fill-mode
161 :style toggle
:selected auto-fill-function
162 :help
"Automatic line breaking"]
163 ["Electric Layout" electric-layout-mode
164 :style toggle
:selected electric-layout-mode
165 :help
"Automatically insert newlines around some chars"]
168 ["Send Current Line" octave-send-line t
]
169 ["Send Current Block" octave-send-block t
]
170 ["Send Current Function" octave-send-defun
t]
171 ["Send Region" octave-send-region t
]
172 ["Show Process Buffer" octave-show-process-buffer t
]
173 ["Hide Process Buffer" octave-hide-process-buffer t
]
174 ["Kill Process" octave-kill-process t
])
176 ["Customize Octave" (customize-group 'octave
) t
]
177 ["Submit Bug Report" report-emacs-bug t
]))
179 (defvar octave-mode-syntax-table
180 (let ((table (make-syntax-table)))
181 (modify-syntax-entry ?
\r " " table
)
182 (modify-syntax-entry ?
+ "." table
)
183 (modify-syntax-entry ?-
"." table
)
184 (modify-syntax-entry ?
= "." table
)
185 (modify-syntax-entry ?
* "." table
)
186 (modify-syntax-entry ?
/ "." table
)
187 (modify-syntax-entry ?
> "." table
)
188 (modify-syntax-entry ?
< "." table
)
189 (modify-syntax-entry ?
& "." table
)
190 (modify-syntax-entry ?|
"." table
)
191 (modify-syntax-entry ?
! "." table
)
192 (modify-syntax-entry ?
\\ "." table
)
193 (modify-syntax-entry ?
\' "." table
)
194 (modify-syntax-entry ?\
` "." table
)
195 (modify-syntax-entry ?.
"." table
)
196 (modify-syntax-entry ?
\" "\"" table
)
197 (modify-syntax-entry ?_
"_" table
)
198 ;; The "b" flag only applies to the second letter of the comstart
199 ;; and the first letter of the comend, i.e. the "4b" below is ineffective.
200 ;; If we try to put `b' on the single-line comments, we get a similar
201 ;; problem where the % and # chars appear as first chars of the 2-char
202 ;; comend, so the multi-line ender is also turned into style-b.
203 ;; So we need the new "c" comment style.
204 (modify-syntax-entry ?\%
"< 13" table
)
205 (modify-syntax-entry ?\
# "< 13" table
)
206 (modify-syntax-entry ?\
{ "(} 2c" table
)
207 (modify-syntax-entry ?\
} "){ 4c" table
)
208 (modify-syntax-entry ?
\n ">" table
)
210 "Syntax table in use in `octave-mode' buffers.")
212 (defcustom octave-font-lock-texinfo-comment t
213 "Control whether to highlight the texinfo comment block."
218 (defcustom octave-blink-matching-block t
219 "Control the blinking of matching Octave block keywords.
220 Non-nil means show matching begin of block when inserting a space,
221 newline or semicolon after an else or end keyword."
225 (defcustom octave-block-offset
2
226 "Extra indentation applied to statements in Octave block structures."
230 (defvar octave-block-comment-start
231 (concat (make-string 2 octave-comment-char
) " ")
232 "String to insert to start a new Octave comment on an empty line.")
234 (defcustom octave-continuation-offset
4
235 "Extra indentation applied to Octave continuation lines."
240 (defconst octave-continuation-marker-regexp
"\\\\\\|\\.\\.\\."))
242 (defvar octave-continuation-regexp
243 (concat "[^#%\n]*\\(" octave-continuation-marker-regexp
244 "\\)\\s-*\\(\\s<.*\\)?$"))
246 ;; Char \ is considered a bad decision for continuing a line.
247 (defconst octave-continuation-string
"..."
248 "Character string used for Octave continuation lines.")
250 (defvar octave-mode-imenu-generic-expression
253 (list nil octave-function-header-regexp
3))
254 "Imenu expression for Octave mode. See `imenu-generic-expression'.")
256 (defcustom octave-mode-hook nil
257 "Hook to be run when Octave mode is started."
261 (defcustom octave-send-show-buffer t
262 "Non-nil means display `inferior-octave-buffer' after sending to it."
266 (defcustom octave-send-line-auto-forward t
267 "Control auto-forward after sending to the inferior Octave process.
268 Non-nil means always go to the next Octave code line after sending."
272 (defcustom octave-send-echo-input t
273 "Non-nil means echo input sent to the inferior Octave process."
282 ;; Use '__operators__' in Octave REPL to get a full list.
283 (defconst octave-operator-table
284 '((assoc ";" "\n") (assoc ",") ; The doc claims they have equal precedence!?
285 (right "=" "+=" "-=" "*=" "/=")
286 (assoc "&&") (assoc "||") ; The doc claims they have equal precedence!?
287 (assoc "&") (assoc "|") ; The doc claims they have equal precedence!?
288 (nonassoc "<" "<=" "==" ">=" ">" "!=" "~=")
289 (nonassoc ":") ;No idea what this is.
291 (assoc "*" "/" "\\" ".\\" ".*" "./")
293 (nonassoc "++" "--" "!" "~") ;And unary "+" and "-".
294 (right "^" "**" ".^" ".**")
295 ;; It's not really an operator, but for indentation purposes it
296 ;; could be convenient to treat it as one.
299 (defconst octave-smie-bnf-table
301 ;; We can't distinguish the first element in a sequence with
302 ;; precedence grammars, so we can't distinguish the condition
303 ;; if the `if' from the subsequent body, for example.
304 ;; This has to be done later in the indentation rules.
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.
310 ("try" exp
"catch" exp
"end_try_catch")
311 ("try" exp
"catch" exp
"end")
312 ("unwind_protect" exp
313 "unwind_protect_cleanup" exp
"end_unwind_protect")
314 ("unwind_protect" exp
"unwind_protect_cleanup" exp
"end")
317 ("parfor" exp
"endparfor")
319 ("do" exp
"until" atom
)
320 ("while" exp
"endwhile")
323 ("if" exp
"else" exp
"endif")
324 ("if" exp
"elseif" exp
"else" exp
"endif")
325 ("if" exp
"elseif" exp
"elseif" exp
"else" exp
"endif")
326 ("if" exp
"elseif" exp
"elseif" exp
"else" exp
"end")
327 ("switch" exp
"case" exp
"endswitch")
328 ("switch" exp
"case" exp
"otherwise" exp
"endswitch")
329 ("switch" exp
"case" exp
"case" exp
"otherwise" exp
"endswitch")
330 ("switch" exp
"case" exp
"case" exp
"otherwise" exp
"end")
331 ("function" exp
"endfunction")
332 ("function" exp
"end")
333 ("enumeration" exp
"endenumeration")
334 ("enumeration" exp
"end")
335 ("events" exp
"endevents")
337 ("methods" exp
"endmethods")
338 ("methods" exp
"end")
339 ("properties" exp
"endproperties")
340 ("properties" exp
"end")
341 ("classdef" exp
"endclassdef")
342 ("classdef" exp
"end"))
343 ;; (fundesc (atom "=" atom))
346 (defconst octave-smie-grammar
349 (smie-bnf->prec2 octave-smie-bnf-table
352 (smie-precs->prec2 octave-operator-table
))))
354 ;; Tokenizing needs to be refined so that ";;" is treated as two
355 ;; tokens and also so as to recognize the \n separator (and
356 ;; corresponding continuation lines).
358 (defconst octave-operator-regexp
359 (regexp-opt (apply 'append
(mapcar 'cdr octave-operator-table
))))
361 (defun octave-smie-backward-token ()
363 (forward-comment (- (point)))
365 ((and (not (eq (char-before) ?\
;)) ;Coalesce ";" and "\n".
366 (> pos
(line-end-position))
367 (if (looking-back octave-continuation-marker-regexp
(- (point) 3))
369 (goto-char (match-beginning 0))
370 (forward-comment (- (point)))
373 ;; Ignore it if it's within parentheses.
374 (let ((ppss (syntax-ppss)))
375 (not (and (nth 1 ppss
)
376 (eq ?\
( (char-after (nth 1 ppss
)))))))
377 (skip-chars-forward " \t")
378 ;; Why bother distinguishing \n and ;?
380 ((and (looking-back octave-operator-regexp
(- (point) 3) 'greedy
)
381 ;; Don't mistake a string quote for a transpose.
382 (not (looking-back "\\s\"" (1- (point)))))
383 (goto-char (match-beginning 0))
384 (match-string-no-properties 0))
386 (smie-default-backward-token)))))
388 (defun octave-smie-forward-token ()
389 (skip-chars-forward " \t")
390 (when (looking-at (eval-when-compile
391 (concat "\\(" octave-continuation-marker-regexp
392 "\\)[ \t]*\\($\\|[%#]\\)")))
393 (goto-char (match-end 1))
396 ((and (looking-at "[%#\n]")
397 (not (or (save-excursion (skip-chars-backward " \t")
398 ;; Only add implicit ; when needed.
399 (or (bolp) (eq (char-before) ?\
;)))
400 ;; Ignore it if it's within parentheses.
401 (let ((ppss (syntax-ppss)))
403 (eq ?\
( (char-after (nth 1 ppss
))))))))
404 (if (eolp) (forward-char 1) (forward-comment 1))
405 ;; Why bother distinguishing \n and ;?
407 ((progn (forward-comment (point-max)) nil
))
408 ((looking-at ";[ \t]*\\($\\|[%#]\\)")
409 ;; Combine the ; with the subsequent \n.
410 (goto-char (match-beginning 1))
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 (smie-default-forward-token))))
421 (defun octave-smie-rules (kind token
)
422 (pcase (cons kind token
)
423 ;; We could set smie-indent-basic instead, but that would have two
425 ;; - changes to octave-block-offset wouldn't take effect immediately.
426 ;; - edebug wouldn't show the use of this variable.
427 (`(:elem . basic
) octave-block-offset
)
428 ;; Since "case" is in the same BNF rules as switch..end, SMIE by default
429 ;; aligns it with "switch".
430 (`(:before .
"case") (if (not (smie-rule-sibling-p)) octave-block-offset
))
432 (if (smie-rule-parent-p "classdef" "events" "enumeration" "function" "if"
433 "while" "else" "elseif" "for" "parfor"
434 "properties" "methods" "otherwise" "case"
435 "try" "catch" "unwind_protect"
436 "unwind_protect_cleanup")
437 (smie-rule-parent octave-block-offset
)
438 ;; For (invalid) code between switch and case.
439 ;; (if (smie-parent-p "switch") 4)
442 (defun octave-indent-comment ()
443 "A function for `smie-indent-functions' (which see)."
445 (back-to-indentation)
447 ((octave-in-string-or-comment-p) nil
)
448 ((looking-at-p "\\(\\s<\\)\\1\\{2,\\}")
450 ;; Exclude %{, %} and %!.
451 ((and (looking-at-p "\\s<\\(?:[^{}!]\\|$\\)")
452 (not (looking-at-p "\\(\\s<\\)\\1")))
453 (comment-choose-indent)))))
456 (defvar octave-font-lock-keywords
458 ;; Fontify all builtin keywords.
459 (cons (concat "\\_<\\("
460 (regexp-opt octave-reserved-words
)
462 'font-lock-keyword-face
)
463 ;; Note: 'end' also serves as the last index in an indexing expression.
464 ;; Ref: http://www.mathworks.com/help/matlab/ref/end.html
465 (list (lambda (limit)
466 (while (re-search-forward "\\_<end\\_>" limit
'move
)
467 (let ((beg (match-beginning 0))
469 (unless (octave-in-string-or-comment-p)
474 (when (memq (char-after) '(?\
( ?\
[ ?\
{))
475 (put-text-property beg end
'face nil
))
477 (error (goto-char end
))))))
479 ;; Fontify all operators.
480 (cons octave-operator-regexp
'font-lock-builtin-face
)
481 ;; Fontify all function declarations.
482 (list octave-function-header-regexp
483 '(1 font-lock-keyword-face
)
484 '(3 font-lock-function-name-face nil t
)))
485 "Additional Octave expressions to highlight.")
487 (defun octave-syntax-propertize-function (start end
)
489 (octave-syntax-propertize-sqs end
)
490 (funcall (syntax-propertize-rules
491 ("\\\\" (0 (when (eq (nth 3 (save-excursion
492 (syntax-ppss (match-beginning 0))))
494 (string-to-syntax "\\"))))
495 ;; Try to distinguish the string-quotes from the transpose-quotes.
496 ("\\(?:^\\|[[({,; ]\\)\\('\\)"
497 (1 (prog1 "\"'" (octave-syntax-propertize-sqs end
)))))
500 (defun octave-syntax-propertize-sqs (end)
501 "Propertize the content/end of single-quote strings."
502 (when (eq (nth 3 (syntax-ppss)) ?
\')
504 (when (re-search-forward
505 "\\(?:\\=\\|[^']\\)\\(?:''\\)*\\('\\)\\($\\|[^']\\)" end
'move
)
506 (goto-char (match-beginning 2))
507 (when (eq (char-before (match-beginning 1)) ?
\\)
508 ;; Backslash cannot escape a single quote.
509 (put-text-property (1- (match-beginning 1)) (match-beginning 1)
510 'syntax-table
(string-to-syntax ".")))
511 (put-text-property (match-beginning 1) (match-end 1)
512 'syntax-table
(string-to-syntax "\"'")))))
514 (defvar electric-layout-rules
)
517 (define-derived-mode octave-mode prog-mode
"Octave"
518 "Major mode for editing Octave code.
520 Octave is a high-level language, primarily intended for numerical
521 computations. It provides a convenient command line interface
522 for solving linear and nonlinear problems numerically. Function
523 definitions can also be stored in files and used in batch mode."
524 :abbrev-table octave-abbrev-table
526 (smie-setup octave-smie-grammar
#'octave-smie-rules
527 :forward-token
#'octave-smie-forward-token
528 :backward-token
#'octave-smie-backward-token
)
529 (setq-local smie-indent-basic
'octave-block-offset
)
530 (add-hook 'smie-indent-functions
#'octave-indent-comment nil t
)
532 (setq-local smie-blink-matching-triggers
533 (cons ?\
; smie-blink-matching-triggers))
534 (unless octave-blink-matching-block
535 (remove-hook 'post-self-insert-hook
#'smie-blink-matching-open
'local
))
537 (setq-local electric-indent-chars
538 (cons ?\
; electric-indent-chars))
539 ;; IIUC matlab-mode takes the opposite approach: it makes RET insert
540 ;; a ";" at those places where it's correct (i.e. outside of parens).
541 (setq-local electric-layout-rules
'((?\
; . after)))
543 (setq-local comment-start octave-comment-start
)
544 (setq-local comment-end
"")
545 (setq-local comment-start-skip octave-comment-start-skip
)
546 (setq-local comment-add
1)
548 (setq-local parse-sexp-ignore-comments t
)
549 (setq-local paragraph-start
(concat "\\s-*$\\|" page-delimiter
))
550 (setq-local paragraph-separate paragraph-start
)
551 (setq-local paragraph-ignore-fill-prefix t
)
552 (setq-local fill-paragraph-function
'octave-fill-paragraph
)
554 (setq-local fill-nobreak-predicate
555 (lambda () (eq (octave-in-string-p) ?
')))
556 (add-function :around
(local 'comment-line-break-function
)
557 #'octave--indent-new-comment-line
)
559 (setq font-lock-defaults
'(octave-font-lock-keywords))
561 (setq-local syntax-propertize-function
#'octave-syntax-propertize-function
)
563 (setq-local imenu-generic-expression octave-mode-imenu-generic-expression
)
564 (setq-local imenu-case-fold-search nil
)
566 (add-hook 'completion-at-point-functions
'octave-completion-at-point nil t
)
567 (add-hook 'before-save-hook
'octave-sync-function-file-names nil t
)
568 (setq-local beginning-of-defun-function
'octave-beginning-of-defun
)
569 (and octave-font-lock-texinfo-comment
(octave-font-lock-texinfo-comment))
570 (setq-local eldoc-documentation-function
'octave-eldoc-function
)
572 (easy-menu-add octave-mode-menu
))
575 (defcustom inferior-octave-program
"octave"
576 "Program invoked by `inferior-octave'."
580 (defcustom inferior-octave-buffer
"*Inferior Octave*"
581 "Name of buffer for running an inferior Octave process."
585 (defcustom inferior-octave-prompt
586 "\\(^octave\\(\\|.bin\\|.exe\\)\\(-[.0-9]+\\)?\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ "
587 "Regexp to match prompts for the inferior Octave process."
591 (defcustom inferior-octave-prompt-read-only comint-prompt-read-only
592 "If non-nil, the Octave prompt is read only.
593 See `comint-prompt-read-only' for details."
598 (defcustom inferior-octave-startup-file
599 (convert-standard-filename
600 (concat "~/.emacs-" (file-name-nondirectory inferior-octave-program
)))
601 "Name of the inferior Octave startup file.
602 The contents of this file are sent to the inferior Octave process on
604 :type
'(choice (const :tag
"None" nil
) file
)
608 (defcustom inferior-octave-startup-args nil
609 "List of command line arguments for the inferior Octave process.
610 For example, for suppressing the startup message and using `traditional'
611 mode, set this to (\"-q\" \"--traditional\")."
612 :type
'(repeat string
)
615 (defcustom inferior-octave-mode-hook nil
616 "Hook to be run when Inferior Octave mode is started."
620 (defvar inferior-octave-process nil
)
622 (defvar inferior-octave-mode-map
623 (let ((map (make-sparse-keymap)))
624 (set-keymap-parent map comint-mode-map
)
625 (define-key map
"\M-." 'octave-find-definition
)
626 (define-key map
"\t" 'completion-at-point
)
627 (define-key map
"\C-hd" 'octave-help
)
628 ;; Same as in `shell-mode'.
629 (define-key map
"\M-?" 'comint-dynamic-list-filename-completions
)
630 (define-key map
"\C-c\C-l" 'inferior-octave-dynamic-list-input-ring
)
631 (define-key map
[menu-bar inout list-history
]
632 '("List Input History" . inferior-octave-dynamic-list-input-ring
))
634 "Keymap used in Inferior Octave mode.")
636 (defvar inferior-octave-mode-syntax-table
637 (let ((table (make-syntax-table octave-mode-syntax-table
)))
639 "Syntax table in use in inferior-octave-mode buffers.")
641 (defvar inferior-octave-font-lock-keywords
643 (cons inferior-octave-prompt
'font-lock-type-face
))
644 ;; Could certainly do more font locking in inferior Octave ...
645 "Additional expressions to highlight in Inferior Octave mode.")
647 (defvar inferior-octave-output-list nil
)
648 (defvar inferior-octave-output-string nil
)
649 (defvar inferior-octave-receive-in-progress nil
)
651 (define-obsolete-variable-alias 'inferior-octave-startup-hook
652 'inferior-octave-mode-hook
"24.4")
654 (defvar inferior-octave-dynamic-complete-functions
655 '(inferior-octave-completion-at-point comint-filename-completion
)
656 "List of functions called to perform completion for inferior Octave.
657 This variable is used to initialize `comint-dynamic-complete-functions'
658 in the Inferior Octave buffer.")
660 (defvar info-lookup-mode
)
662 (define-derived-mode inferior-octave-mode comint-mode
"Inferior Octave"
663 "Major mode for interacting with an inferior Octave process."
664 :abbrev-table octave-abbrev-table
665 (setq comint-prompt-regexp inferior-octave-prompt
)
667 (setq-local comment-start octave-comment-start
)
668 (setq-local comment-end
"")
669 (setq comment-column
32)
670 (setq-local comment-start-skip octave-comment-start-skip
)
672 (setq font-lock-defaults
'(inferior-octave-font-lock-keywords nil nil
))
674 (setq-local info-lookup-mode
'octave-mode
)
675 (setq-local eldoc-documentation-function
'octave-eldoc-function
)
677 (setq comint-input-ring-file-name
678 (or (getenv "OCTAVE_HISTFILE") "~/.octave_hist")
679 comint-input-ring-size
(or (getenv "OCTAVE_HISTSIZE") 1024))
680 (setq-local comint-dynamic-complete-functions
681 inferior-octave-dynamic-complete-functions
)
682 (setq-local comint-prompt-read-only inferior-octave-prompt-read-only
)
683 (add-hook 'comint-input-filter-functions
684 'inferior-octave-directory-tracker nil t
)
685 ;; http://thread.gmane.org/gmane.comp.gnu.octave.general/48572
686 (add-hook 'window-configuration-change-hook
687 'inferior-octave-track-window-width-change nil t
)
688 (comint-read-input-ring t
))
691 (defun inferior-octave (&optional arg
)
692 "Run an inferior Octave process, I/O via `inferior-octave-buffer'.
693 This buffer is put in Inferior Octave mode. See `inferior-octave-mode'.
695 Unless ARG is non-nil, switches to this buffer.
697 The elements of the list `inferior-octave-startup-args' are sent as
698 command line arguments to the inferior Octave process on startup.
700 Additional commands to be executed on startup can be provided either in
701 the file specified by `inferior-octave-startup-file' or by the default
702 startup file, `~/.emacs-octave'."
704 (let ((buffer (get-buffer-create inferior-octave-buffer
)))
706 (pop-to-buffer buffer
))
707 (unless (comint-check-proc buffer
)
708 (with-current-buffer buffer
709 (inferior-octave-startup)
710 (inferior-octave-mode)))
714 (defalias 'run-octave
'inferior-octave
)
716 (defun inferior-octave-startup ()
717 "Start an inferior Octave process."
718 (let ((proc (comint-exec-1
719 (substring inferior-octave-buffer
1 -
1)
720 inferior-octave-buffer
721 inferior-octave-program
722 (append (list "-i" "--no-line-editing")
723 ;; --no-gui is introduced in Octave > 3.7
724 (when (zerop (process-file inferior-octave-program
726 "--no-gui" "--help"))
728 inferior-octave-startup-args
))))
729 (set-process-filter proc
'inferior-octave-output-digest
)
730 (setq inferior-octave-process proc
731 inferior-octave-output-list nil
732 inferior-octave-output-string nil
733 inferior-octave-receive-in-progress t
)
735 ;; This may look complicated ... However, we need to make sure that
736 ;; we additional startup code only AFTER Octave is ready (otherwise,
737 ;; output may be mixed up). Hence, we need to digest the Octave
738 ;; output to see when it issues a prompt.
739 (while inferior-octave-receive-in-progress
740 (or (process-live-p inferior-octave-process
)
741 (error "Process `%s' died" inferior-octave-process
))
742 (accept-process-output inferior-octave-process
))
743 (goto-char (point-max))
744 (set-marker (process-mark proc
) (point))
745 (insert-before-markers
747 (if (not (bobp)) "\f\n")
748 (if inferior-octave-output-list
750 'identity inferior-octave-output-list
"\n")
753 ;; An empty secondary prompt, as e.g. obtained by '--braindead',
755 (inferior-octave-send-list-and-digest (list "PS2\n"))
756 (when (string-match "\\(PS2\\|ans\\) = *$"
757 (car inferior-octave-output-list
))
758 (inferior-octave-send-list-and-digest (list "PS2 (\"> \");\n")))
760 (inferior-octave-send-list-and-digest
761 (list "disp(getenv(\"OCTAVE_SRCDIR\"))\n"))
762 (process-put proc
'octave-srcdir
763 (unless (equal (car inferior-octave-output-list
) "")
764 (car inferior-octave-output-list
)))
766 ;; O.K., now we are ready for the Inferior Octave startup commands.
767 (inferior-octave-send-list-and-digest
769 (unless (equal inferior-octave-output-string
">> ")
770 "PS1 (\"\\\\s> \");\n")
771 (when (and inferior-octave-startup-file
772 (file-exists-p inferior-octave-startup-file
))
773 (format "source (\"%s\");\n" inferior-octave-startup-file
))))
774 (when inferior-octave-output-list
775 (insert-before-markers
776 (mapconcat 'identity inferior-octave-output-list
"\n")))
778 ;; And finally, everything is back to normal.
779 (set-process-filter proc
'comint-output-filter
)
780 ;; Just in case, to be sure a cd in the startup file
781 ;; won't have detrimental effects.
782 (inferior-octave-resync-dirs)
783 ;; Generate a proper prompt, which is critical to
784 ;; `comint-history-isearch-backward-regexp'. Bug#14433.
785 (comint-send-string proc
"\n")))
787 (defvar inferior-octave-completion-table
789 ;; Use cache to avoid repetitive computation of completions due to
790 ;; bug#11906 - http://debbugs.gnu.org/11906 - which may cause
791 ;; noticeable delay. CACHE: (CMD TIME VALUE).
793 (completion-table-dynamic
795 (unless (and (equal (car cache
) command
)
796 (< (float-time) (+ 5 (cadr cache
))))
797 (inferior-octave-send-list-and-digest
798 (list (concat "completion_matches (\"" command
"\");\n")))
799 (setq cache
(list command
(float-time)
800 (delete-consecutive-dups
801 (sort inferior-octave-output-list
'string-lessp
)))))
802 (car (cddr cache
))))))
804 (defun inferior-octave-completion-at-point ()
805 "Return the data to complete the Octave symbol at point."
806 ;; http://debbugs.gnu.org/14300
807 (let* ((filecomp (string-match-p
808 "/" (or (comint--match-partial-filename) "")))
813 (skip-syntax-backward "w_" (comint-line-beginning-position))
815 (when (and start
(> end start
))
816 (list start end
(completion-table-in-turn
817 inferior-octave-completion-table
818 'comint-completion-file-name-table
)))))
820 (define-obsolete-function-alias 'inferior-octave-complete
821 'completion-at-point
"24.1")
823 (defun inferior-octave-dynamic-list-input-ring ()
824 "List the buffer's input history in a help buffer."
825 ;; We cannot use `comint-dynamic-list-input-ring', because it replaces
826 ;; "completion" by "history reference" ...
828 (if (or (not (ring-p comint-input-ring
))
829 (ring-empty-p comint-input-ring
))
830 (message "No history")
832 (history-buffer " *Input History*")
833 (index (1- (ring-length comint-input-ring
)))
834 (conf (current-window-configuration)))
835 ;; We have to build up a list ourselves from the ring vector.
837 (setq history
(cons (ring-ref comint-input-ring index
) history
)
839 ;; Change "completion" to "history reference"
840 ;; to make the display accurate.
841 (with-output-to-temp-buffer history-buffer
842 (display-completion-list history
)
843 (set-buffer history-buffer
))
844 (message "Hit space to flush")
845 (let ((ch (read-event)))
847 (set-window-configuration conf
)
848 (setq unread-command-events
(list ch
)))))))
850 (defun inferior-octave-output-digest (_proc string
)
851 "Special output filter for the inferior Octave process.
852 Save all output between newlines into `inferior-octave-output-list', and
853 the rest to `inferior-octave-output-string'."
854 (setq string
(concat inferior-octave-output-string string
))
855 (while (string-match "\n" string
)
856 (setq inferior-octave-output-list
857 (append inferior-octave-output-list
858 (list (substring string
0 (match-beginning 0))))
859 string
(substring string
(match-end 0))))
860 (if (string-match inferior-octave-prompt string
)
861 (setq inferior-octave-receive-in-progress nil
))
862 (setq inferior-octave-output-string string
))
864 (defun inferior-octave-check-process ()
865 (or (and inferior-octave-process
866 (process-live-p inferior-octave-process
))
867 (error (substitute-command-keys
868 "No inferior octave process running. Type \\[run-octave]"))))
870 (defun inferior-octave-send-list-and-digest (list)
871 "Send LIST to the inferior Octave process and digest the output.
872 The elements of LIST have to be strings and are sent one by one. All
873 output is passed to the filter `inferior-octave-output-digest'."
874 (inferior-octave-check-process)
875 (let* ((proc inferior-octave-process
)
876 (filter (process-filter proc
))
878 (set-process-filter proc
'inferior-octave-output-digest
)
879 (setq inferior-octave-output-list nil
)
881 (while (setq string
(car list
))
882 (setq inferior-octave-output-string nil
883 inferior-octave-receive-in-progress t
)
884 (comint-send-string proc string
)
885 (while inferior-octave-receive-in-progress
886 (accept-process-output proc
))
887 (setq list
(cdr list
)))
888 (set-process-filter proc filter
))))
890 (defvar inferior-octave-directory-tracker-resync nil
)
891 (make-variable-buffer-local 'inferior-octave-directory-tracker-resync
)
893 (defun inferior-octave-directory-tracker (string)
894 "Tracks `cd' commands issued to the inferior Octave process.
895 Use \\[inferior-octave-resync-dirs] to resync if Emacs gets confused."
896 (when inferior-octave-directory-tracker-resync
897 (setq inferior-octave-directory-tracker-resync nil
)
898 (inferior-octave-resync-dirs))
900 ((string-match "^[ \t]*cd[ \t;]*$" string
)
902 ((string-match "^[ \t]*cd[ \t]+\\([^ \t\n;]*\\)[ \t\n;]*" string
)
904 (cd (match-string 1 string
))
905 (error (setq inferior-octave-directory-tracker-resync t
)
907 (error-message-string err
)
908 (match-string 1 string
)))))))
910 (defun inferior-octave-resync-dirs ()
911 "Resync the buffer's idea of the current directory.
912 This command queries the inferior Octave process about its current
913 directory and makes this the current buffer's default directory."
915 (inferior-octave-send-list-and-digest '("disp (pwd ())\n"))
916 (cd (car inferior-octave-output-list
)))
918 (defcustom inferior-octave-minimal-columns
80
919 "The minimal column width for the inferior Octave process."
924 (defvar inferior-octave-last-column-width nil
)
926 (defun inferior-octave-track-window-width-change ()
927 ;; http://thread.gmane.org/gmane.comp.gnu.octave.general/48572
928 (let ((width (max inferior-octave-minimal-columns
(window-width))))
929 (unless (eq inferior-octave-last-column-width width
)
930 (setq-local inferior-octave-last-column-width width
)
931 (when (and inferior-octave-process
932 (process-live-p inferior-octave-process
))
933 (inferior-octave-send-list-and-digest
934 (list (format "putenv(\"COLUMNS\", \"%s\");\n" width
)))))))
937 ;;; Miscellaneous useful functions
939 (defun octave-in-comment-p ()
940 "Return non-nil if point is inside an Octave comment."
941 (nth 4 (syntax-ppss)))
943 (defun octave-in-string-p ()
944 "Return non-nil if point is inside an Octave string."
945 (nth 3 (syntax-ppss)))
947 (defun octave-in-string-or-comment-p ()
948 "Return non-nil if point is inside an Octave string or comment."
949 (nth 8 (syntax-ppss)))
951 (defun octave-looking-at-kw (regexp)
952 "Like `looking-at', but sets `case-fold-search' nil."
953 (let ((case-fold-search nil
))
954 (looking-at regexp
)))
956 (defun octave-maybe-insert-continuation-string ()
957 (if (or (octave-in-comment-p)
960 (looking-at octave-continuation-regexp
)))
962 (delete-horizontal-space)
963 (insert (concat " " octave-continuation-string
))))
965 (defun octave-completing-read ()
966 (let ((def (or (thing-at-point 'symbol
)
968 (skip-syntax-backward "-(")
969 (thing-at-point 'symbol
)))))
971 (format (if def
"Function (default %s): "
973 inferior-octave-completion-table
974 nil nil nil nil def
)))
976 (defun octave-goto-function-definition (fn)
977 "Go to the function definition of FN in current buffer."
978 (goto-char (point-min))
982 (while (and (not done
) (re-search-forward re nil t
))
983 (when (and (equal (match-string sub
) fn
)
984 (not (nth 8 (syntax-ppss))))
986 (or done
(goto-char (point-min)))))))
987 (pcase (file-name-extension (buffer-file-name))
988 (`"cc" (funcall search
989 "\\_<DEFUN\\(?:_DLD\\)?\\s-*(\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)" 1))
990 (t (funcall search octave-function-header-regexp
3)))))
992 (defun octave-function-file-p ()
993 "Return non-nil if the first token is \"function\".
994 The value is (START END NAME-START NAME-END) of the function."
996 (goto-char (point-min))
997 (when (equal (funcall smie-forward-token-function
) "function")
999 (let* ((start (point))
1000 (end (progn (forward-sexp 1) (point)))
1003 (re-search-forward octave-function-header-regexp
1005 (list (match-beginning 3) (match-end 3)))))
1006 (cons start
(cons end name
))))))
1008 ;; Like forward-comment but stop at non-comment blank
1009 (defun octave-skip-comment-forward (limit)
1010 (let ((ppss (syntax-ppss)))
1012 (goto-char (nth 8 ppss
))
1013 (goto-char (or (comment-search-forward limit t
) (point)))))
1014 (while (and (< (point) limit
) (looking-at-p "\\s<"))
1015 (forward-comment 1)))
1017 ;;; First non-copyright comment block
1018 (defun octave-function-file-comment ()
1019 "Beginning and end positions of the function file comment."
1021 (goto-char (point-min))
1022 ;; Copyright block: octave/libinterp/parse-tree/lex.ll around line 1634
1023 (while (save-excursion
1024 (when (comment-search-forward (point-max) t
)
1025 (when (eq (char-after) ?\
{) ; case of block comment
1027 (skip-syntax-forward "-")
1028 (let ((case-fold-search t
))
1029 (looking-at-p "\\(?:copyright\\|author\\)\\_>"))))
1030 (octave-skip-comment-forward (point-max)))
1031 (let ((beg (comment-search-forward (point-max) t
)))
1034 (octave-skip-comment-forward (point-max))
1035 (list beg
(point))))))
1037 (defun octave-sync-function-file-names ()
1038 "Ensure function name agree with function file name.
1039 See Info node `(octave)Function Files'."
1041 (when buffer-file-name
1042 (pcase-let ((`(,start
,_end
,name-start
,name-end
)
1043 (octave-function-file-p)))
1044 (when (and start name-start
)
1045 (let* ((func (buffer-substring name-start name-end
))
1046 (file (file-name-sans-extension
1047 (file-name-nondirectory buffer-file-name
)))
1048 (help-form (format "\
1049 a: Use function name `%s'
1050 b: Use file name `%s'
1051 q: Don't fix\n" func file
))
1052 (c (unless (equal file func
)
1053 (save-window-excursion
1056 "Which name to use? (a/b/q) " '(?a ?b ?q
))))))
1058 (`?a
(let ((newname (expand-file-name
1059 (concat func
(file-name-extension
1060 buffer-file-name t
)))))
1061 (when (or (not (file-exists-p newname
))
1063 (format "Target file %s exists; proceed? " newname
)))
1064 (when (file-exists-p buffer-file-name
)
1065 (rename-file buffer-file-name newname t
))
1066 (set-visited-file-name newname
))))
1067 (`?b
(save-excursion
1068 (goto-char name-start
)
1069 (delete-region name-start name-end
)
1070 (insert file
)))))))))
1072 (defun octave-update-function-file-comment (beg end
)
1073 "Query replace function names in function file comment."
1076 (barf-if-buffer-read-only)
1078 (list (region-beginning) (region-end))
1079 (or (octave-function-file-comment)
1080 (error "No function file comment found")))))
1082 (let* ((bounds (or (octave-function-file-p)
1083 (error "Not in a function file buffer")))
1084 (func (if (cddr bounds
)
1085 (apply #'buffer-substring
(cddr bounds
))
1086 (error "Function name not found")))
1089 (when (re-search-forward
1090 "[=}]\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)\\_>"
1091 (min (line-end-position 4) end
)
1094 (old-func (read-string (format (if old-func
1095 "Name to replace (default %s): "
1096 "Name to replace: ")
1099 (if (and func old-func
(not (equal func old-func
)))
1100 (perform-replace old-func func
'query
1101 nil
'delimited nil nil beg end
)
1102 (message "Function names match")))))
1104 (defface octave-function-comment-block
1105 '((t (:inherit font-lock-doc-face
)))
1106 "Face used to highlight function comment block."
1109 (eval-when-compile (require 'texinfo
))
1111 (defun octave-font-lock-texinfo-comment ()
1116 (if (numberp (nth 1 kw
))
1117 `(,(nth 0 kw
) ,(nth 1 kw
) ,(nth 2 kw
) prepend
)
1118 (message "Ignoring Texinfo highlight: %S" kw
)))
1119 texinfo-font-lock-keywords
)))))
1120 (font-lock-add-keywords
1123 (while (and (< (point) limit
)
1124 (search-forward "-*- texinfo -*-" limit t
)
1125 (octave-in-comment-p))
1126 (let ((beg (nth 8 (syntax-ppss)))
1128 (octave-skip-comment-forward (point-max))
1130 (put-text-property beg end
'font-lock-multiline t
)
1131 (font-lock-prepend-text-property
1132 beg end
'face
'octave-function-comment-block
)
1135 (while (re-search-forward (car kw
) end
'move
)
1136 (font-lock-apply-highlight (cdr kw
))))))
1143 (defun octave-indent-new-comment-line (&optional soft
)
1144 ;; FIXME: C-M-j should probably be bound globally to a function like
1146 "Break Octave line at point, continuing comment if within one.
1147 Insert `octave-continuation-string' before breaking the line
1148 unless inside a list. Signal an error if within a single-quoted
1151 (funcall comment-line-break-function soft
))
1153 (defun octave--indent-new-comment-line (orig &rest args
)
1155 ((octave-in-comment-p) nil
)
1156 ((eq (octave-in-string-p) ?
')
1157 (error "Cannot split a single-quoted string"))
1158 ((eq (octave-in-string-p) ?
\")
1159 (insert octave-continuation-string
))
1161 (delete-horizontal-space)
1162 (unless (and (cadr (syntax-ppss))
1163 (eq (char-after (cadr (syntax-ppss))) ?\
())
1164 (insert " " octave-continuation-string
))))
1166 (indent-according-to-mode))
1168 (define-obsolete-function-alias
1169 'octave-indent-defun
'prog-indent-sexp
"24.4")
1173 (defun octave-next-code-line (&optional arg
)
1174 "Move ARG lines of Octave code forward (backward if ARG is negative).
1175 Skips past all empty and comment lines. Default for ARG is 1.
1177 On success, return 0. Otherwise, go as far as possible and return -1."
1179 (or arg
(setq arg
1))
1182 (inc (if (> arg
0) 1 -
1)))
1183 (while (and (/= arg
0) (= n
0))
1184 (setq n
(forward-line inc
))
1186 (looking-at "\\s-*\\($\\|\\s<\\)"))
1187 (setq n
(forward-line inc
)))
1188 (setq arg
(- arg inc
)))
1191 (defun octave-previous-code-line (&optional arg
)
1192 "Move ARG lines of Octave code backward (forward if ARG is negative).
1193 Skips past all empty and comment lines. Default for ARG is 1.
1195 On success, return 0. Otherwise, go as far as possible and return -1."
1197 (or arg
(setq arg
1))
1198 (octave-next-code-line (- arg
)))
1200 (defun octave-beginning-of-line ()
1201 "Move point to beginning of current Octave line.
1202 If on an empty or comment line, go to the beginning of that line.
1203 Otherwise, move backward to the beginning of the first Octave code line
1204 which is not inside a continuation statement, i.e., which does not
1205 follow a code line ending with `...' or is inside an open
1209 (unless (looking-at "\\s-*\\($\\|\\s<\\)")
1210 (while (or (when (cadr (syntax-ppss))
1211 (goto-char (cadr (syntax-ppss)))
1214 (and (or (looking-at "\\s-*\\($\\|\\s<\\)")
1216 (if (zerop (octave-previous-code-line))
1217 (looking-at octave-continuation-regexp
))))
1218 (zerop (forward-line -
1)))))))
1220 (defun octave-end-of-line ()
1221 "Move point to end of current Octave line.
1222 If on an empty or comment line, go to the end of that line.
1223 Otherwise, move forward to the end of the first Octave code line which
1224 does not end with `...' or is inside an open parenthesis list."
1227 (unless (save-excursion
1229 (looking-at "\\s-*\\($\\|\\s<\\)"))
1230 (while (or (when (cadr (syntax-ppss))
1237 (and (save-excursion
1239 (or (looking-at "\\s-*\\($\\|\\s<\\)")
1240 (looking-at octave-continuation-regexp
)))
1241 (zerop (forward-line 1)))))
1244 (defun octave-mark-block ()
1245 "Put point at the beginning of this Octave block, mark at the end.
1246 The block marked is the one that contains point or follows point."
1248 (if (and (looking-at "\\sw\\|\\s_")
1249 (looking-back "\\sw\\|\\s_" (1- (point))))
1250 (skip-syntax-forward "w_"))
1251 (unless (or (looking-at "\\s(")
1253 (let* ((token (funcall smie-forward-token-function
))
1254 (level (assoc token smie-grammar
)))
1255 (and level
(not (numberp (cadr level
)))))))
1256 (backward-up-list 1))
1259 (defun octave-beginning-of-defun (&optional arg
)
1260 "Octave-specific `beginning-of-defun-function' (which see)."
1261 (or arg
(setq arg
1))
1262 ;; Move out of strings or comments.
1263 (when (octave-in-string-or-comment-p)
1264 (goto-char (octave-in-string-or-comment-p)))
1265 (letrec ((orig (point))
1266 (toplevel (lambda (pos)
1269 (backward-up-list 1)
1270 (funcall toplevel
(point)))
1271 (scan-error pos
)))))
1272 (goto-char (funcall toplevel
(point)))
1273 (when (and (> arg
0) (/= orig
(point)))
1274 (setq arg
(1- arg
)))
1275 (forward-sexp (- arg
))
1276 (and (< arg
0) (forward-sexp -
1))
1279 (defun octave-fill-paragraph (&optional _arg
)
1280 "Fill paragraph of Octave code, handling Octave comments."
1281 ;; FIXME: difference with generic fill-paragraph:
1282 ;; - code lines are only split, never joined.
1283 ;; - \n that end comments are never removed.
1284 ;; - insert continuation marker when splitting code lines.
1287 (let ((end (progn (forward-paragraph) (copy-marker (point) t
)))
1289 (forward-paragraph -
1)
1290 (skip-chars-forward " \t\n")
1293 (cfc (current-fill-column))
1296 (while (< (point) end
)
1298 (indent-according-to-mode)
1300 (move-to-column cfc
)
1301 ;; First check whether we need to combine non-empty comment lines
1302 (if (and (< (current-column) cfc
)
1303 (octave-in-comment-p)
1304 (not (save-excursion
1306 (looking-at "^\\s-*\\s<+\\s-*$"))))
1307 ;; This is a nonempty comment line which does not extend
1308 ;; past the fill column. If it is followed by a nonempty
1309 ;; comment line with the same comment prefix, try to
1310 ;; combine them, and repeat this until either we reach the
1311 ;; fill-column or there is nothing more to combine.
1313 ;; Get the comment prefix
1316 (while (and (re-search-forward "\\s<+")
1317 (not (octave-in-comment-p))))
1318 (setq comment-prefix
(match-string 0)))
1319 ;; And keep combining ...
1320 (while (and (< (current-column) cfc
)
1332 (re-search-forward comment-prefix
)
1333 (delete-region (match-beginning 0) (match-end 0))
1335 (move-to-column cfc
))))
1336 ;; We might also try to combine continued code lines> Perhaps
1337 ;; some other time ...
1338 (skip-chars-forward "^ \t\n")
1339 (delete-horizontal-space)
1340 (if (or (< (current-column) cfc
)
1341 (and (= (current-column) cfc
) (eolp)))
1343 (if (not (eolp)) (insert " "))
1344 (or (funcall normal-auto-fill-function
)
1350 (defun octave-completion-at-point ()
1351 "Find the text to complete and the corresponding table."
1352 (let* ((beg (save-excursion (skip-syntax-backward "w_") (point)))
1355 ;; Extend region past point, if applicable.
1356 (save-excursion (skip-syntax-forward "w_")
1357 (setq end
(point))))
1359 (list beg end
(or (and inferior-octave-process
1360 (process-live-p inferior-octave-process
)
1361 inferior-octave-completion-table
)
1362 octave-reserved-words
)))))
1364 (define-obsolete-function-alias 'octave-complete-symbol
1365 'completion-at-point
"24.1")
1367 ;;; Electric characters && friends
1368 (define-skeleton octave-insert-defun
1369 "Insert an Octave function skeleton.
1370 Prompt for the function's name, arguments and return values (to be
1371 entered without parens)."
1372 (let* ((defname (file-name-sans-extension (buffer-name)))
1373 (name (read-string (format "Function name (default %s): " defname
)
1375 (args (read-string "Arguments: "))
1376 (vals (read-string "Return values: ")))
1379 ((string-equal vals
"") vals
)
1380 ((string-match "[ ,]" vals
) (concat "[" vals
"] = "))
1381 (t (concat vals
" = ")))
1384 \n octave-block-comment-start
"usage: " str
\n
1385 octave-block-comment-start
'(delete-horizontal-space) \n
1386 octave-block-comment-start
'(delete-horizontal-space) \n
1387 "function " > str
\n
1391 ;;; Communication with the inferior Octave process
1392 (defun octave-kill-process ()
1393 "Kill inferior Octave process and its buffer."
1395 (if inferior-octave-process
1397 (process-send-string inferior-octave-process
"quit;\n")
1398 (accept-process-output inferior-octave-process
)))
1399 (if inferior-octave-buffer
1400 (kill-buffer inferior-octave-buffer
)))
1402 (defun octave-show-process-buffer ()
1403 "Make sure that `inferior-octave-buffer' is displayed."
1405 (if (get-buffer inferior-octave-buffer
)
1406 (display-buffer inferior-octave-buffer
)
1407 (message "No buffer named %s" inferior-octave-buffer
)))
1409 (defun octave-hide-process-buffer ()
1410 "Delete all windows that display `inferior-octave-buffer'."
1412 (if (get-buffer inferior-octave-buffer
)
1413 (delete-windows-on inferior-octave-buffer
)
1414 (message "No buffer named %s" inferior-octave-buffer
)))
1416 (defun octave-send-region (beg end
)
1417 "Send current region to the inferior Octave process."
1420 (let ((proc inferior-octave-process
)
1421 (string (buffer-substring-no-properties beg end
))
1423 (with-current-buffer inferior-octave-buffer
1424 (setq inferior-octave-output-list nil
)
1425 (while (not (string-equal string
""))
1426 (if (string-match "\n" string
)
1427 (setq line
(substring string
0 (match-beginning 0))
1428 string
(substring string
(match-end 0)))
1429 (setq line string string
""))
1430 (setq inferior-octave-receive-in-progress t
)
1431 (inferior-octave-send-list-and-digest (list (concat line
"\n")))
1432 (while inferior-octave-receive-in-progress
1433 (accept-process-output proc
))
1434 (insert-before-markers
1435 (mapconcat 'identity
1437 (if octave-send-echo-input
(list line
) (list ""))
1438 inferior-octave-output-list
1439 (list inferior-octave-output-string
))
1441 (if octave-send-show-buffer
1442 (display-buffer inferior-octave-buffer
)))
1444 (defun octave-send-block ()
1445 "Send current Octave block to the inferior Octave process."
1449 (octave-send-region (point) (mark))))
1451 (defun octave-send-defun ()
1452 "Send current Octave function to the inferior Octave process."
1456 (octave-send-region (point) (mark))))
1458 (defun octave-send-line (&optional arg
)
1459 "Send current Octave code line to the inferior Octave process.
1460 With positive prefix ARG, send that many lines.
1461 If `octave-send-line-auto-forward' is non-nil, go to the next unsent
1464 (or arg
(setq arg
1))
1469 (octave-next-code-line (- arg
1))
1472 (if octave-send-line-auto-forward
1473 (octave-next-code-line 1))
1474 (octave-send-region beg end
))))
1476 (defun octave-eval-print-last-sexp ()
1477 "Evaluate Octave sexp before point and print value into current buffer."
1480 (let ((standard-output (current-buffer))
1481 (print-escape-newlines nil
)
1487 (inferior-octave-send-list-and-digest
1488 (list (concat (buffer-substring-no-properties (point) opoint
)
1490 (mapconcat 'identity inferior-octave-output-list
"\n")))
1495 (defcustom octave-eldoc-message-style
'auto
1496 "Octave eldoc message style: auto, oneline, multiline."
1497 :type
'(choice (const :tag
"Automatic" auto
)
1498 (const :tag
"One Line" oneline
)
1499 (const :tag
"Multi Line" multiline
))
1503 ;; (FN SIGNATURE1 SIGNATURE2 ...)
1504 (defvar octave-eldoc-cache nil
)
1506 (defun octave-eldoc-function-signatures (fn)
1507 (unless (equal fn
(car octave-eldoc-cache
))
1508 (inferior-octave-send-list-and-digest
1510 if ismember(exist(\"%s\"), [2 3 5 103]) print_usage(\"%s\") endif\n"
1513 (dolist (line inferior-octave-output-list
)
1515 "\\s-*\\(?:--[^:]+\\|usage\\):\\s-*\\(.*\\)$"
1517 (push (match-string 1 line
) result
)))
1518 (setq octave-eldoc-cache
1519 (cons (substring-no-properties fn
)
1520 (nreverse result
)))))
1521 (cdr octave-eldoc-cache
))
1523 (defun octave-eldoc-function ()
1524 "A function for `eldoc-documentation-function' (which see)."
1525 (when (and inferior-octave-process
1526 (process-live-p inferior-octave-process
))
1527 (let* ((ppss (syntax-ppss))
1528 (paren-pos (cadr ppss
))
1531 ;; PAREN-POS must be after the prompt
1533 (if (eq (get-buffer-process (current-buffer))
1534 inferior-octave-process
)
1535 (process-mark inferior-octave-process
)
1537 (or (not (eq (get-buffer-process (current-buffer))
1538 inferior-octave-process
))
1539 (< (process-mark inferior-octave-process
)
1541 (eq (char-after paren-pos
) ?\
())
1542 (goto-char paren-pos
)
1543 (setq paren-pos nil
))
1544 (when (or (< (skip-syntax-backward "-") 0) paren-pos
)
1545 (thing-at-point 'symbol
))))
1546 (sigs (and fn
(octave-eldoc-function-signatures fn
)))
1547 (oneline (mapconcat 'identity sigs
1548 (propertize " | " 'face
'warning
)))
1549 (multiline (mapconcat (lambda (s) (concat "-- " s
)) sigs
"\n")))
1551 ;; Return the value according to style.
1552 (pcase octave-eldoc-message-style
1553 (`auto
(if (< (length oneline
) (window-width (minibuffer-window)))
1557 (`multiline multiline
)))))
1559 (defcustom octave-help-buffer
"*Octave Help*"
1560 "Buffer name for `octave-help'."
1565 (define-button-type 'octave-help-file
1567 'action
#'help-button-action
1568 'help-function
'octave-find-definition
)
1570 (define-button-type 'octave-help-function
1574 (buffer-substring (button-start b
) (button-end b
)))))
1576 (defvar octave-help-mode-map
1577 (let ((map (make-sparse-keymap)))
1578 (define-key map
"\M-." 'octave-find-definition
)
1579 (define-key map
"\C-hd" 'octave-help
)
1582 (define-derived-mode octave-help-mode help-mode
"OctHelp"
1583 "Major mode for displaying Octave documentation."
1585 :syntax-table octave-mode-syntax-table
1586 (eval-and-compile (require 'help-mode
))
1587 ;; Mostly stolen from `help-make-xrefs'.
1588 (let ((inhibit-read-only t
))
1589 (setq-local info-lookup-mode
'octave-mode
)
1590 ;; Delete extraneous newlines at the end of the docstring
1591 (goto-char (point-max))
1592 (while (and (not (bobp)) (bolp))
1595 (when (or help-xref-stack help-xref-forward-stack
)
1597 (when help-xref-stack
1598 (help-insert-xref-button help-back-label
'help-back
1600 (when help-xref-forward-stack
1601 (when help-xref-stack
1603 (help-insert-xref-button help-forward-label
'help-forward
1605 (when (or help-xref-stack help-xref-forward-stack
)
1608 (defvar octave-help-mode-finish-hook nil
1609 "Octave specific hook for `temp-buffer-show-hook'.")
1611 (defun octave-help-mode-finish ()
1612 (when (eq major-mode
'octave-help-mode
)
1613 (run-hooks 'octave-help-mode-finish-hook
)))
1615 (add-hook 'temp-buffer-show-hook
'octave-help-mode-finish
)
1617 (defun octave-help (fn)
1618 "Display the documentation of FN."
1619 (interactive (list (octave-completing-read)))
1620 (inferior-octave-send-list-and-digest
1621 (list (format "help \"%s\"\n" fn
)))
1622 (let ((lines inferior-octave-output-list
)
1623 (inhibit-read-only t
))
1624 (when (string-match "error: \\(.*\\)$" (car lines
))
1625 (error "%s" (match-string 1 (car lines
))))
1626 (with-help-window octave-help-buffer
1627 (princ (mapconcat 'identity lines
"\n"))
1628 (with-current-buffer octave-help-buffer
1629 ;; Bound to t so that `help-buffer' returns current buffer for
1630 ;; `help-setup-xref'.
1631 (let ((help-xref-following t
))
1632 (help-setup-xref (list 'octave-help fn
)
1633 (called-interactively-p 'interactive
)))
1634 ;; Note: can be turned off by suppress_verbose_help_message.
1636 ;; Remove boring trailing text: Additional help for built-in functions
1637 ;; and operators ...
1638 (goto-char (point-max))
1639 (when (search-backward "\n\n\n" nil t
)
1640 (goto-char (match-beginning 0))
1641 (delete-region (point) (point-max)))
1642 ;; File name highlight
1643 (goto-char (point-min))
1644 (when (re-search-forward "from the file \\(.*\\)$"
1647 (let* ((file (match-string 1))
1648 (dir (file-name-directory
1649 (directory-file-name (file-name-directory file
)))))
1650 (replace-match "" nil nil nil
1)
1652 ;; Include the parent directory which may be regarded as
1653 ;; the category for the FN.
1654 (help-insert-xref-button (file-relative-name file dir
)
1655 'octave-help-file fn
)
1657 ;; Make 'See also' clickable
1658 (with-syntax-table octave-mode-syntax-table
1659 (when (re-search-forward "^\\s-*See also:" nil t
)
1660 (let ((end (save-excursion (re-search-forward "^\\s-*$" nil t
))))
1661 (while (re-search-forward "\\_<\\(?:\\sw\\|\\s_\\)+\\_>" end t
)
1662 (make-text-button (match-beginning 0) (match-end 0)
1663 :type
'octave-help-function
)))))
1664 (octave-help-mode)))))
1666 (defcustom octave-source-directories nil
1667 "A list of directories for Octave sources.
1668 If the environment variable OCTAVE_SRCDIR is set, it is searched first."
1669 :type
'(repeat directory
)
1673 (defun octave-source-directories ()
1674 (let ((srcdir (or (and inferior-octave-process
1675 (process-get inferior-octave-process
'octave-srcdir
))
1676 (getenv "OCTAVE_SRCDIR"))))
1678 (cons srcdir octave-source-directories
)
1679 octave-source-directories
)))
1681 (defvar octave-find-definition-filename-function
1682 #'octave-find-definition-default-filename
)
1684 (defun octave-find-definition-default-filename (name)
1685 "Default value for `octave-find-definition-filename-function'."
1686 (pcase (file-name-extension name
)
1688 (octave-find-definition-default-filename
1689 (concat "libinterp/dldfcn/"
1690 (file-name-sans-extension (file-name-nondirectory name
))
1693 (let ((file (or (locate-file name
(octave-source-directories))
1694 (locate-file (file-name-nondirectory name
)
1695 (octave-source-directories)))))
1696 (or (and file
(file-exists-p file
))
1697 (error "File `%s' not found" name
))
1700 (if (yes-or-no-p (format "File `%s' may be binary; open? "
1701 (file-name-nondirectory name
)))
1703 (user-error "Aborted")))
1706 (defvar find-tag-marker-ring
)
1708 (defun octave-find-definition (fn)
1709 "Find the definition of FN.
1710 Functions implemented in C++ can be found if
1711 `octave-source-directories' is set correctly."
1712 (interactive (list (octave-completing-read)))
1713 (inferior-octave-send-list-and-digest
1714 ;; help NAME is more verbose
1716 if iskeyword(\"%s\") disp(\"`%s' is a keyword\") else which(\"%s\") endif\n"
1719 ;; Skip garbage lines such as
1720 ;; warning: fmincg.m: possible Matlab-style ....
1721 (while (and (not file
) (consp inferior-octave-output-list
))
1722 (setq line
(pop inferior-octave-output-list
))
1723 (when (string-match "from the file \\(.*\\)$" line
)
1724 (setq file
(match-string 1 line
))))
1726 (user-error "%s" (or line
(format "`%s' not found" fn
)))
1728 (ring-insert find-tag-marker-ring
(point-marker))
1729 (setq file
(funcall octave-find-definition-filename-function file
))
1732 (octave-goto-function-definition fn
)))))
1736 ;;; octave.el ends here