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