lisp/*: Fix typos in docstrings and messages.
[emacs.git] / lisp / progmodes / octave-mod.el
blob7f09d83399b469651b4e32c4112e5c346f13115c
1 ;;; octave-mod.el --- editing Octave source files under Emacs
3 ;; Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 ;; Free Software Foundation, Inc.
6 ;; Author: Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
7 ;; Author: John Eaton <jwe@bevo.che.wisc.edu>
8 ;; Maintainer: Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
9 ;; Keywords: languages
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; This package provides Emacs support for Octave.
29 ;; It defines Octave mode, a major mode for editing
30 ;; Octave code.
32 ;; The file octave-inf.el contains code for interacting with an inferior
33 ;; Octave process using comint.
35 ;; See the documentation of `octave-mode' and
36 ;; `run-octave' for further information on usage and customization.
38 ;;; Code:
39 (require 'custom)
41 (defgroup octave nil
42 "Major mode for editing Octave source files."
43 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
44 :group 'languages)
46 (defvar inferior-octave-output-list nil)
47 (defvar inferior-octave-output-string nil)
48 (defvar inferior-octave-receive-in-progress nil)
50 (declare-function inferior-octave-send-list-and-digest "octave-inf" (list))
52 (defconst octave-maintainer-address
53 "Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>, bug-gnu-emacs@gnu.org"
54 "Current maintainer of the Emacs Octave package.")
56 (define-abbrev-table 'octave-abbrev-table
57 (mapcar (lambda (e) (append e '(nil 0 t)))
58 '(("`a" "all_va_args")
59 ("`b" "break")
60 ("`cs" "case")
61 ("`ca" "catch")
62 ("`c" "continue")
63 ("`el" "else")
64 ("`eli" "elseif")
65 ("`et" "end_try_catch")
66 ("`eu" "end_unwind_protect")
67 ("`ef" "endfor")
68 ("`efu" "endfunction")
69 ("`ei" "endif")
70 ("`es" "endswitch")
71 ("`ew" "endwhile")
72 ("`f" "for")
73 ("`fu" "function")
74 ("`gl" "global")
75 ("`gp" "gplot")
76 ("`gs" "gsplot")
77 ("`if" "if ()")
78 ("`o" "otherwise")
79 ("`rp" "replot")
80 ("`r" "return")
81 ("`s" "switch")
82 ("`t" "try")
83 ("`u" "until ()")
84 ("`up" "unwind_protect")
85 ("`upc" "unwind_protect_cleanup")
86 ("`w" "while ()")))
87 "Abbrev table for Octave's reserved words.
88 Used in `octave-mode' and inferior-octave-mode buffers.
89 All Octave abbrevs start with a grave accent (`)."
90 :regexp "\\(?:[^`]\\|^\\)\\(\\(?:\\<\\|`\\)\\w+\\)\\W*")
92 (defvar octave-comment-char ?#
93 "Character to start an Octave comment.")
94 (defvar octave-comment-start
95 (string octave-comment-char ?\ )
96 "String to insert to start a new Octave in-line comment.")
97 (defvar octave-comment-start-skip "\\s<+\\s-*"
98 "Regexp to match the start of an Octave comment up to its body.")
100 (defvar octave-begin-keywords
101 '("do" "for" "function" "if" "switch" "try" "unwind_protect" "while"))
102 (defvar octave-else-keywords
103 '("case" "catch" "else" "elseif" "otherwise" "unwind_protect_cleanup"))
104 ;; FIXME: only use specific "end" tokens here to avoid confusion when "end"
105 ;; is used in indexing (the real fix is much more complex).
106 (defvar octave-end-keywords
107 '("endfor" "endfunction" "endif" "endswitch" "end_try_catch"
108 "end_unwind_protect" "endwhile" "until"))
110 (defvar octave-reserved-words
111 (append octave-begin-keywords
112 octave-else-keywords
113 octave-end-keywords
114 '("break" "continue" "end" "global" "persistent" "return"))
115 "Reserved words in Octave.")
117 (defvar octave-text-functions
118 '("casesen" "cd" "chdir" "clear" "diary" "dir" "document" "echo"
119 "edit_history" "format" "help" "history" "hold"
120 "load" "ls" "more" "run_history" "save" "type"
121 "which" "who" "whos")
122 "Text functions in Octave.")
124 (defvar octave-variables
125 '("DEFAULT_EXEC_PATH" "DEFAULT_LOADPATH"
126 "EDITOR" "EXEC_PATH" "F_DUPFD" "F_GETFD" "F_GETFL" "F_SETFD"
127 "F_SETFL" "I" "IMAGE_PATH" "Inf" "J"
128 "NaN" "OCTAVE_VERSION" "O_APPEND" "O_CREAT" "O_EXCL"
129 "O_NONBLOCK" "O_RDONLY" "O_RDWR" "O_TRUNC" "O_WRONLY" "PAGER" "PS1"
130 "PS2" "PS4" "PWD" "SEEK_CUR" "SEEK_END" "SEEK_SET" "__F_DUPFD__"
131 "__F_GETFD__" "__F_GETFL__" "__F_SETFD__" "__F_SETFL__" "__I__"
132 "__Inf__" "__J__" "__NaN__" "__OCTAVE_VERSION__" "__O_APPEND__"
133 "__O_CREAT__" "__O_EXCL__" "__O_NONBLOCK__" "__O_RDONLY__"
134 "__O_RDWR__" "__O_TRUNC__" "__O_WRONLY__" "__PWD__" "__SEEK_CUR__"
135 "__SEEK_END__" "__SEEK_SET__" "__argv__" "__e__" "__eps__"
136 "__i__" "__inf__" "__j__" "__nan__" "__pi__"
137 "__program_invocation_name__" "__program_name__" "__realmax__"
138 "__realmin__" "__stderr__" "__stdin__" "__stdout__" "ans" "argv"
139 "beep_on_error" "completion_append_char"
140 "crash_dumps_octave_core" "default_save_format"
141 "e" "echo_executing_commands" "eps"
142 "error_text" "gnuplot_binary" "history_file"
143 "history_size" "ignore_function_time_stamp"
144 "inf" "nan" "nargin" "output_max_field_width" "output_precision"
145 "page_output_immediately" "page_screen_output" "pi"
146 "print_answer_id_name" "print_empty_dimensions"
147 "program_invocation_name" "program_name"
148 "realmax" "realmin" "return_last_computed_value" "save_precision"
149 "saving_history" "sighup_dumps_octave_core" "sigterm_dumps_octave_core"
150 "silent_functions" "split_long_rows" "stderr" "stdin" "stdout"
151 "string_fill_char" "struct_levels_to_print"
152 "suppress_verbose_help_message")
153 "Builtin variables in Octave.")
155 (defvar octave-function-header-regexp
156 (concat "^\\s-*\\<\\(function\\)\\>"
157 "\\([^=;\n]*=[ \t]*\\|[ \t]*\\)\\(\\w+\\)\\>")
158 "Regexp to match an Octave function header.
159 The string `function' and its name are given by the first and third
160 parenthetical grouping.")
162 (defvar octave-font-lock-keywords
163 (list
164 ;; Fontify all builtin keywords.
165 (cons (concat "\\<\\("
166 (mapconcat 'identity octave-reserved-words "\\|")
167 (mapconcat 'identity octave-text-functions "\\|")
168 "\\)\\>")
169 'font-lock-keyword-face)
170 ;; Fontify all builtin operators.
171 (cons "\\(&\\||\\|<=\\|>=\\|==\\|<\\|>\\|!=\\|!\\)"
172 (if (boundp 'font-lock-builtin-face)
173 'font-lock-builtin-face
174 'font-lock-preprocessor-face))
175 ;; Fontify all builtin variables.
176 (cons (concat "\\<\\("
177 (mapconcat 'identity octave-variables "\\|")
178 "\\)\\>")
179 'font-lock-variable-name-face)
180 ;; Fontify all function declarations.
181 (list octave-function-header-regexp
182 '(1 font-lock-keyword-face)
183 '(3 font-lock-function-name-face nil t)))
184 "Additional Octave expressions to highlight.")
186 (defcustom inferior-octave-buffer "*Inferior Octave*"
187 "Name of buffer for running an inferior Octave process."
188 :type 'string
189 :group 'octave-inferior)
191 (defvar inferior-octave-process nil)
193 (defvar octave-mode-map
194 (let ((map (make-sparse-keymap)))
195 (define-key map "`" 'octave-abbrev-start)
196 (define-key map ";" 'octave-electric-semi)
197 (define-key map " " 'octave-electric-space)
198 (define-key map "\n" 'octave-reindent-then-newline-and-indent)
199 (define-key map "\e;" 'octave-indent-for-comment)
200 (define-key map "\e\n" 'octave-indent-new-comment-line)
201 (define-key map "\e\t" 'octave-complete-symbol)
202 (define-key map "\M-\C-a" 'octave-beginning-of-defun)
203 (define-key map "\M-\C-e" 'octave-end-of-defun)
204 (define-key map "\M-\C-h" 'octave-mark-defun)
205 (define-key map "\M-\C-q" 'octave-indent-defun)
206 (define-key map "\C-c;" 'octave-comment-region)
207 (define-key map "\C-c:" 'octave-uncomment-region)
208 (define-key map "\C-c\C-b" 'octave-submit-bug-report)
209 (define-key map "\C-c\C-p" 'octave-previous-code-line)
210 (define-key map "\C-c\C-n" 'octave-next-code-line)
211 (define-key map "\C-c\C-a" 'octave-beginning-of-line)
212 (define-key map "\C-c\C-e" 'octave-end-of-line)
213 (define-key map "\C-c\M-\C-n" 'octave-forward-block)
214 (define-key map "\C-c\M-\C-p" 'octave-backward-block)
215 (define-key map "\C-c\M-\C-u" 'octave-backward-up-block)
216 (define-key map "\C-c\M-\C-d" 'octave-down-block)
217 (define-key map "\C-c\M-\C-h" 'octave-mark-block)
218 (define-key map "\C-c]" 'octave-close-block)
219 (define-key map "\C-c\C-f" 'octave-insert-defun)
220 (define-key map "\C-c\C-h" 'octave-help)
221 (define-key map "\C-c\C-il" 'octave-send-line)
222 (define-key map "\C-c\C-ib" 'octave-send-block)
223 (define-key map "\C-c\C-if" 'octave-send-defun)
224 (define-key map "\C-c\C-ir" 'octave-send-region)
225 (define-key map "\C-c\C-is" 'octave-show-process-buffer)
226 (define-key map "\C-c\C-ih" 'octave-hide-process-buffer)
227 (define-key map "\C-c\C-ik" 'octave-kill-process)
228 (define-key map "\C-c\C-i\C-l" 'octave-send-line)
229 (define-key map "\C-c\C-i\C-b" 'octave-send-block)
230 (define-key map "\C-c\C-i\C-f" 'octave-send-defun)
231 (define-key map "\C-c\C-i\C-r" 'octave-send-region)
232 (define-key map "\C-c\C-i\C-s" 'octave-show-process-buffer)
233 (define-key map "\C-c\C-i\C-h" 'octave-hide-process-buffer)
234 (define-key map "\C-c\C-i\C-k" 'octave-kill-process)
235 map)
236 "Keymap used in Octave mode.")
239 (defvar octave-mode-menu
240 '("Octave"
241 ("Lines"
242 ["Previous Code Line" octave-previous-code-line t]
243 ["Next Code Line" octave-next-code-line t]
244 ["Begin of Continuation" octave-beginning-of-line t]
245 ["End of Continuation" octave-end-of-line t]
246 ["Split Line at Point" octave-indent-new-comment-line t])
247 ("Blocks"
248 ["Next Block" octave-forward-block t]
249 ["Previous Block" octave-backward-block t]
250 ["Down Block" octave-down-block t]
251 ["Up Block" octave-backward-up-block t]
252 ["Mark Block" octave-mark-block t]
253 ["Close Block" octave-close-block t])
254 ("Functions"
255 ["Begin of Function" octave-beginning-of-defun t]
256 ["End of Function" octave-end-of-defun t]
257 ["Mark Function" octave-mark-defun t]
258 ["Indent Function" octave-indent-defun t]
259 ["Insert Function" octave-insert-defun t])
261 ("Debug"
262 ["Send Current Line" octave-send-line t]
263 ["Send Current Block" octave-send-block t]
264 ["Send Current Function" octave-send-defun t]
265 ["Send Region" octave-send-region t]
266 ["Show Process Buffer" octave-show-process-buffer t]
267 ["Hide Process Buffer" octave-hide-process-buffer t]
268 ["Kill Process" octave-kill-process t])
270 ["Indent Line" indent-according-to-mode t]
271 ["Complete Symbol" octave-complete-symbol t]
273 ["Toggle Abbrev Mode" abbrev-mode t]
274 ["Toggle Auto-Fill Mode" auto-fill-mode t]
276 ["Submit Bug Report" octave-submit-bug-report t]
278 ["Describe Octave Mode" octave-describe-major-mode t]
279 ["Lookup Octave Index" octave-help t])
280 "Menu for Octave mode.")
282 (defvar octave-mode-syntax-table
283 (let ((table (make-syntax-table)))
284 (modify-syntax-entry ?\r " " table)
285 (modify-syntax-entry ?+ "." table)
286 (modify-syntax-entry ?- "." table)
287 (modify-syntax-entry ?= "." table)
288 (modify-syntax-entry ?* "." table)
289 (modify-syntax-entry ?/ "." table)
290 (modify-syntax-entry ?> "." table)
291 (modify-syntax-entry ?< "." table)
292 (modify-syntax-entry ?& "." table)
293 (modify-syntax-entry ?| "." table)
294 (modify-syntax-entry ?! "." table)
295 (modify-syntax-entry ?\\ "\\" table)
296 (modify-syntax-entry ?\' "." table)
297 ;; Was "w" for abbrevs, but now that it's not necessary any more,
298 (modify-syntax-entry ?\` "." table)
299 (modify-syntax-entry ?\" "\"" table)
300 (modify-syntax-entry ?. "w" table)
301 (modify-syntax-entry ?_ "w" table)
302 (modify-syntax-entry ?\% "<" table)
303 (modify-syntax-entry ?\# "<" table)
304 (modify-syntax-entry ?\n ">" table)
305 table)
306 "Syntax table in use in `octave-mode' buffers.")
308 (defcustom octave-auto-indent nil
309 "Non-nil means indent line after a semicolon or space in Octave mode."
310 :type 'boolean
311 :group 'octave)
313 (defcustom octave-auto-newline nil
314 "Non-nil means automatically newline after a semicolon in Octave mode."
315 :type 'boolean
316 :group 'octave)
318 (defcustom octave-blink-matching-block t
319 "Control the blinking of matching Octave block keywords.
320 Non-nil means show matching begin of block when inserting a space,
321 newline or semicolon after an else or end keyword."
322 :type 'boolean
323 :group 'octave)
324 (defcustom octave-block-offset 2
325 "Extra indentation applied to statements in Octave block structures."
326 :type 'integer
327 :group 'octave)
329 (defvar octave-block-begin-regexp
330 (concat "\\<\\("
331 (mapconcat 'identity octave-begin-keywords "\\|")
332 "\\)\\>"))
333 (defvar octave-block-else-regexp
334 (concat "\\<\\("
335 (mapconcat 'identity octave-else-keywords "\\|")
336 "\\)\\>"))
337 (defvar octave-block-end-regexp
338 (concat "\\<\\("
339 (mapconcat 'identity octave-end-keywords "\\|")
340 "\\)\\>"))
341 (defvar octave-block-begin-or-end-regexp
342 (concat octave-block-begin-regexp "\\|" octave-block-end-regexp))
343 (defvar octave-block-else-or-end-regexp
344 (concat octave-block-else-regexp "\\|" octave-block-end-regexp))
345 ;; FIXME: only use specific "end" tokens here to avoid confusion when "end"
346 ;; is used in indexing (the real fix is much more complex).
347 (defvar octave-block-match-alist
348 '(("do" . ("until"))
349 ("for" . ("endfor"))
350 ("function" . ("endfunction"))
351 ("if" . ("else" "elseif" "endif"))
352 ("switch" . ("case" "otherwise" "endswitch"))
353 ("try" . ("catch" "end_try_catch"))
354 ("unwind_protect" . ("unwind_protect_cleanup" "end_unwind_protect"))
355 ("while" . ("endwhile")))
356 "Alist with Octave's matching block keywords.
357 Has Octave's begin keywords as keys and a list of the matching else or
358 end keywords as associated values.")
360 (defvar octave-block-comment-start
361 (concat (make-string 2 octave-comment-char) " ")
362 "String to insert to start a new Octave comment on an empty line.")
364 (defcustom octave-continuation-offset 4
365 "Extra indentation applied to Octave continuation lines."
366 :type 'integer
367 :group 'octave)
368 (defvar octave-continuation-regexp
369 "[^#%\n]*\\(\\\\\\|\\.\\.\\.\\)\\s-*\\(\\s<.*\\)?$")
370 (defcustom octave-continuation-string "\\"
371 "Character string used for Octave continuation lines. Normally \\."
372 :type 'string
373 :group 'octave)
375 (defvar octave-completion-alist nil
376 "Alist of Octave symbols for completion in Octave mode.
377 Each element looks like (VAR . VAR), where the car and cdr are the same
378 symbol (an Octave command or variable name).
379 Currently, only builtin variables can be completed.")
381 (defvar octave-mode-imenu-generic-expression
382 (list
383 ;; Functions
384 (list nil octave-function-header-regexp 3))
385 "Imenu expression for Octave mode. See `imenu-generic-expression'.")
387 (defcustom octave-mode-hook nil
388 "Hook to be run when Octave mode is started."
389 :type 'hook
390 :group 'octave)
392 (defcustom octave-send-show-buffer t
393 "Non-nil means display `inferior-octave-buffer' after sending to it."
394 :type 'boolean
395 :group 'octave)
396 (defcustom octave-send-line-auto-forward t
397 "Control auto-forward after sending to the inferior Octave process.
398 Non-nil means always go to the next Octave code line after sending."
399 :type 'boolean
400 :group 'octave)
401 (defcustom octave-send-echo-input t
402 "Non-nil means echo input sent to the inferior Octave process."
403 :type 'boolean
404 :group 'octave)
407 ;;;###autoload
408 (defun octave-mode ()
409 "Major mode for editing Octave code.
411 This mode makes it easier to write Octave code by helping with
412 indentation, doing some of the typing for you (with Abbrev mode) and by
413 showing keywords, comments, strings, etc. in different faces (with
414 Font Lock mode on terminals that support it).
416 Octave itself is a high-level language, primarily intended for numerical
417 computations. It provides a convenient command line interface for
418 solving linear and nonlinear problems numerically. Function definitions
419 can also be stored in files, and it can be used in a batch mode (which
420 is why you need this mode!).
422 The latest released version of Octave is always available via anonymous
423 ftp from ftp.octave.org in the directory `/pub/octave'. Complete
424 source and binaries for several popular systems are available.
426 Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords.
428 Keybindings
429 ===========
431 \\{octave-mode-map}
433 Variables you can use to customize Octave mode
434 ==============================================
436 `octave-auto-indent'
437 Non-nil means indent current line after a semicolon or space.
438 Default is nil.
440 `octave-auto-newline'
441 Non-nil means auto-insert a newline and indent after a semicolon.
442 Default is nil.
444 `octave-blink-matching-block'
445 Non-nil means show matching begin of block when inserting a space,
446 newline or semicolon after an else or end keyword. Default is t.
448 `octave-block-offset'
449 Extra indentation applied to statements in block structures.
450 Default is 2.
452 `octave-continuation-offset'
453 Extra indentation applied to Octave continuation lines.
454 Default is 4.
456 `octave-continuation-string'
457 String used for Octave continuation lines.
458 Default is a backslash.
460 `octave-send-echo-input'
461 Non-nil means always display `inferior-octave-buffer' after sending a
462 command to the inferior Octave process.
464 `octave-send-line-auto-forward'
465 Non-nil means always go to the next unsent line of Octave code after
466 sending a line to the inferior Octave process.
468 `octave-send-echo-input'
469 Non-nil means echo input sent to the inferior Octave process.
471 Turning on Octave mode runs the hook `octave-mode-hook'.
473 To begin using this mode for all `.m' files that you edit, add the
474 following lines to your `.emacs' file:
476 (add-to-list 'auto-mode-alist '(\"\\\\.m\\\\'\" . octave-mode))
478 To automatically turn on the abbrev and auto-fill features,
479 add the following lines to your `.emacs' file as well:
481 (add-hook 'octave-mode-hook
482 (lambda ()
483 (abbrev-mode 1)
484 (auto-fill-mode 1)))
486 To submit a problem report, enter \\[octave-submit-bug-report] from \
487 an Octave mode buffer.
488 This automatically sets up a mail buffer with version information
489 already added. You just need to add a description of the problem,
490 including a reproducible test case and send the message."
491 (interactive)
492 (kill-all-local-variables)
494 (use-local-map octave-mode-map)
495 (setq major-mode 'octave-mode)
496 (setq mode-name "Octave")
497 (setq local-abbrev-table octave-abbrev-table)
498 (set-syntax-table octave-mode-syntax-table)
500 (make-local-variable 'indent-line-function)
501 (setq indent-line-function 'octave-indent-line)
503 (make-local-variable 'comment-start)
504 (setq comment-start octave-comment-start)
505 (make-local-variable 'comment-end)
506 (setq comment-end "")
507 (make-local-variable 'comment-column)
508 (setq comment-column 32)
509 (make-local-variable 'comment-start-skip)
510 (setq comment-start-skip "\\s<+\\s-*")
511 (make-local-variable 'comment-indent-function)
512 (setq comment-indent-function 'octave-comment-indent)
514 (make-local-variable 'parse-sexp-ignore-comments)
515 (setq parse-sexp-ignore-comments t)
516 (make-local-variable 'paragraph-start)
517 (setq paragraph-start (concat "\\s-*$\\|" page-delimiter))
518 (make-local-variable 'paragraph-separate)
519 (setq paragraph-separate paragraph-start)
520 (make-local-variable 'paragraph-ignore-fill-prefix)
521 (setq paragraph-ignore-fill-prefix t)
522 (make-local-variable 'fill-paragraph-function)
523 (setq fill-paragraph-function 'octave-fill-paragraph)
524 (make-local-variable 'adaptive-fill-regexp)
525 (setq adaptive-fill-regexp nil)
526 (make-local-variable 'fill-column)
527 (setq fill-column 72)
528 (make-local-variable 'normal-auto-fill-function)
529 (setq normal-auto-fill-function 'octave-auto-fill)
531 (make-local-variable 'font-lock-defaults)
532 (setq font-lock-defaults '(octave-font-lock-keywords nil nil))
534 (make-local-variable 'imenu-generic-expression)
535 (setq imenu-generic-expression octave-mode-imenu-generic-expression
536 imenu-case-fold-search nil)
538 (octave-add-octave-menu)
539 (octave-initialize-completions)
540 (run-mode-hooks 'octave-mode-hook))
542 (defun octave-help ()
543 "Get help on Octave symbols from the Octave info files.
544 Look up symbol in the function, operator and variable indices of the info files."
545 (let ((info-lookup-mode 'octave-mode))
546 (call-interactively 'info-lookup-symbol)))
548 ;;; Miscellaneous useful functions
549 (defun octave-describe-major-mode ()
550 "Describe the current major mode."
551 (interactive)
552 (describe-function major-mode))
554 (defsubst octave-in-comment-p ()
555 "Return t if point is inside an Octave comment."
556 (interactive)
557 (save-excursion
558 (nth 4 (parse-partial-sexp (line-beginning-position) (point)))))
560 (defsubst octave-in-string-p ()
561 "Return t if point is inside an Octave string."
562 (interactive)
563 (save-excursion
564 (nth 3 (parse-partial-sexp (line-beginning-position) (point)))))
566 (defsubst octave-not-in-string-or-comment-p ()
567 "Return t if point is not inside an Octave string or comment."
568 (let ((pps (parse-partial-sexp (line-beginning-position) (point))))
569 (not (or (nth 3 pps) (nth 4 pps)))))
571 (defun octave-in-block-p ()
572 "Return t if point is inside an Octave block.
573 The block is taken to start at the first letter of the begin keyword and
574 to end after the end keyword."
575 (let ((pos (point)))
576 (save-excursion
577 (condition-case nil
578 (progn
579 (skip-syntax-forward "w")
580 (octave-up-block -1)
581 (octave-forward-block)
583 (error nil))
584 (< pos (point)))))
586 (defun octave-looking-at-kw (regexp)
587 "Like `looking-at', but sets `case-fold-search' nil."
588 (let ((case-fold-search nil))
589 (looking-at regexp)))
591 (defun octave-re-search-forward-kw (regexp count)
592 "Like `re-search-forward', but sets `case-fold-search' nil, and moves point."
593 (let ((case-fold-search nil))
594 (re-search-forward regexp nil 'move count)))
596 (defun octave-re-search-backward-kw (regexp count)
597 "Like `re-search-backward', but sets `case-fold-search' nil, and moves point."
598 (let ((case-fold-search nil))
599 (re-search-backward regexp nil 'move count)))
601 (defun octave-in-defun-p ()
602 "Return t if point is inside an Octave function declaration.
603 The function is taken to start at the `f' of `function' and to end after
604 the end keyword."
605 (let ((pos (point)))
606 (save-excursion
607 (or (and (octave-looking-at-kw "\\<function\\>")
608 (octave-not-in-string-or-comment-p))
609 (and (octave-beginning-of-defun)
610 (condition-case nil
611 (progn
612 (octave-forward-block)
614 (error nil))
615 (< pos (point)))))))
617 (defun octave-maybe-insert-continuation-string ()
618 (if (or (octave-in-comment-p)
619 (save-excursion
620 (beginning-of-line)
621 (looking-at octave-continuation-regexp)))
623 (delete-horizontal-space)
624 (insert (concat " " octave-continuation-string))))
626 ;;; Comments
627 (defun octave-comment-region (beg end &optional arg)
628 "Comment or uncomment each line in the region as Octave code.
629 See `comment-region'."
630 (interactive "r\nP")
631 (let ((comment-start (char-to-string octave-comment-char)))
632 (comment-region beg end arg)))
634 (defun octave-uncomment-region (beg end &optional arg)
635 "Uncomment each line in the region as Octave code."
636 (interactive "r\nP")
637 (or arg (setq arg 1))
638 (octave-comment-region beg end (- arg)))
641 ;;; Indentation
642 (defun calculate-octave-indent ()
643 "Return appropriate indentation for current line as Octave code.
644 Returns an integer (the column to indent to) unless the line is a
645 comment line with fixed goal golumn. In that case, returns a list whose
646 car is the column to indent to, and whose cdr is the current indentation
647 level."
648 (let ((is-continuation-line
649 (save-excursion
650 (if (zerop (octave-previous-code-line))
651 (looking-at octave-continuation-regexp))))
652 (icol 0))
653 (save-excursion
654 (beginning-of-line)
655 ;; If we can move backward out one level of parentheses, take 1
656 ;; plus the indentation of that parenthesis. Otherwise, go back
657 ;; to the beginning of the previous code line, and compute the
658 ;; offset this line gives.
659 (if (condition-case nil
660 (progn
661 (up-list -1)
663 (error nil))
664 (setq icol (+ 1 (current-column)))
665 (if (zerop (octave-previous-code-line))
666 (progn
667 (octave-beginning-of-line)
668 (back-to-indentation)
669 (setq icol (current-column))
670 (let ((bot (point))
671 (eol (line-end-position)))
672 (while (< (point) eol)
673 (if (octave-not-in-string-or-comment-p)
674 (cond
675 ((octave-looking-at-kw "\\<switch\\>")
676 (setq icol (+ icol (* 2 octave-block-offset))))
677 ((octave-looking-at-kw octave-block-begin-regexp)
678 (setq icol (+ icol octave-block-offset)))
679 ((octave-looking-at-kw octave-block-else-regexp)
680 (if (= bot (point))
681 (setq icol (+ icol octave-block-offset))))
682 ((octave-looking-at-kw octave-block-end-regexp)
683 (if (not (= bot (point)))
684 (setq icol (- icol
685 (octave-block-end-offset)))))))
686 (forward-char)))
687 (if is-continuation-line
688 (setq icol (+ icol octave-continuation-offset)))))))
689 (save-excursion
690 (back-to-indentation)
691 (cond
692 ((and (octave-looking-at-kw octave-block-else-regexp)
693 (octave-not-in-string-or-comment-p))
694 (setq icol (- icol octave-block-offset)))
695 ((and (octave-looking-at-kw octave-block-end-regexp)
696 (octave-not-in-string-or-comment-p))
697 (setq icol (- icol (octave-block-end-offset))))
698 ((or (looking-at "\\s<\\s<\\s<\\S<")
699 (octave-before-magic-comment-p))
700 (setq icol (list 0 icol)))
701 ((looking-at "\\s<\\S<")
702 (setq icol (list comment-column icol)))))
703 icol))
705 (defun octave-block-end-offset ()
706 (save-excursion
707 (octave-backward-up-block 1)
708 (* octave-block-offset
709 (if (string-match (match-string 0) "switch") 2 1))))
711 (defun octave-before-magic-comment-p ()
712 (save-excursion
713 (beginning-of-line)
714 (and (bobp) (looking-at "\\s-*#!"))))
716 (defun octave-comment-indent ()
717 (if (or (looking-at "\\s<\\s<\\s<")
718 (octave-before-magic-comment-p))
720 (if (looking-at "\\s<\\s<")
721 (calculate-octave-indent)
722 (skip-syntax-backward " ")
723 (max (if (bolp) 0 (+ 1 (current-column)))
724 comment-column))))
726 (defun octave-indent-for-comment ()
727 "Maybe insert and indent an Octave comment.
728 If there is no comment already on this line, create a code-level comment
729 \(started by two comment characters) if the line is empty, or an in-line
730 comment (started by one comment character) otherwise.
731 Point is left after the start of the comment which is properly aligned."
732 (interactive)
733 (beginning-of-line)
734 (if (looking-at "^\\s-*$")
735 (insert octave-block-comment-start)
736 (indent-for-comment))
737 (indent-according-to-mode))
739 (defun octave-indent-line (&optional arg)
740 "Indent current line as Octave code.
741 With optional ARG, use this as offset unless this line is a comment with
742 fixed goal column."
743 (interactive)
744 (or arg (setq arg 0))
745 (let ((icol (calculate-octave-indent))
746 (relpos (- (current-column) (current-indentation))))
747 (if (listp icol)
748 (setq icol (car icol))
749 (setq icol (+ icol arg)))
750 (if (< icol 0)
751 (error "Unmatched end keyword")
752 (indent-line-to icol)
753 (if (> relpos 0)
754 (move-to-column (+ icol relpos))))))
756 (defun octave-indent-new-comment-line ()
757 "Break Octave line at point, continuing comment if within one.
758 If within code, insert `octave-continuation-string' before breaking the
759 line. If within a string, signal an error.
760 The new line is properly indented."
761 (interactive)
762 (delete-horizontal-space)
763 (cond
764 ((octave-in-comment-p)
765 (indent-new-comment-line))
766 ((octave-in-string-p)
767 (error "Cannot split a code line inside a string"))
769 (insert (concat " " octave-continuation-string))
770 (octave-reindent-then-newline-and-indent))))
772 (defun octave-indent-defun ()
773 "Properly indent the Octave function which contains point."
774 (interactive)
775 (save-excursion
776 (octave-mark-defun)
777 (message "Indenting function...")
778 (indent-region (point) (mark) nil))
779 (message "Indenting function...done."))
782 ;;; Motion
783 (defun octave-next-code-line (&optional arg)
784 "Move ARG lines of Octave code forward (backward if ARG is negative).
785 Skips past all empty and comment lines. Default for ARG is 1.
787 On success, return 0. Otherwise, go as far as possible and return -1."
788 (interactive "p")
789 (or arg (setq arg 1))
790 (beginning-of-line)
791 (let ((n 0)
792 (inc (if (> arg 0) 1 -1)))
793 (while (and (/= arg 0) (= n 0))
794 (setq n (forward-line inc))
795 (while (and (= n 0)
796 (looking-at "\\s-*\\($\\|\\s<\\)"))
797 (setq n (forward-line inc)))
798 (setq arg (- arg inc)))
801 (defun octave-previous-code-line (&optional arg)
802 "Move ARG lines of Octave code backward (forward if ARG is negative).
803 Skips past all empty and comment lines. Default for ARG is 1.
805 On success, return 0. Otherwise, go as far as possible and return -1."
806 (interactive "p")
807 (or arg (setq arg 1))
808 (octave-next-code-line (- arg)))
810 (defun octave-beginning-of-line ()
811 "Move point to beginning of current Octave line.
812 If on an empty or comment line, go to the beginning of that line.
813 Otherwise, move backward to the beginning of the first Octave code line
814 which is not inside a continuation statement, i.e., which does not
815 follow a code line ending in `...' or `\\', or is inside an open
816 parenthesis list."
817 (interactive)
818 (beginning-of-line)
819 (if (not (looking-at "\\s-*\\($\\|\\s<\\)"))
820 (while (or (condition-case nil
821 (progn
822 (up-list -1)
823 (beginning-of-line)
825 (error nil))
826 (and (or (looking-at "\\s-*\\($\\|\\s<\\)")
827 (save-excursion
828 (if (zerop (octave-previous-code-line))
829 (looking-at octave-continuation-regexp))))
830 (zerop (forward-line -1)))))))
832 (defun octave-end-of-line ()
833 "Move point to end of current Octave line.
834 If on an empty or comment line, go to the end of that line.
835 Otherwise, move forward to the end of the first Octave code line which
836 does not end in `...' or `\\' or is inside an open parenthesis list."
837 (interactive)
838 (end-of-line)
839 (if (save-excursion
840 (beginning-of-line)
841 (looking-at "\\s-*\\($\\|\\s<\\)"))
843 (while (or (condition-case nil
844 (progn
845 (up-list 1)
846 (end-of-line)
848 (error nil))
849 (and (save-excursion
850 (beginning-of-line)
851 (or (looking-at "\\s-*\\($\\|\\s<\\)")
852 (looking-at octave-continuation-regexp)))
853 (zerop (forward-line 1)))))
854 (end-of-line)))
856 (defun octave-scan-blocks (count depth)
857 "Scan from point by COUNT Octave begin-end blocks.
858 Returns the character number of the position thus found.
860 If DEPTH is nonzero, block depth begins counting from that value.
861 Only places where the depth in blocks becomes zero are candidates for
862 stopping; COUNT such places are counted.
864 If the beginning or end of the buffer is reached and the depth is wrong,
865 an error is signaled."
866 (let ((min-depth (if (> depth 0) 0 depth))
867 (inc (if (> count 0) 1 -1)))
868 (save-excursion
869 (while (/= count 0)
870 (catch 'foo
871 (while (or (octave-re-search-forward-kw
872 octave-block-begin-or-end-regexp inc)
873 (if (/= depth 0)
874 (error "Unbalanced block")))
875 (if (octave-not-in-string-or-comment-p)
876 (progn
877 (cond
878 ((match-end 1)
879 (setq depth (+ depth inc)))
880 ((match-end 2)
881 (setq depth (- depth inc))))
882 (if (< depth min-depth)
883 (error "Containing expression ends prematurely"))
884 (if (= depth 0)
885 (throw 'foo nil))))))
886 (setq count (- count inc)))
887 (point))))
889 (defun octave-forward-block (&optional arg)
890 "Move forward across one balanced Octave begin-end block.
891 With argument, do it that many times.
892 Negative arg -N means move backward across N blocks."
893 (interactive "p")
894 (or arg (setq arg 1))
895 (goto-char (or (octave-scan-blocks arg 0) (buffer-end arg))))
897 (defun octave-backward-block (&optional arg)
898 "Move backward across one balanced Octave begin-end block.
899 With argument, do it that many times.
900 Negative arg -N means move forward across N blocks."
901 (interactive "p")
902 (or arg (setq arg 1))
903 (octave-forward-block (- arg)))
905 (defun octave-down-block (arg)
906 "Move forward down one begin-end block level of Octave code.
907 With argument, do this that many times.
908 A negative argument means move backward but still go down a level.
909 In Lisp programs, an argument is required."
910 (interactive "p")
911 (let ((inc (if (> arg 0) 1 -1)))
912 (while (/= arg 0)
913 (goto-char (or (octave-scan-blocks inc -1)
914 (buffer-end arg)))
915 (setq arg (- arg inc)))))
917 (defun octave-backward-up-block (arg)
918 "Move backward out of one begin-end block level of Octave code.
919 With argument, do this that many times.
920 A negative argument means move forward but still to a less deep spot.
921 In Lisp programs, an argument is required."
922 (interactive "p")
923 (octave-up-block (- arg)))
925 (defun octave-up-block (arg)
926 "Move forward out of one begin-end block level of Octave code.
927 With argument, do this that many times.
928 A negative argument means move backward but still to a less deep spot.
929 In Lisp programs, an argument is required."
930 (interactive "p")
931 (let ((inc (if (> arg 0) 1 -1)))
932 (while (/= arg 0)
933 (goto-char (or (octave-scan-blocks inc 1)
934 (buffer-end arg)))
935 (setq arg (- arg inc)))))
937 (defun octave-mark-block ()
938 "Put point at the beginning of this Octave block, mark at the end.
939 The block marked is the one that contains point or follows point."
940 (interactive)
941 (let ((pos (point)))
942 (if (or (and (octave-in-block-p)
943 (skip-syntax-forward "w"))
944 (condition-case nil
945 (progn
946 (octave-down-block 1)
947 (octave-in-block-p))
948 (error nil)))
949 (progn
950 (octave-up-block -1)
951 (push-mark (point))
952 (octave-forward-block)
953 (exchange-point-and-mark))
954 (goto-char pos)
955 (message "No block to mark found"))))
957 (defun octave-close-block ()
958 "Close the current Octave block on a separate line.
959 An error is signaled if no block to close is found."
960 (interactive)
961 (let (bb-keyword)
962 (condition-case nil
963 (progn
964 (save-excursion
965 (octave-backward-up-block 1)
966 (setq bb-keyword (buffer-substring-no-properties
967 (match-beginning 1) (match-end 1))))
968 (if (save-excursion
969 (beginning-of-line)
970 (looking-at "^\\s-*$"))
971 (indent-according-to-mode)
972 (octave-reindent-then-newline-and-indent))
973 (insert (car (reverse
974 (assoc bb-keyword
975 octave-block-match-alist))))
976 (octave-reindent-then-newline-and-indent)
978 (error (message "No block to close found")))))
980 (defun octave-blink-matching-block-open ()
981 "Blink the matching Octave begin block keyword.
982 If point is right after an Octave else or end type block keyword, move
983 cursor momentarily to the corresponding begin keyword.
984 Signal an error if the keywords are incompatible."
985 (interactive)
986 (let (bb-keyword bb-arg eb-keyword pos eol)
987 (if (and (octave-not-in-string-or-comment-p)
988 (looking-at "\\>")
989 (save-excursion
990 (skip-syntax-backward "w")
991 (octave-looking-at-kw octave-block-else-or-end-regexp)))
992 (save-excursion
993 (cond
994 ((match-end 1)
995 (setq eb-keyword
996 (buffer-substring-no-properties
997 (match-beginning 1) (match-end 1)))
998 (octave-backward-up-block 1))
999 ((match-end 2)
1000 (setq eb-keyword
1001 (buffer-substring-no-properties
1002 (match-beginning 2) (match-end 2)))
1003 (octave-backward-block)))
1004 (setq pos (match-end 0)
1005 bb-keyword
1006 (buffer-substring-no-properties
1007 (match-beginning 0) pos)
1008 pos (+ pos 1)
1009 eol (line-end-position)
1010 bb-arg
1011 (save-excursion
1012 (save-restriction
1013 (goto-char pos)
1014 (while (and (skip-syntax-forward "^<" eol)
1015 (octave-in-string-p)
1016 (not (forward-char 1))))
1017 (skip-syntax-backward " ")
1018 (buffer-substring-no-properties pos (point)))))
1019 (if (member eb-keyword
1020 (cdr (assoc bb-keyword octave-block-match-alist)))
1021 (progn
1022 (message "Matches `%s %s'" bb-keyword bb-arg)
1023 (if (pos-visible-in-window-p)
1024 (sit-for blink-matching-delay)))
1025 (error "Block keywords `%s' and `%s' do not match"
1026 bb-keyword eb-keyword))))))
1028 (defun octave-beginning-of-defun (&optional arg)
1029 "Move backward to the beginning of an Octave function.
1030 With positive ARG, do it that many times. Negative argument -N means
1031 move forward to Nth following beginning of a function.
1032 Returns t unless search stops at the beginning or end of the buffer."
1033 (interactive "p")
1034 (let* ((arg (or arg 1))
1035 (inc (if (> arg 0) 1 -1))
1036 (found))
1037 (and (not (eobp))
1038 (not (and (> arg 0) (octave-looking-at-kw "\\<function\\>")))
1039 (skip-syntax-forward "w"))
1040 (while (and (/= arg 0)
1041 (setq found
1042 (octave-re-search-backward-kw "\\<function\\>" inc)))
1043 (if (octave-not-in-string-or-comment-p)
1044 (setq arg (- arg inc))))
1045 (if found
1046 (progn
1047 (and (< inc 0) (goto-char (match-beginning 0)))
1048 t))))
1050 (defun octave-end-of-defun (&optional arg)
1051 "Move forward to the end of an Octave function.
1052 With positive ARG, do it that many times. Negative argument -N means
1053 move back to Nth preceding end of a function.
1055 An end of a function occurs right after the end keyword matching the
1056 `function' keyword that starts the function."
1057 (interactive "p")
1058 (or arg (setq arg 1))
1059 (and (< arg 0) (skip-syntax-backward "w"))
1060 (and (> arg 0) (skip-syntax-forward "w"))
1061 (if (octave-in-defun-p)
1062 (setq arg (- arg 1)))
1063 (if (= arg 0) (setq arg -1))
1064 (if (octave-beginning-of-defun (- arg))
1065 (octave-forward-block)))
1067 (defun octave-mark-defun ()
1068 "Put point at the beginning of this Octave function, mark at its end.
1069 The function marked is the one containing point or following point."
1070 (interactive)
1071 (let ((pos (point)))
1072 (if (or (octave-in-defun-p)
1073 (and (octave-beginning-of-defun -1)
1074 (octave-in-defun-p)))
1075 (progn
1076 (skip-syntax-forward "w")
1077 (octave-beginning-of-defun)
1078 (push-mark (point))
1079 (octave-end-of-defun)
1080 (exchange-point-and-mark))
1081 (goto-char pos)
1082 (message "No function to mark found"))))
1085 ;;; Filling
1086 (defun octave-auto-fill ()
1087 "Perform auto-fill in Octave mode.
1088 Returns nil if no feasible place to break the line could be found, and t
1089 otherwise."
1090 (let (fc give-up)
1091 (if (or (null (setq fc (current-fill-column)))
1092 (save-excursion
1093 (beginning-of-line)
1094 (and auto-fill-inhibit-regexp
1095 (octave-looking-at-kw auto-fill-inhibit-regexp))))
1096 nil ; Can't do anything
1097 (if (and (not (octave-in-comment-p))
1098 (> (current-column) fc))
1099 (setq fc (- fc (+ (length octave-continuation-string) 1))))
1100 (while (and (not give-up) (> (current-column) fc))
1101 (let* ((opoint (point))
1102 (fpoint
1103 (save-excursion
1104 (move-to-column (+ fc 1))
1105 (skip-chars-backward "^ \t\n")
1106 ;; If we're at the beginning of the line, break after
1107 ;; the first word
1108 (if (bolp)
1109 (re-search-forward "[ \t]" opoint t))
1110 ;; If we're in a comment line, don't break after the
1111 ;; comment chars
1112 (if (save-excursion
1113 (skip-syntax-backward " <")
1114 (bolp))
1115 (re-search-forward "[ \t]" (line-end-position)
1116 'move))
1117 ;; If we're not in a comment line and just ahead the
1118 ;; continuation string, don't break here.
1119 (if (and (not (octave-in-comment-p))
1120 (looking-at
1121 (concat "\\s-*"
1122 (regexp-quote
1123 octave-continuation-string)
1124 "\\s-*$")))
1125 (end-of-line))
1126 (skip-chars-backward " \t")
1127 (point))))
1128 (if (save-excursion
1129 (goto-char fpoint)
1130 (not (or (bolp) (eolp))))
1131 (let ((prev-column (current-column)))
1132 (if (save-excursion
1133 (skip-chars-backward " \t")
1134 (= (point) fpoint))
1135 (progn
1136 (octave-maybe-insert-continuation-string)
1137 (indent-new-comment-line t))
1138 (save-excursion
1139 (goto-char fpoint)
1140 (octave-maybe-insert-continuation-string)
1141 (indent-new-comment-line t)))
1142 (if (>= (current-column) prev-column)
1143 (setq give-up t)))
1144 (setq give-up t))))
1145 (not give-up))))
1147 (defun octave-fill-paragraph (&optional arg)
1148 "Fill paragraph of Octave code, handling Octave comments."
1149 ;; FIXME: now that the default fill-paragraph takes care of similar issues,
1150 ;; this seems obsolete. --Stef
1151 (interactive "P")
1152 (save-excursion
1153 (let ((end (progn (forward-paragraph) (point)))
1154 (beg (progn
1155 (forward-paragraph -1)
1156 (skip-chars-forward " \t\n")
1157 (beginning-of-line)
1158 (point)))
1159 (cfc (current-fill-column))
1160 (ind (calculate-octave-indent))
1161 comment-prefix)
1162 (save-restriction
1163 (goto-char beg)
1164 (narrow-to-region beg end)
1165 (if (listp ind) (setq ind (nth 1 ind)))
1166 (while (not (eobp))
1167 (condition-case nil
1168 (octave-indent-line ind)
1169 (error nil))
1170 (if (and (> ind 0)
1171 (not
1172 (save-excursion
1173 (beginning-of-line)
1174 (looking-at "^\\s-*\\($\\|\\s<+\\)"))))
1175 (setq ind 0))
1176 (move-to-column cfc)
1177 ;; First check whether we need to combine non-empty comment lines
1178 (if (and (< (current-column) cfc)
1179 (octave-in-comment-p)
1180 (not (save-excursion
1181 (beginning-of-line)
1182 (looking-at "^\\s-*\\s<+\\s-*$"))))
1183 ;; This is a nonempty comment line which does not extend
1184 ;; past the fill column. If it is followed by a nonempty
1185 ;; comment line with the same comment prefix, try to
1186 ;; combine them, and repeat this until either we reach the
1187 ;; fill-column or there is nothing more to combine.
1188 (progn
1189 ;; Get the comment prefix
1190 (save-excursion
1191 (beginning-of-line)
1192 (while (and (re-search-forward "\\s<+")
1193 (not (octave-in-comment-p))))
1194 (setq comment-prefix (match-string 0)))
1195 ;; And keep combining ...
1196 (while (and (< (current-column) cfc)
1197 (save-excursion
1198 (forward-line 1)
1199 (and (looking-at
1200 (concat "^\\s-*"
1201 comment-prefix
1202 "\\S<"))
1203 (not (looking-at
1204 (concat "^\\s-*"
1205 comment-prefix
1206 "\\s-*$"))))))
1207 (delete-char 1)
1208 (re-search-forward comment-prefix)
1209 (delete-region (match-beginning 0) (match-end 0))
1210 (fixup-whitespace)
1211 (move-to-column cfc))))
1212 ;; We might also try to combine continued code lines> Perhaps
1213 ;; some other time ...
1214 (skip-chars-forward "^ \t\n")
1215 (delete-horizontal-space)
1216 (if (or (< (current-column) cfc)
1217 (and (= (current-column) cfc) (eolp)))
1218 (forward-line 1)
1219 (if (not (eolp)) (insert " "))
1220 (or (octave-auto-fill)
1221 (forward-line 1)))))
1222 t)))
1225 ;;; Completions
1226 (defun octave-initialize-completions ()
1227 "Create an alist for Octave completions."
1228 (if octave-completion-alist
1230 (setq octave-completion-alist
1231 (mapcar '(lambda (var) (cons var var))
1232 (append octave-reserved-words
1233 octave-text-functions
1234 octave-variables)))))
1236 (defun octave-complete-symbol ()
1237 "Perform completion on Octave symbol preceding point.
1238 Compare that symbol against Octave's reserved words and builtin
1239 variables."
1240 (interactive)
1241 (let* ((end (point))
1242 (beg (save-excursion (backward-sexp 1) (point))))
1243 (completion-in-region beg end octave-completion-alist)))
1246 ;;; Electric characters && friends
1247 (defun octave-reindent-then-newline-and-indent ()
1248 "Reindent current Octave line, insert newline, and indent the new line.
1249 If Abbrev mode is on, expand abbrevs first."
1250 (interactive)
1251 (if abbrev-mode (expand-abbrev))
1252 (if octave-blink-matching-block
1253 (octave-blink-matching-block-open))
1254 (save-excursion
1255 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
1256 (indent-according-to-mode))
1257 (insert "\n")
1258 (indent-according-to-mode))
1260 (defun octave-electric-semi ()
1261 "Insert a semicolon in Octave mode.
1262 Maybe expand abbrevs and blink matching block open keywords.
1263 Reindent the line if `octave-auto-indent' is non-nil.
1264 Insert a newline if `octave-auto-newline' is non-nil."
1265 (interactive)
1266 (if (not (octave-not-in-string-or-comment-p))
1267 (insert ";")
1268 (if abbrev-mode (expand-abbrev))
1269 (if octave-blink-matching-block
1270 (octave-blink-matching-block-open))
1271 (if octave-auto-indent
1272 (indent-according-to-mode))
1273 (insert ";")
1274 (if octave-auto-newline
1275 (newline-and-indent))))
1277 (defun octave-electric-space ()
1278 "Insert a space in Octave mode.
1279 Maybe expand abbrevs and blink matching block open keywords.
1280 Reindent the line if `octave-auto-indent' is non-nil."
1281 (interactive)
1282 (setq last-command-event ? )
1283 (if (and octave-auto-indent
1284 (not (octave-not-in-string-or-comment-p)))
1285 (progn
1286 (indent-according-to-mode)
1287 (self-insert-command 1))
1288 (if abbrev-mode (expand-abbrev))
1289 (if octave-blink-matching-block
1290 (octave-blink-matching-block-open))
1291 (if (and octave-auto-indent
1292 (save-excursion
1293 (skip-syntax-backward " ")
1294 (not (bolp))))
1295 (indent-according-to-mode))
1296 (self-insert-command 1)))
1298 (defun octave-abbrev-start ()
1299 "Start entering an Octave abbreviation.
1300 If Abbrev mode is turned on, typing ` (grave accent) followed by ? or
1301 \\[help-command] lists all Octave abbrevs. Any other key combination is
1302 executed normally.
1303 Note that all Octave mode abbrevs start with a grave accent."
1304 (interactive)
1305 (if (not abbrev-mode)
1306 (self-insert-command 1)
1307 (let (c)
1308 (insert last-command-event)
1309 (if (if (featurep 'xemacs)
1310 (or (eq (event-to-character (setq c (next-event))) ??)
1311 (eq (event-to-character c) help-char))
1312 (or (eq (setq c (read-event)) ??)
1313 (eq c help-char)))
1314 (let ((abbrev-table-name-list '(octave-abbrev-table)))
1315 (list-abbrevs))
1316 (setq unread-command-events (list c))))))
1318 (defun octave-insert-defun (name args vals)
1319 "Insert an Octave function skeleton.
1320 Prompt for the function's name, arguments and return values (to be
1321 entered without parens)."
1322 (interactive
1323 (list
1324 (read-from-minibuffer "Function name: "
1325 (substring (buffer-name) 0 -2))
1326 (read-from-minibuffer "Arguments: ")
1327 (read-from-minibuffer "Return values: ")))
1328 (let ((string (format "%s %s (%s)"
1329 (cond
1330 ((string-equal vals "")
1331 vals)
1332 ((string-match "[ ,]" vals)
1333 (concat " [" vals "] ="))
1335 (concat " " vals " =")))
1336 name
1337 args))
1338 (prefix octave-block-comment-start))
1339 (if (not (bobp)) (newline))
1340 (insert "function" string)
1341 (indent-according-to-mode)
1342 (newline 2)
1343 (insert prefix "usage: " string)
1344 (reindent-then-newline-and-indent)
1345 (insert prefix)
1346 (reindent-then-newline-and-indent)
1347 (insert prefix)
1348 (indent-according-to-mode)
1349 (save-excursion
1350 (newline 2)
1351 (insert "endfunction")
1352 (indent-according-to-mode))))
1355 ;;; Menu
1356 (defun octave-add-octave-menu ()
1357 "Add the `Octave' menu to the menu bar in Octave mode."
1358 (require 'easymenu)
1359 (easy-menu-define octave-mode-menu-map octave-mode-map
1360 "Menu keymap for Octave mode." octave-mode-menu)
1361 (easy-menu-add octave-mode-menu-map octave-mode-map))
1364 ;;; Communication with the inferior Octave process
1365 (defun octave-kill-process ()
1366 "Kill inferior Octave process and its buffer."
1367 (interactive)
1368 (if inferior-octave-process
1369 (progn
1370 (process-send-string inferior-octave-process "quit;\n")
1371 (accept-process-output inferior-octave-process)))
1372 (if inferior-octave-buffer
1373 (kill-buffer inferior-octave-buffer)))
1375 (defun octave-show-process-buffer ()
1376 "Make sure that `inferior-octave-buffer' is displayed."
1377 (interactive)
1378 (if (get-buffer inferior-octave-buffer)
1379 (display-buffer inferior-octave-buffer)
1380 (message "No buffer named %s" inferior-octave-buffer)))
1382 (defun octave-hide-process-buffer ()
1383 "Delete all windows that display `inferior-octave-buffer'."
1384 (interactive)
1385 (if (get-buffer inferior-octave-buffer)
1386 (delete-windows-on inferior-octave-buffer)
1387 (message "No buffer named %s" inferior-octave-buffer)))
1389 (defun octave-send-region (beg end)
1390 "Send current region to the inferior Octave process."
1391 (interactive "r")
1392 (inferior-octave t)
1393 (let ((proc inferior-octave-process)
1394 (string (buffer-substring-no-properties beg end))
1395 line)
1396 (with-current-buffer inferior-octave-buffer
1397 (setq inferior-octave-output-list nil)
1398 (while (not (string-equal string ""))
1399 (if (string-match "\n" string)
1400 (setq line (substring string 0 (match-beginning 0))
1401 string (substring string (match-end 0)))
1402 (setq line string string ""))
1403 (setq inferior-octave-receive-in-progress t)
1404 (inferior-octave-send-list-and-digest (list (concat line "\n")))
1405 (while inferior-octave-receive-in-progress
1406 (accept-process-output proc))
1407 (insert-before-markers
1408 (mapconcat 'identity
1409 (append
1410 (if octave-send-echo-input (list line) (list ""))
1411 (mapcar 'inferior-octave-strip-ctrl-g
1412 inferior-octave-output-list)
1413 (list inferior-octave-output-string))
1414 "\n")))))
1415 (if octave-send-show-buffer
1416 (display-buffer inferior-octave-buffer)))
1418 (defun octave-send-block ()
1419 "Send current Octave block to the inferior Octave process."
1420 (interactive)
1421 (save-excursion
1422 (octave-mark-block)
1423 (octave-send-region (point) (mark))))
1425 (defun octave-send-defun ()
1426 "Send current Octave function to the inferior Octave process."
1427 (interactive)
1428 (save-excursion
1429 (octave-mark-defun)
1430 (octave-send-region (point) (mark))))
1432 (defun octave-send-line (&optional arg)
1433 "Send current Octave code line to the inferior Octave process.
1434 With positive prefix ARG, send that many lines.
1435 If `octave-send-line-auto-forward' is non-nil, go to the next unsent
1436 code line."
1437 (interactive "P")
1438 (or arg (setq arg 1))
1439 (if (> arg 0)
1440 (let (beg end)
1441 (beginning-of-line)
1442 (setq beg (point))
1443 (octave-next-code-line (- arg 1))
1444 (end-of-line)
1445 (setq end (point))
1446 (if octave-send-line-auto-forward
1447 (octave-next-code-line 1))
1448 (octave-send-region beg end))))
1450 (defun octave-eval-print-last-sexp ()
1451 "Evaluate Octave sexp before point and print value into current buffer."
1452 (interactive)
1453 (inferior-octave t)
1454 (let ((standard-output (current-buffer))
1455 (print-escape-newlines nil)
1456 (opoint (point)))
1457 (terpri)
1458 (prin1
1459 (save-excursion
1460 (forward-sexp -1)
1461 (inferior-octave-send-list-and-digest
1462 (list (concat (buffer-substring-no-properties (point) opoint)
1463 "\n")))
1464 (mapconcat 'identity inferior-octave-output-list "\n")))
1465 (terpri)))
1467 ;;; Bug reporting
1468 (defun octave-submit-bug-report ()
1469 "Submit a bug report on the Emacs Octave package via mail."
1470 (interactive)
1471 (require 'reporter)
1472 (and
1473 (y-or-n-p "Do you want to submit a bug report? ")
1474 (reporter-submit-bug-report
1475 octave-maintainer-address
1476 (concat "Emacs version " emacs-version)
1477 (list
1478 'octave-auto-indent
1479 'octave-auto-newline
1480 'octave-blink-matching-block
1481 'octave-block-offset
1482 'octave-comment-char
1483 'octave-continuation-offset
1484 'octave-continuation-string
1485 'octave-send-echo-input
1486 'octave-send-line-auto-forward
1487 'octave-send-show-buffer))))
1489 ;; provide ourself
1491 (provide 'octave-mod)
1493 ;; arch-tag: 05f1ce09-be87-4c00-803e-4919ffa26c23
1494 ;;; octave-mod.el ends here