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