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