Remove extra TAB in Greek entries.
[emacs.git] / lisp / progmodes / octave-mod.el
blob23a0cda0355a99038f5d8bd16fa71c095d1db430
1 ;;; octave-mod.el --- editing Octave source files under Emacs
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
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
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; 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.
27 ;;; Commentary:
29 ;; This package provides Emacs support for Octave.
30 ;; It defines Octave mode, a major mode for editing
31 ;; Octave code.
33 ;; The file octave-hlp.el provides `octave-help', a facility for looking up
34 ;; documentation on a symbol in the Octave info files.
36 ;; The file octave-inf.el contains code for interacting with an inferior
37 ;; Octave process using comint.
39 ;; See the documentation of `octave-mode', `octave-help' and
40 ;; `run-octave' for further information on usage and customization.
42 ;;; Code:
43 (require 'custom)
45 (defgroup octave nil
46 "Major mode for editing Octave source files."
47 :group 'languages)
49 (defvar inferior-octave-output-list nil)
50 (defvar inferior-octave-output-string nil)
51 (defvar inferior-octave-receive-in-progress nil)
53 (defconst octave-maintainer-address
54 "Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>, bug-gnu-emacs@gnu.org"
55 "Current maintainer of the Emacs Octave package.")
57 (defvar octave-abbrev-table nil
58 "Abbrev table for Octave's reserved words.
59 Used in `octave-mode' and inferior-octave-mode buffers.
60 All Octave abbrevs start with a grave accent (`).")
61 (unless octave-abbrev-table
62 (let ((ac abbrevs-changed))
63 (define-abbrev-table 'octave-abbrev-table ())
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)
92 (setq abbrevs-changed ac)))
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.")
102 (defvar octave-begin-keywords
103 '("for" "function" "if" "switch" "try" "unwind_protect" "while"))
104 (defvar octave-else-keywords
105 '("case" "catch" "else" "elseif" "otherwise" "unwind_protect_cleanup"))
106 (defvar octave-end-keywords
107 '("end" "endfor" "endfunction" "endif" "endswitch" "end_try_catch"
108 "end_unwind_protect" "endwhile"))
110 (defvar octave-reserved-words
111 (append octave-begin-keywords
112 octave-else-keywords
113 octave-end-keywords
114 '("all_va_args" "break" "continue" "global" "gplot" "gsplot"
115 "replot" "return"))
116 "Reserved words in Octave.")
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).")
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.")
161 (defvar octave-function-header-regexp
162 (concat "^\\s-*\\<\\(function\\)\\>"
163 "\\([^=;\n]*=[ \t]*\\|[ \t]*\\)\\(\\w+\\)\\>")
164 "Regexp to match an Octave function header.
165 The string `function' and its name are given by the first and third
166 parenthetical grouping.")
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 "\\(&\\||\\|<=\\|>=\\|==\\|<\\|>\\|!=\\|!\\)"
178 (if (boundp 'font-lock-builtin-face)
179 'font-lock-builtin-face
180 'font-lock-preprocessor-face))
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.")
192 (defcustom inferior-octave-buffer "*Inferior Octave*"
193 "*Name of buffer for running an inferior Octave process."
194 :type 'string
195 :group 'octave-inferior)
197 (defvar inferior-octave-process nil)
199 (defvar octave-mode-map nil
200 "Keymap used in Octave mode.")
201 (if octave-mode-map
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)
210 (define-key map "\e\n" 'octave-indent-new-comment-line)
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)
215 (define-key map "\M-\C-q" 'octave-indent-defun)
216 (define-key map "\C-c;" 'octave-comment-region)
217 (define-key map "\C-c:" 'octave-uncomment-region)
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)
222 (define-key map "\C-c\C-e" 'octave-end-of-line)
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)
229 (define-key map "\C-c\C-f" 'octave-insert-defun)
230 (define-key map "\C-c\C-h" 'octave-help)
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)
234 (define-key map "\C-c\C-ir" 'octave-send-region)
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)
241 (define-key map "\C-c\C-i\C-r" 'octave-send-region)
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)
245 (setq octave-mode-map map)))
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])
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])
278 ["Indent Line" indent-according-to-mode t]
279 ["Complete Symbol" octave-complete-symbol t]
281 ["Toggle Abbrev Mode" abbrev-mode t]
282 ["Toggle Auto-Fill Mode" auto-fill-mode t]
284 ["Submit Bug Report" octave-submit-bug-report t]
286 ["Describe Octave Mode" octave-describe-major-mode t]
287 ["Lookup Octave Index" octave-help t])
288 "Menu for Octave mode.")
290 (defvar octave-mode-syntax-table nil
291 "Syntax table in use in octave-mode buffers.")
292 (if octave-mode-syntax-table
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)))
317 (defcustom octave-auto-indent nil
318 "*Non-nil means indent line after a semicolon or space in Octave mode."
319 :type 'boolean
320 :group 'octave)
322 (defcustom octave-auto-newline nil
323 "*Non-nil means automatically newline after a semicolon in Octave mode."
324 :type 'boolean
325 :group 'octave)
327 (defcustom octave-blink-matching-block t
328 "*Control the blinking of matching Octave block keywords.
329 Non-nil means show matching begin of block when inserting a space,
330 newline 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)
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"))
358 ("switch" . ("case" "otherwise" "end" "endswitch"))
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.
364 Has Octave's begin keywords as keys and a list of the matching else or
365 end keywords as associated values.")
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.")
371 (defcustom octave-continuation-offset 4
372 "*Extra indentation applied to Octave continuation lines."
373 :type 'integer
374 :group 'octave)
375 (defvar octave-continuation-regexp
376 "[^#%\n]*\\(\\\\\\|\\.\\.\\.\\)\\s-*\\(\\s<.*\\)?$")
377 (defcustom octave-continuation-string "\\"
378 "*Character string used for Octave continuation lines. Normally \\."
379 :type 'string
380 :group 'octave)
382 (defvar octave-completion-alist nil
383 "Alist of Octave symbols for completion in Octave mode.
384 Each element looks like (VAR . VAR), where the car and cdr are the same
385 symbol (an Octave command or variable name).
386 Currently, only builtin variables can be completed.")
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'.")
394 (defcustom octave-mode-startup-message t
395 "*nil means do not display the Octave mode startup message."
396 :type 'boolean
397 :group 'octave)
399 (defcustom octave-mode-hook nil
400 "*Hook to be run when Octave mode is started."
401 :type 'hook
402 :group 'octave)
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
409 "*Control auto-forward after sending to the inferior Octave process.
410 Non-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)
419 ;;;###autoload
420 (defun octave-mode ()
421 "Major mode for editing Octave code.
423 This mode makes it easier to write Octave code by helping with
424 indentation, doing some of the typing for you (with Abbrev mode) and by
425 showing keywords, comments, strings, etc. in different faces (with
426 Font Lock mode on terminals that support it).
428 Octave itself is a high-level language, primarily intended for numerical
429 computations. It provides a convenient command line interface for
430 solving linear and nonlinear problems numerically. Function definitions
431 can also be stored in files, and it can be used in a batch mode (which
432 is why you need this mode!).
434 The latest released version of Octave is always available via anonymous
435 ftp from bevo.che.wisc.edu in the directory `/pub/octave'. Complete
436 source and binaries for several popular systems are available.
438 Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords.
440 Keybindings
441 ===========
443 \\{octave-mode-map}
445 Variables you can use to customize Octave mode
446 ==============================================
448 octave-auto-indent
449 Non-nil means indent current line after a semicolon or space.
450 Default is nil.
452 octave-auto-newline
453 Non-nil means auto-insert a newline and indent after a semicolon.
454 Default is nil.
456 octave-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.
460 octave-block-offset
461 Extra indentation applied to statements in block structures.
462 Default is 2.
464 octave-continuation-offset
465 Extra indentation applied to Octave continuation lines.
466 Default is 4.
468 octave-continuation-string
469 String used for Octave continuation lines.
470 Default is a backslash.
472 octave-mode-startup-message
473 nil means do not display the Octave mode startup message.
474 Default is t.
476 octave-send-echo-input
477 Non-nil means always display `inferior-octave-buffer' after sending a
478 command to the inferior Octave process.
480 octave-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.
484 octave-send-echo-input
485 Non-nil means echo input sent to the inferior Octave process.
487 Turning on Octave mode runs the hook `octave-mode-hook'.
489 To begin using this mode for all `.m' files that you edit, add the
490 following lines to your `.emacs' file:
492 (autoload 'octave-mode \"octave-mod\" nil t)
493 (setq auto-mode-alist
494 (cons '(\"\\\\.m$\" . octave-mode) auto-mode-alist))
496 To automatically turn on the abbrev, auto-fill and font-lock features,
497 add the following lines to your `.emacs' file as well:
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))))
506 To submit a problem report, enter \\[octave-submit-bug-report] from \
507 an Octave mode buffer.
508 This automatically sets up a mail buffer with version information
509 already added. You just need to add a description of the problem,
510 including a reproducible test case and send the message."
511 (interactive)
512 (kill-all-local-variables)
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)
520 (make-local-variable 'indent-line-function)
521 (setq indent-line-function 'octave-indent-line)
523 (make-local-variable 'comment-start)
524 (setq comment-start octave-comment-start)
525 (make-local-variable 'comment-end)
526 (setq comment-end "")
527 (make-local-variable 'comment-column)
528 (setq comment-column 32)
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)
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)
551 (make-local-variable 'font-lock-defaults)
552 (setq font-lock-defaults '(octave-font-lock-keywords nil nil))
554 (make-local-variable 'imenu-generic-expression)
555 (setq imenu-generic-expression octave-mode-imenu-generic-expression
556 imenu-case-fold-search nil)
558 (octave-add-octave-menu)
559 (octave-initialize-completions)
560 (run-hooks 'octave-mode-hook))
562 ;;; Miscellaneous useful functions
563 (defun octave-describe-major-mode ()
564 "Describe the current major mode."
565 (interactive)
566 (describe-function major-mode))
568 (defun octave-point (position)
569 "Returns the value of point at certain positions."
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)))
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)))))
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)))))
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)))))
597 (defun octave-in-block-p ()
598 "Returns t if point is inside an Octave block, nil otherwise.
599 The block is taken to start at the first letter of the begin keyword and
600 to 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)
609 (error nil))
610 (< pos (point)))))
612 (defun octave-in-defun-p ()
613 "Returns t iff point is inside an Octave function declaration.
614 The function is taken to start at the `f' of `function' and to end after
615 the 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)
625 (error nil))
626 (< pos (point)))))))
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)))
634 (delete-horizontal-space)
635 (insert (concat " " octave-continuation-string))))
637 (defvar octave-xemacs-p
638 (string-match "XEmacs\\|Lucid" emacs-version))
640 ;;; Comments
641 (defun octave-comment-region (beg end &optional arg)
642 "Comment or uncomment each line in the region as Octave code.
643 See `comment-region'."
644 (interactive "r\nP")
645 (let ((comment-start (char-to-string octave-comment-char)))
646 (comment-region beg end arg)))
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)))
655 ;;; Indentation
656 (defun calculate-octave-indent ()
657 "Return appropriate indentation for current line as Octave code.
658 Returns an integer (the column to indent to) unless the line is a
659 comment line with fixed goal golumn. In that case, returns a list whose
660 car is the column to indent to, and whose cdr is the current indentation
661 level."
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)
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
689 ((looking-at "\\<switch\\>")
690 (setq icol (+ icol (* 2 octave-block-offset))))
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)))
698 (setq icol (- icol
699 (octave-block-end-offset)))))))
700 (forward-char)))
701 (if is-continuation-line
702 (setq icol (+ icol octave-continuation-offset)))))))
703 (save-excursion
704 (back-to-indentation)
705 (cond
706 ((and (looking-at octave-block-else-regexp)
707 (octave-not-in-string-or-comment-p))
708 (setq icol (- icol octave-block-offset)))
709 ((and (looking-at octave-block-end-regexp)
710 (octave-not-in-string-or-comment-p))
711 (setq icol (- icol (octave-block-end-offset))))
712 ((or (looking-at "\\s<\\s<\\s<\\S<")
713 (octave-before-magic-comment-p))
714 (setq icol (list 0 icol)))
715 ((looking-at "\\s<\\S<")
716 (setq icol (list comment-column icol)))))
717 icol))
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))))
725 (defun octave-before-magic-comment-p ()
726 (save-excursion
727 (beginning-of-line)
728 (and (bobp) (looking-at "\\s-*#!"))))
730 (defun octave-comment-indent ()
731 (if (or (looking-at "\\s<\\s<\\s<")
732 (octave-before-magic-comment-p))
734 (if (looking-at "\\s<\\s<")
735 (calculate-octave-indent)
736 (skip-syntax-backward " ")
737 (max (if (bolp) 0 (+ 1 (current-column)))
738 comment-column))))
740 (defun octave-indent-for-comment ()
741 "Maybe insert and indent an Octave comment.
742 If there is no comment already on this line, create a code-level comment
743 \(started by two comment characters) if the line is empty, or an in-line
744 comment (started by one comment character) otherwise.
745 Point is left after the start of the comment which is properly aligned."
746 (interactive)
747 (indent-for-comment)
748 (indent-according-to-mode))
750 (defun octave-indent-line (&optional arg)
751 "Indent current line as Octave code.
752 With optional ARG, use this as offset unless this line is a comment with
753 fixed 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))))))
767 (defun octave-indent-new-comment-line ()
768 "Break Octave line at point, continuing comment if within one.
769 If within code, insert `octave-continuation-string' before breaking the
770 line. If within a string, signal an error.
771 The new line is properly indented."
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"))
780 (insert (concat " " octave-continuation-string))
781 (octave-reindent-then-newline-and-indent))))
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."))
793 ;;; Motion
794 (defun octave-next-code-line (&optional arg)
795 "Move ARG lines of Octave code forward (backward if ARG is negative).
796 Skips past all empty and comment lines. Default for ARG is 1.
798 On 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)))
812 (defun octave-previous-code-line (&optional arg)
813 "Move ARG lines of Octave code backward (forward if ARG is negative).
814 Skips past all empty and comment lines. Default for ARG is 1.
816 On 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)))
821 (defun octave-beginning-of-line ()
822 "Move point to beginning of current Octave line.
823 If on an empty or comment line, go to the beginning of that line.
824 Otherwise, move backward to the beginning of the first Octave code line
825 which is not inside a continuation statement, i.e., which does not
826 follow a code line ending in `...' or `\\', or is inside an open
827 parenthesis 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)
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)))))))
843 (defun octave-end-of-line ()
844 "Move point to end of current Octave line.
845 If on an empty or comment line, go to the end of that line.
846 Otherwise, move forward to the end of the first Octave code line which
847 does 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<\\)"))
854 (while (or (condition-case nil
855 (progn
856 (up-list 1)
857 (end-of-line)
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)))
867 (defun octave-scan-blocks (from count depth)
868 "Scan from character number FROM by COUNT Octave begin-end blocks.
869 Returns the character number of the position thus found.
871 If DEPTH is nonzero, block depth begins counting from that value.
872 Only places where the depth in blocks becomes zero are candidates for
873 stopping; COUNT such places are counted.
875 If the beginning or end of the buffer is reached and the depth is wrong,
876 an 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))))
900 (defun octave-forward-block (&optional arg)
901 "Move forward across one balanced Octave begin-end block.
902 With argument, do it that many times.
903 Negative 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))))
908 (defun octave-backward-block (&optional arg)
909 "Move backward across one balanced Octave begin-end block.
910 With argument, do it that many times.
911 Negative arg -N means move forward across N blocks."
912 (interactive "p")
913 (or arg (setq arg 1))
914 (octave-forward-block (- arg)))
916 (defun octave-down-block (arg)
917 "Move forward down one begin-end block level of Octave code.
918 With argument, do this that many times.
919 A negative argument means move backward but still go down a level.
920 In 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)))))
928 (defun octave-backward-up-block (arg)
929 "Move backward out of one begin-end block level of Octave code.
930 With argument, do this that many times.
931 A negative argument means move forward but still to a less deep spot.
932 In Lisp programs, an argument is required."
933 (interactive "p")
934 (octave-up-block (- arg)))
936 (defun octave-up-block (arg)
937 "Move forward out of one begin-end block level of Octave code.
938 With argument, do this that many times.
939 A negative argument means move backward but still to a less deep spot.
940 In 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)))))
948 (defun octave-mark-block ()
949 "Put point at the beginning of this Octave block, mark at the end.
950 The 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"))))
968 (defun octave-close-block ()
969 "Close the current Octave block on a separate line.
970 An 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)
989 (error (message "No block to close found")))))
991 (defun octave-blink-matching-block-open ()
992 "Blink the matching Octave begin block keyword.
993 If point is right after an Octave else or end type block keyword, move
994 cursor momentarily to the corresponding begin keyword.
995 Signal 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))))))
1039 (defun octave-beginning-of-defun (&optional arg)
1040 "Move backward to the beginning of an Octave function.
1041 With positive ARG, do it that many times. Negative argument -N means
1042 move forward to Nth following beginning of a function.
1043 Returns 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))))
1061 (defun octave-end-of-defun (&optional arg)
1062 "Move forward to the end of an Octave function.
1063 With positive ARG, do it that many times. Negative argument -N means
1064 move back to Nth preceding end of a function.
1066 An 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"))
1071 (and (> arg 0) (skip-syntax-forward "w"))
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)))
1078 (defun octave-mark-defun ()
1079 "Put point at the beginning of this Octave function, mark at its end.
1080 The 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"))))
1096 ;;; Filling
1097 (defun octave-auto-fill ()
1098 "Perform auto-fill in Octave mode.
1099 Returns nil if no feasible place to break the line could be found, and t
1100 otherwise."
1101 (let (fc give-up)
1102 (if (or (null (setq fc (current-fill-column)))
1103 (save-excursion
1104 (beginning-of-line)
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))))
1158 (defun octave-fill-paragraph (&optional arg)
1159 "Fill paragraph of Octave code, handling Octave comments."
1160 (interactive "P")
1161 (save-excursion
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
1193 ;; past the fill column. If it is followed by a nonempty
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))))
1221 ;; We might also try to combine continued code lines> Perhaps
1222 ;; some other time ...
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 " "))
1229 (or (octave-auto-fill)
1230 (forward-line 1)))))
1231 t)))
1234 ;;; Completions
1235 (defun octave-initialize-completions ()
1236 "Create an alist for Octave completions."
1237 (if octave-completion-alist
1239 (setq octave-completion-alist
1240 (mapcar '(lambda (var) (cons var var))
1241 (append octave-reserved-words
1242 octave-text-functions
1243 octave-variables)))))
1245 (defun octave-complete-symbol ()
1246 "Perform completion on Octave symbol preceding point.
1247 Compare that symbol against Octave's reserved words and builtin
1248 variables."
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))
1263 (let ((list (all-completions string octave-completion-alist))
1264 (conf (current-window-configuration)))
1265 ;; Taken from comint.el
1266 (message "Making completion list...")
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))))))))))
1289 ;;; Electric characters && friends
1290 (defun octave-reindent-then-newline-and-indent ()
1291 "Reindent current Octave line, insert newline, and indent the new line.
1292 If 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))
1303 (defun octave-electric-semi ()
1304 "Insert a semicolon in Octave mode.
1305 Maybe expand abbrevs and blink matching block open keywords.
1306 Reindent the line of `octave-auto-indent' is non-nil.
1307 Insert a newline if `octave-auto-newline' is non-nil."
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))
1314 (if octave-auto-indent
1315 (indent-according-to-mode))
1316 (insert ";")
1317 (if octave-auto-newline
1318 (newline-and-indent))))
1320 (defun octave-electric-space ()
1321 "Insert a space in Octave mode.
1322 Maybe expand abbrevs and blink matching block open keywords.
1323 Reindent the line of `octave-auto-indent' is non-nil."
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))
1333 (if (and octave-auto-indent
1334 (save-excursion
1335 (skip-syntax-backward " ")
1336 (not (bolp))))
1337 (indent-according-to-mode))
1338 (self-insert-command 1)))
1340 (defun octave-abbrev-start ()
1341 "Start entering an Octave abbreviation.
1342 If Abbrev mode is turned on, typing ` (grave accent) followed by ? or
1343 \\[help-command] lists all Octave abbrevs. Any other key combination is
1344 executed normally.
1345 Note 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)
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)))
1357 (list-abbrevs))
1358 (setq unread-command-events (list c))))))
1360 (defun octave-insert-defun (name args vals)
1361 "Insert an Octave function skeleton.
1362 Prompt for the function's name, arguments and return values (to be
1363 entered 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 "] ="))
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)
1386 (reindent-then-newline-and-indent)
1387 (insert prefix)
1388 (reindent-then-newline-and-indent)
1389 (insert prefix)
1390 (indent-according-to-mode)
1391 (save-excursion
1392 (newline 2)
1393 (insert "endfunction")
1394 (indent-according-to-mode))))
1397 ;;; Menu
1398 (defun octave-add-octave-menu ()
1399 "Adds the `Octave' menu to the menu bar in Octave mode."
1400 (require 'easymenu)
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))
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)))
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)))
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)))
1431 (defun octave-send-region (beg end)
1432 "Send current region to the inferior Octave process."
1433 (interactive "r")
1434 (inferior-octave t)
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)))
1461 (defun octave-send-block ()
1462 "Send current Octave block to the inferior Octave process."
1463 (interactive)
1464 (save-excursion
1465 (octave-mark-block)
1466 (octave-send-region (point) (mark))))
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))))
1475 (defun octave-send-line (&optional arg)
1476 "Send current Octave code line to the inferior Octave process.
1477 With positive prefix ARG, send that many lines.
1478 If `octave-send-line-auto-forward' is non-nil, go to the next unsent
1479 code 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))))
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)
1501 (prin1
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)))
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
1521 'octave-auto-indent
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))))
1534 ;;; provide ourself
1536 (provide 'octave-mod)
1538 ;;; octave-mod.el ends here