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