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