Mercurial > emacs
annotate lisp/progmodes/octave-mod.el @ 98713:0eb90719885e
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 14 Oct 2008 12:53:29 +0000 |
parents | 393e8f885464 |
children | a9dc0e7c3f2b |
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 | |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94565
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
16901 | 14 ;; it under the terms of the GNU General Public License as published by |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94565
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94565
diff
changeset
|
16 ;; (at your option) any later version. |
16901 | 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 | |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94565
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
16901 | 25 |
26 ;;; Commentary: | |
27 | |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
28 ;; 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
|
29 ;; 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
|
30 ;; Octave code. |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
31 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
32 ;; 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
|
33 ;; Octave process using comint. |
16901 | 34 |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
35 ;; See the documentation of `octave-mode' and |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
36 ;; `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
|
37 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
38 ;;; Code: |
26157
313a03652df3
Added (require 'custom) and deleted :version line from
Stephen Eglen <stephen@gnu.org>
parents:
25277
diff
changeset
|
39 (require 'custom) |
16901 | 40 |
20781 | 41 (defgroup octave nil |
42 "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
|
43 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
20781 | 44 :group 'languages) |
45 | |
17533
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
46 (defvar inferior-octave-output-list nil) |
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
47 (defvar inferior-octave-output-string nil) |
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
48 (defvar inferior-octave-receive-in-progress nil) |
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
49 |
86234
860a7a8e779e
* progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85511
diff
changeset
|
50 (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
|
51 |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
52 (defconst octave-maintainer-address |
65151
7ab3eb3e09b8
Change Author and Maintainer address.
Eli Zaretskii <eliz@gnu.org>
parents:
64699
diff
changeset
|
53 "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
|
54 "Current maintainer of the Emacs Octave package.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
55 |
94565
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
56 (define-abbrev-table 'octave-abbrev-table |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
57 (mapcar (lambda (e) (append e '(nil 0 t))) |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
58 '(("`a" "all_va_args") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
59 ("`b" "break") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
60 ("`cs" "case") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
61 ("`ca" "catch") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
62 ("`c" "continue") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
63 ("`el" "else") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
64 ("`eli" "elseif") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
65 ("`et" "end_try_catch") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
66 ("`eu" "end_unwind_protect") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
67 ("`ef" "endfor") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
68 ("`efu" "endfunction") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
69 ("`ei" "endif") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
70 ("`es" "endswitch") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
71 ("`ew" "endwhile") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
72 ("`f" "for") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
73 ("`fu" "function") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
74 ("`gl" "global") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
75 ("`gp" "gplot") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
76 ("`gs" "gsplot") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
77 ("`if" "if ()") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
78 ("`o" "otherwise") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
79 ("`rp" "replot") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
80 ("`r" "return") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
81 ("`s" "switch") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
82 ("`t" "try") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
83 ("`u" "until ()") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
84 ("`up" "unwind_protect") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
85 ("`upc" "unwind_protect_cleanup") |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
86 ("`w" "while ()"))) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
87 "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
|
88 Used in `octave-mode' and inferior-octave-mode buffers. |
94565
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
89 All Octave abbrevs start with a grave accent (`)." |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
90 :regexp "\\(?:[^`]\\|^\\)\\(\\(?:\\<\\|`\\)\\w+\\)\\W*") |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
91 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
92 (defvar octave-comment-char ?# |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
93 "Character to start an Octave comment.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
94 (defvar octave-comment-start |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
95 (string octave-comment-char ?\ ) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
96 "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
|
97 (defvar octave-comment-start-skip "\\s<+\\s-*" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
98 "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
|
99 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
100 (defvar octave-begin-keywords |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
101 '("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
|
102 (defvar octave-else-keywords |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
103 '("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
|
104 ;; 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
|
105 ;; 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
|
106 (defvar octave-end-keywords |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
107 '("endfor" "endfunction" "endif" "endswitch" "end_try_catch" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
108 "end_unwind_protect" "endwhile" "until")) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
109 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
110 (defvar octave-reserved-words |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
111 (append octave-begin-keywords |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
112 octave-else-keywords |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
113 octave-end-keywords |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
114 '("break" "continue" "end" "global" "persistent" "return")) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
115 "Reserved words in Octave.") |
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-text-functions |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
118 '("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
|
119 "edit_history" "format" "help" "history" "hold" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
120 "load" "ls" "more" "run_history" "save" "type" |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
121 "which" "who" "whos") |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
122 "Text functions in Octave.") |
16911
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-variables |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
125 '("DEFAULT_EXEC_PATH" "DEFAULT_LOADPATH" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
126 "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
|
127 "F_SETFL" "I" "IMAGE_PATH" "Inf" "J" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
128 "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
|
129 "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
|
130 "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
|
131 "__F_GETFD__" "__F_GETFL__" "__F_SETFD__" "__F_SETFL__" "__I__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
132 "__Inf__" "__J__" "__NaN__" "__OCTAVE_VERSION__" "__O_APPEND__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
133 "__O_CREAT__" "__O_EXCL__" "__O_NONBLOCK__" "__O_RDONLY__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
134 "__O_RDWR__" "__O_TRUNC__" "__O_WRONLY__" "__PWD__" "__SEEK_CUR__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
135 "__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
|
136 "__i__" "__inf__" "__j__" "__nan__" "__pi__" |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
137 "__program_invocation_name__" "__program_name__" "__realmax__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
138 "__realmin__" "__stderr__" "__stdin__" "__stdout__" "ans" "argv" |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
139 "beep_on_error" "completion_append_char" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
140 "crash_dumps_octave_core" "default_save_format" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
141 "e" "echo_executing_commands" "eps" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
142 "error_text" "gnuplot_binary" "history_file" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
143 "history_size" "ignore_function_time_stamp" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
144 "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
|
145 "page_output_immediately" "page_screen_output" "pi" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
146 "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
|
147 "program_invocation_name" "program_name" |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
148 "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
|
149 "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
|
150 "silent_functions" "split_long_rows" "stderr" "stdin" "stdout" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
151 "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
|
152 "suppress_verbose_help_message") |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
153 "Builtin variables in Octave.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
154 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
155 (defvar octave-function-header-regexp |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
156 (concat "^\\s-*\\<\\(function\\)\\>" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
157 "\\([^=;\n]*=[ \t]*\\|[ \t]*\\)\\(\\w+\\)\\>") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
158 "Regexp to match an Octave function header. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
159 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
|
160 parenthetical grouping.") |
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-font-lock-keywords |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
163 (list |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
164 ;; Fontify all builtin keywords. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
165 (cons (concat "\\<\\(" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
166 (mapconcat 'identity octave-reserved-words "\\|") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
167 (mapconcat 'identity octave-text-functions "\\|") |
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 'font-lock-keyword-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
170 ;; Fontify all builtin operators. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
171 (cons "\\(&\\||\\|<=\\|>=\\|==\\|<\\|>\\|!=\\|!\\)" |
28070
7079931424be
(octave-font-lock-keywords): To font-lock the
Gerd Moellmann <gerd@gnu.org>
parents:
26157
diff
changeset
|
172 (if (boundp 'font-lock-builtin-face) |
7079931424be
(octave-font-lock-keywords): To font-lock the
Gerd Moellmann <gerd@gnu.org>
parents:
26157
diff
changeset
|
173 'font-lock-builtin-face |
7079931424be
(octave-font-lock-keywords): To font-lock the
Gerd Moellmann <gerd@gnu.org>
parents:
26157
diff
changeset
|
174 'font-lock-preprocessor-face)) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
175 ;; Fontify all builtin variables. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
176 (cons (concat "\\<\\(" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
177 (mapconcat 'identity octave-variables "\\|") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
178 "\\)\\>") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
179 'font-lock-variable-name-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
180 ;; Fontify all function declarations. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
181 (list octave-function-header-regexp |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
182 '(1 font-lock-keyword-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
183 '(3 font-lock-function-name-face nil t))) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
184 "Additional Octave expressions to highlight.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
185 |
20781 | 186 (defcustom inferior-octave-buffer "*Inferior Octave*" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
187 "Name of buffer for running an inferior Octave process." |
20781 | 188 :type 'string |
189 :group 'octave-inferior) | |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
190 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
191 (defvar inferior-octave-process nil) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
192 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
193 (defvar octave-mode-map |
16901 | 194 (let ((map (make-sparse-keymap))) |
195 (define-key map "`" 'octave-abbrev-start) | |
196 (define-key map ";" 'octave-electric-semi) | |
197 (define-key map " " 'octave-electric-space) | |
198 (define-key map "\n" 'octave-reindent-then-newline-and-indent) | |
199 (define-key map "\e;" 'octave-indent-for-comment) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
200 (define-key map "\e\n" 'octave-indent-new-comment-line) |
16901 | 201 (define-key map "\e\t" 'octave-complete-symbol) |
202 (define-key map "\M-\C-a" 'octave-beginning-of-defun) | |
203 (define-key map "\M-\C-e" 'octave-end-of-defun) | |
204 (define-key map "\M-\C-h" 'octave-mark-defun) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
205 (define-key map "\M-\C-q" 'octave-indent-defun) |
16901 | 206 (define-key map "\C-c;" 'octave-comment-region) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
207 (define-key map "\C-c:" 'octave-uncomment-region) |
16901 | 208 (define-key map "\C-c\C-b" 'octave-submit-bug-report) |
209 (define-key map "\C-c\C-p" 'octave-previous-code-line) | |
210 (define-key map "\C-c\C-n" 'octave-next-code-line) | |
211 (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
|
212 (define-key map "\C-c\C-e" 'octave-end-of-line) |
16901 | 213 (define-key map "\C-c\M-\C-n" 'octave-forward-block) |
214 (define-key map "\C-c\M-\C-p" 'octave-backward-block) | |
215 (define-key map "\C-c\M-\C-u" 'octave-backward-up-block) | |
216 (define-key map "\C-c\M-\C-d" 'octave-down-block) | |
217 (define-key map "\C-c\M-\C-h" 'octave-mark-block) | |
218 (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
|
219 (define-key map "\C-c\C-f" 'octave-insert-defun) |
16901 | 220 (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
|
221 (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
|
222 (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
|
223 (define-key map "\C-c\C-if" 'octave-send-defun) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
224 (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
|
225 (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
|
226 (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
|
227 (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
|
228 (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
|
229 (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
|
230 (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
|
231 (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
|
232 (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
|
233 (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
|
234 (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
|
235 map) |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
236 "Keymap used in Octave mode.") |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
237 |
16901 | 238 |
239 (defvar octave-mode-menu | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
240 '("Octave" |
98358
393e8f885464
(octave-mode-menu): Fix incorrect quoting.
Chong Yidong <cyd@stupidchicken.com>
parents:
94673
diff
changeset
|
241 ("Lines" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
242 ["Previous Code Line" octave-previous-code-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
243 ["Next Code Line" octave-next-code-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
244 ["Begin of Continuation" octave-beginning-of-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
245 ["End of Continuation" octave-end-of-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
246 ["Split Line at Point" octave-indent-new-comment-line t]) |
98358
393e8f885464
(octave-mode-menu): Fix incorrect quoting.
Chong Yidong <cyd@stupidchicken.com>
parents:
94673
diff
changeset
|
247 ("Blocks" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
248 ["Next Block" octave-forward-block t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
249 ["Previous Block" octave-backward-block t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
250 ["Down Block" octave-down-block t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
251 ["Up Block" octave-backward-up-block t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
252 ["Mark Block" octave-mark-block t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
253 ["Close Block" octave-close-block t]) |
98358
393e8f885464
(octave-mode-menu): Fix incorrect quoting.
Chong Yidong <cyd@stupidchicken.com>
parents:
94673
diff
changeset
|
254 ("Functions" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
255 ["Begin of Function" octave-beginning-of-defun t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
256 ["End of Function" octave-end-of-defun t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
257 ["Mark Function" octave-mark-defun t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
258 ["Indent Function" octave-indent-defun t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
259 ["Insert Function" octave-insert-defun t]) |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
260 "-" |
98358
393e8f885464
(octave-mode-menu): Fix incorrect quoting.
Chong Yidong <cyd@stupidchicken.com>
parents:
94673
diff
changeset
|
261 ("Debug" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
262 ["Send Current Line" octave-send-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
263 ["Send Current Block" octave-send-block t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
264 ["Send Current Function" octave-send-defun t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
265 ["Send Region" octave-send-region t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
266 ["Show Process Buffer" octave-show-process-buffer t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
267 ["Hide Process Buffer" octave-hide-process-buffer t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
268 ["Kill Process" octave-kill-process t]) |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
269 "-" |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
270 ["Indent Line" indent-according-to-mode t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
271 ["Complete Symbol" octave-complete-symbol t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
272 "-" |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
273 ["Toggle Abbrev Mode" abbrev-mode t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
274 ["Toggle Auto-Fill Mode" auto-fill-mode t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
275 "-" |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
276 ["Submit Bug Report" octave-submit-bug-report t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
277 "-" |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
278 ["Describe Octave Mode" octave-describe-major-mode t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
279 ["Lookup Octave Index" octave-help t]) |
16901 | 280 "Menu for Octave mode.") |
281 | |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
282 (defvar octave-mode-syntax-table |
16901 | 283 (let ((table (make-syntax-table))) |
284 (modify-syntax-entry ?\r " " table) | |
285 (modify-syntax-entry ?+ "." table) | |
286 (modify-syntax-entry ?- "." table) | |
287 (modify-syntax-entry ?= "." table) | |
288 (modify-syntax-entry ?* "." table) | |
289 (modify-syntax-entry ?/ "." table) | |
290 (modify-syntax-entry ?> "." table) | |
291 (modify-syntax-entry ?< "." table) | |
292 (modify-syntax-entry ?& "." table) | |
293 (modify-syntax-entry ?| "." table) | |
294 (modify-syntax-entry ?! "." table) | |
295 (modify-syntax-entry ?\\ "\\" table) | |
296 (modify-syntax-entry ?\' "." table) | |
94565
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
297 ;; Was "w" for abbrevs, but now that it's not necessary any more, |
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
298 (modify-syntax-entry ?\` "." table) |
16901 | 299 (modify-syntax-entry ?\" "\"" table) |
300 (modify-syntax-entry ?. "w" table) | |
301 (modify-syntax-entry ?_ "w" table) | |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
302 (modify-syntax-entry ?\% "<" table) |
16901 | 303 (modify-syntax-entry ?\# "<" table) |
304 (modify-syntax-entry ?\n ">" table) | |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
305 table) |
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
306 "Syntax table in use in `octave-mode' buffers.") |
16901 | 307 |
20781 | 308 (defcustom octave-auto-indent nil |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
309 "Non-nil means indent line after a semicolon or space in Octave mode." |
20781 | 310 :type 'boolean |
26157
313a03652df3
Added (require 'custom) and deleted :version line from
Stephen Eglen <stephen@gnu.org>
parents:
25277
diff
changeset
|
311 :group 'octave) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
312 |
20781 | 313 (defcustom octave-auto-newline nil |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
314 "Non-nil means automatically newline after a semicolon in Octave mode." |
20781 | 315 :type 'boolean |
316 :group 'octave) | |
16901 | 317 |
20781 | 318 (defcustom octave-blink-matching-block t |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
319 "Control the blinking of matching Octave block keywords. |
16901 | 320 Non-nil means show matching begin of block when inserting a space, |
20781 | 321 newline or semicolon after an else or end keyword." |
322 :type 'boolean | |
323 :group 'octave) | |
324 (defcustom octave-block-offset 2 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
325 "Extra indentation applied to statements in Octave block structures." |
20781 | 326 :type 'integer |
327 :group 'octave) | |
16901 | 328 |
329 (defvar octave-block-begin-regexp | |
330 (concat "\\<\\(" | |
331 (mapconcat 'identity octave-begin-keywords "\\|") | |
332 "\\)\\>")) | |
333 (defvar octave-block-else-regexp | |
334 (concat "\\<\\(" | |
335 (mapconcat 'identity octave-else-keywords "\\|") | |
336 "\\)\\>")) | |
337 (defvar octave-block-end-regexp | |
338 (concat "\\<\\(" | |
339 (mapconcat 'identity octave-end-keywords "\\|") | |
340 "\\)\\>")) | |
341 (defvar octave-block-begin-or-end-regexp | |
342 (concat octave-block-begin-regexp "\\|" octave-block-end-regexp)) | |
343 (defvar octave-block-else-or-end-regexp | |
344 (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
|
345 ;; 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
|
346 ;; is used in indexing (the real fix is much more complex). |
16901 | 347 (defvar octave-block-match-alist |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
348 '(("do" . ("until")) |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
349 ("for" . ("endfor")) |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
350 ("function" . ("endfunction")) |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
351 ("if" . ("else" "elseif" "endif")) |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
352 ("switch" . ("case" "otherwise" "endswitch")) |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
353 ("try" . ("catch" "end_try_catch")) |
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
354 ("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
|
355 ("while" . ("endwhile"))) |
16901 | 356 "Alist with Octave's matching block keywords. |
357 Has Octave's begin keywords as keys and a list of the matching else or | |
358 end keywords as associated values.") | |
359 | |
360 (defvar octave-block-comment-start | |
361 (concat (make-string 2 octave-comment-char) " ") | |
362 "String to insert to start a new Octave comment on an empty line.") | |
363 | |
20781 | 364 (defcustom octave-continuation-offset 4 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
365 "Extra indentation applied to Octave continuation lines." |
20781 | 366 :type 'integer |
367 :group 'octave) | |
16901 | 368 (defvar octave-continuation-regexp |
369 "[^#%\n]*\\(\\\\\\|\\.\\.\\.\\)\\s-*\\(\\s<.*\\)?$") | |
20781 | 370 (defcustom octave-continuation-string "\\" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
371 "Character string used for Octave continuation lines. Normally \\." |
20781 | 372 :type 'string |
373 :group 'octave) | |
16901 | 374 |
375 (defvar octave-completion-alist nil | |
376 "Alist of Octave symbols for completion in Octave mode. | |
377 Each element looks like (VAR . VAR), where the car and cdr are the same | |
378 symbol (an Octave command or variable name). | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
379 Currently, only builtin variables can be completed.") |
16901 | 380 |
381 (defvar octave-mode-imenu-generic-expression | |
382 (list | |
383 ;; Functions | |
384 (list nil octave-function-header-regexp 3)) | |
385 "Imenu expression for Octave mode. See `imenu-generic-expression'.") | |
386 | |
20781 | 387 (defcustom octave-mode-hook nil |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
388 "Hook to be run when Octave mode is started." |
20781 | 389 :type 'hook |
390 :group 'octave) | |
16901 | 391 |
20781 | 392 (defcustom octave-send-show-buffer t |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
393 "Non-nil means display `inferior-octave-buffer' after sending to it." |
20781 | 394 :type 'boolean |
395 :group 'octave) | |
396 (defcustom octave-send-line-auto-forward t | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
397 "Control auto-forward after sending to the inferior Octave process. |
20781 | 398 Non-nil means always go to the next Octave code line after sending." |
399 :type 'boolean | |
400 :group 'octave) | |
401 (defcustom octave-send-echo-input t | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
402 "Non-nil means echo input sent to the inferior Octave process." |
20781 | 403 :type 'boolean |
404 :group 'octave) | |
16901 | 405 |
406 | |
407 ;;;###autoload | |
408 (defun octave-mode () | |
409 "Major mode for editing Octave code. | |
410 | |
411 This mode makes it easier to write Octave code by helping with | |
412 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
|
413 showing keywords, comments, strings, etc.. in different faces (with |
16901 | 414 Font Lock mode on terminals that support it). |
415 | |
416 Octave itself is a high-level language, primarily intended for numerical | |
417 computations. It provides a convenient command line interface for | |
418 solving linear and nonlinear problems numerically. Function definitions | |
419 can also be stored in files, and it can be used in a batch mode (which | |
420 is why you need this mode!). | |
421 | |
422 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
|
423 ftp from ftp.octave.org in the directory `/pub/octave'. Complete |
16901 | 424 source and binaries for several popular systems are available. |
425 | |
426 Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords. | |
427 | |
428 Keybindings | |
429 =========== | |
430 | |
431 \\{octave-mode-map} | |
432 | |
433 Variables you can use to customize Octave mode | |
434 ============================================== | |
435 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
436 `octave-auto-indent' |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
437 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
|
438 Default is nil. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
439 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
440 `octave-auto-newline' |
16901 | 441 Non-nil means auto-insert a newline and indent after a semicolon. |
442 Default is nil. | |
443 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
444 `octave-blink-matching-block' |
16901 | 445 Non-nil means show matching begin of block when inserting a space, |
446 newline or semicolon after an else or end keyword. Default is t. | |
447 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
448 `octave-block-offset' |
16901 | 449 Extra indentation applied to statements in block structures. |
450 Default is 2. | |
451 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
452 `octave-continuation-offset' |
16901 | 453 Extra indentation applied to Octave continuation lines. |
454 Default is 4. | |
455 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
456 `octave-continuation-string' |
16901 | 457 String used for Octave continuation lines. |
458 Default is a backslash. | |
459 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
460 `octave-send-echo-input' |
16901 | 461 Non-nil means always display `inferior-octave-buffer' after sending a |
462 command to the inferior Octave process. | |
463 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
464 `octave-send-line-auto-forward' |
16901 | 465 Non-nil means always go to the next unsent line of Octave code after |
466 sending a line to the inferior Octave process. | |
467 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
468 `octave-send-echo-input' |
16901 | 469 Non-nil means echo input sent to the inferior Octave process. |
470 | |
471 Turning on Octave mode runs the hook `octave-mode-hook'. | |
472 | |
473 To begin using this mode for all `.m' files that you edit, add the | |
474 following lines to your `.emacs' file: | |
475 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
476 (add-to-list 'auto-mode-alist '(\"\\\\.m\\\\'\" . octave-mode)) |
16901 | 477 |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
478 To automatically turn on the abbrev and auto-fill features, |
16901 | 479 add the following lines to your `.emacs' file as well: |
480 | |
481 (add-hook 'octave-mode-hook | |
482 (lambda () | |
483 (abbrev-mode 1) | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
484 (auto-fill-mode 1))) |
16901 | 485 |
486 To submit a problem report, enter \\[octave-submit-bug-report] from \ | |
487 an Octave mode buffer. | |
488 This automatically sets up a mail buffer with version information | |
489 already added. You just need to add a description of the problem, | |
490 including a reproducible test case and send the message." | |
491 (interactive) | |
492 (kill-all-local-variables) | |
493 | |
494 (use-local-map octave-mode-map) | |
495 (setq major-mode 'octave-mode) | |
496 (setq mode-name "Octave") | |
497 (setq local-abbrev-table octave-abbrev-table) | |
498 (set-syntax-table octave-mode-syntax-table) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
499 |
16901 | 500 (make-local-variable 'indent-line-function) |
501 (setq indent-line-function 'octave-indent-line) | |
502 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
503 (make-local-variable 'comment-start) |
16901 | 504 (setq comment-start octave-comment-start) |
505 (make-local-variable 'comment-end) | |
506 (setq comment-end "") | |
507 (make-local-variable 'comment-column) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
508 (setq comment-column 32) |
16901 | 509 (make-local-variable 'comment-start-skip) |
510 (setq comment-start-skip "\\s<+\\s-*") | |
511 (make-local-variable 'comment-indent-function) | |
512 (setq comment-indent-function 'octave-comment-indent) | |
513 | |
514 (make-local-variable 'parse-sexp-ignore-comments) | |
515 (setq parse-sexp-ignore-comments t) | |
516 (make-local-variable 'paragraph-start) | |
517 (setq paragraph-start (concat "\\s-*$\\|" page-delimiter)) | |
518 (make-local-variable 'paragraph-separate) | |
519 (setq paragraph-separate paragraph-start) | |
520 (make-local-variable 'paragraph-ignore-fill-prefix) | |
521 (setq paragraph-ignore-fill-prefix t) | |
522 (make-local-variable 'fill-paragraph-function) | |
523 (setq fill-paragraph-function 'octave-fill-paragraph) | |
524 (make-local-variable 'adaptive-fill-regexp) | |
525 (setq adaptive-fill-regexp nil) | |
526 (make-local-variable 'fill-column) | |
527 (setq fill-column 72) | |
528 (make-local-variable 'normal-auto-fill-function) | |
529 (setq normal-auto-fill-function 'octave-auto-fill) | |
530 | |
531 (make-local-variable 'font-lock-defaults) | |
532 (setq font-lock-defaults '(octave-font-lock-keywords nil nil)) | |
533 | |
534 (make-local-variable 'imenu-generic-expression) | |
20459 | 535 (setq imenu-generic-expression octave-mode-imenu-generic-expression |
536 imenu-case-fold-search nil) | |
16901 | 537 |
538 (octave-add-octave-menu) | |
539 (octave-initialize-completions) | |
62772
f2892faa87d4
* progmodes/ada-mode.el (ada-mode):
Lute Kamstra <lute@gnu.org>
parents:
52930
diff
changeset
|
540 (run-mode-hooks 'octave-mode-hook)) |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
541 |
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
542 (defun octave-help () |
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
543 "Get help on Octave symbols from the Octave info files. |
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
544 Look up symbol in the function, operator and variable indices of the info files." |
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
545 (let ((info-lookup-mode 'octave-mode)) |
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
546 (call-interactively 'info-lookup-symbol))) |
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) | |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
1262 (if (with-current-buffer (get-buffer "*Completions*") |
16901 | 1263 (setq key (read-key-sequence nil) |
1264 first (aref key 0)) | |
1265 (and (consp first) (consp (event-start first)) | |
1266 (eq (window-buffer (posn-window (event-start | |
1267 first))) | |
1268 (get-buffer "*Completions*")) | |
1269 (eq (key-binding key) 'mouse-choose-completion))) | |
1270 (progn | |
1271 (mouse-choose-completion first) | |
1272 (set-window-configuration conf)) | |
1273 (if (eq first ?\ ) | |
1274 (set-window-configuration conf) | |
1275 (setq unread-command-events | |
1276 (listify-key-sequence key)))))))))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1277 |
16901 | 1278 |
1279 ;;; Electric characters && friends | |
1280 (defun octave-reindent-then-newline-and-indent () | |
1281 "Reindent current Octave line, insert newline, and indent the new line. | |
1282 If Abbrev mode is on, expand abbrevs first." | |
1283 (interactive) | |
1284 (if abbrev-mode (expand-abbrev)) | |
1285 (if octave-blink-matching-block | |
1286 (octave-blink-matching-block-open)) | |
1287 (save-excursion | |
1288 (delete-region (point) (progn (skip-chars-backward " \t") (point))) | |
1289 (indent-according-to-mode)) | |
1290 (insert "\n") | |
1291 (indent-according-to-mode)) | |
1292 | |
1293 (defun octave-electric-semi () | |
1294 "Insert a semicolon in Octave mode. | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1295 Maybe expand abbrevs and blink matching block open keywords. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1296 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
|
1297 Insert a newline if `octave-auto-newline' is non-nil." |
16901 | 1298 (interactive) |
1299 (if (not (octave-not-in-string-or-comment-p)) | |
1300 (insert ";") | |
1301 (if abbrev-mode (expand-abbrev)) | |
1302 (if octave-blink-matching-block | |
1303 (octave-blink-matching-block-open)) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1304 (if octave-auto-indent |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1305 (indent-according-to-mode)) |
16901 | 1306 (insert ";") |
1307 (if octave-auto-newline | |
1308 (newline-and-indent)))) | |
1309 | |
1310 (defun octave-electric-space () | |
1311 "Insert a space in Octave mode. | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1312 Maybe expand abbrevs and blink matching block open keywords. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1313 Reindent the line of `octave-auto-indent' is non-nil." |
16901 | 1314 (interactive) |
1315 (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
|
1316 (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
|
1317 (not (octave-not-in-string-or-comment-p))) |
16901 | 1318 (progn |
1319 (indent-according-to-mode) | |
1320 (self-insert-command 1)) | |
1321 (if abbrev-mode (expand-abbrev)) | |
1322 (if octave-blink-matching-block | |
1323 (octave-blink-matching-block-open)) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1324 (if (and octave-auto-indent |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1325 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1326 (skip-syntax-backward " ") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1327 (not (bolp)))) |
16901 | 1328 (indent-according-to-mode)) |
1329 (self-insert-command 1))) | |
1330 | |
1331 (defun octave-abbrev-start () | |
1332 "Start entering an Octave abbreviation. | |
1333 If Abbrev mode is turned on, typing ` (grave accent) followed by ? or | |
1334 \\[help-command] lists all Octave abbrevs. Any other key combination is | |
1335 executed normally. | |
1336 Note that all Octave mode abbrevs start with a grave accent." | |
1337 (interactive) | |
1338 (if (not abbrev-mode) | |
1339 (self-insert-command 1) | |
1340 (let (c) | |
1341 (insert last-command-char) | |
85511
f873840f9fea
* emulation/edt-mapper.el (function-key-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85277
diff
changeset
|
1342 (if (if (featurep 'xemacs) |
23848
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1343 (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
|
1344 (eq (event-to-character c) help-char)) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1345 (or (eq (setq c (read-event)) ??) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1346 (eq c help-char))) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1347 (let ((abbrev-table-name-list '(octave-abbrev-table))) |
16901 | 1348 (list-abbrevs)) |
1349 (setq unread-command-events (list c)))))) | |
1350 | |
1351 (defun octave-insert-defun (name args vals) | |
1352 "Insert an Octave function skeleton. | |
1353 Prompt for the function's name, arguments and return values (to be | |
1354 entered without parens)." | |
1355 (interactive | |
1356 (list | |
1357 (read-from-minibuffer "Function name: " | |
1358 (substring (buffer-name) 0 -2)) | |
1359 (read-from-minibuffer "Arguments: ") | |
1360 (read-from-minibuffer "Return values: "))) | |
1361 (let ((string (format "%s %s (%s)" | |
1362 (cond | |
1363 ((string-equal vals "") | |
1364 vals) | |
1365 ((string-match "[ ,]" vals) | |
1366 (concat " [" vals "] =")) | |
1367 (t | |
1368 (concat " " vals " ="))) | |
1369 name | |
1370 args)) | |
1371 (prefix octave-block-comment-start)) | |
1372 (if (not (bobp)) (newline)) | |
1373 (insert "function" string) | |
1374 (indent-according-to-mode) | |
1375 (newline 2) | |
1376 (insert prefix "usage: " string) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1377 (reindent-then-newline-and-indent) |
16901 | 1378 (insert prefix) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1379 (reindent-then-newline-and-indent) |
16901 | 1380 (insert prefix) |
1381 (indent-according-to-mode) | |
1382 (save-excursion | |
1383 (newline 2) | |
1384 (insert "endfunction") | |
1385 (indent-according-to-mode)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1386 |
16901 | 1387 |
1388 ;;; Menu | |
1389 (defun octave-add-octave-menu () | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
1390 "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
|
1391 (require 'easymenu) |
16901 | 1392 (easy-menu-define octave-mode-menu-map octave-mode-map |
1393 "Menu keymap for Octave mode." octave-mode-menu) | |
1394 (easy-menu-add octave-mode-menu-map octave-mode-map)) | |
1395 | |
1396 | |
1397 ;;; Communication with the inferior Octave process | |
1398 (defun octave-kill-process () | |
1399 "Kill inferior Octave process and its buffer." | |
1400 (interactive) | |
1401 (if inferior-octave-process | |
1402 (progn | |
1403 (process-send-string inferior-octave-process "quit;\n") | |
1404 (accept-process-output inferior-octave-process))) | |
1405 (if inferior-octave-buffer | |
1406 (kill-buffer inferior-octave-buffer))) | |
1407 | |
1408 (defun octave-show-process-buffer () | |
1409 "Make sure that `inferior-octave-buffer' is displayed." | |
1410 (interactive) | |
1411 (if (get-buffer inferior-octave-buffer) | |
1412 (display-buffer inferior-octave-buffer) | |
1413 (message "No buffer named %s" inferior-octave-buffer))) | |
1414 | |
1415 (defun octave-hide-process-buffer () | |
1416 "Delete all windows that display `inferior-octave-buffer'." | |
1417 (interactive) | |
1418 (if (get-buffer inferior-octave-buffer) | |
1419 (delete-windows-on inferior-octave-buffer) | |
1420 (message "No buffer named %s" inferior-octave-buffer))) | |
1421 | |
1422 (defun octave-send-region (beg end) | |
1423 "Send current region to the inferior Octave process." | |
1424 (interactive "r") | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1425 (inferior-octave t) |
16901 | 1426 (let ((proc inferior-octave-process) |
1427 (string (buffer-substring-no-properties beg end)) | |
1428 line) | |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
1429 (with-current-buffer inferior-octave-buffer |
16901 | 1430 (setq inferior-octave-output-list nil) |
1431 (while (not (string-equal string "")) | |
1432 (if (string-match "\n" string) | |
1433 (setq line (substring string 0 (match-beginning 0)) | |
1434 string (substring string (match-end 0))) | |
1435 (setq line string string "")) | |
1436 (setq inferior-octave-receive-in-progress t) | |
1437 (inferior-octave-send-list-and-digest (list (concat line "\n"))) | |
1438 (while inferior-octave-receive-in-progress | |
1439 (accept-process-output proc)) | |
1440 (insert-before-markers | |
1441 (mapconcat 'identity | |
1442 (append | |
1443 (if octave-send-echo-input (list line) (list "")) | |
1444 (mapcar 'inferior-octave-strip-ctrl-g | |
1445 inferior-octave-output-list) | |
1446 (list inferior-octave-output-string)) | |
1447 "\n"))))) | |
1448 (if octave-send-show-buffer | |
1449 (display-buffer inferior-octave-buffer))) | |
1450 | |
1451 (defun octave-send-block () | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1452 "Send current Octave block to the inferior Octave process." |
16901 | 1453 (interactive) |
1454 (save-excursion | |
1455 (octave-mark-block) | |
1456 (octave-send-region (point) (mark)))) | |
1457 | |
1458 (defun octave-send-defun () | |
1459 "Send current Octave function to the inferior Octave process." | |
1460 (interactive) | |
1461 (save-excursion | |
1462 (octave-mark-defun) | |
1463 (octave-send-region (point) (mark)))) | |
1464 | |
1465 (defun octave-send-line (&optional arg) | |
1466 "Send current Octave code line to the inferior Octave process. | |
1467 With positive prefix ARG, send that many lines. | |
1468 If `octave-send-line-auto-forward' is non-nil, go to the next unsent | |
1469 code line." | |
1470 (interactive "P") | |
1471 (or arg (setq arg 1)) | |
1472 (if (> arg 0) | |
1473 (let (beg end) | |
1474 (beginning-of-line) | |
1475 (setq beg (point)) | |
1476 (octave-next-code-line (- arg 1)) | |
1477 (end-of-line) | |
1478 (setq end (point)) | |
1479 (if octave-send-line-auto-forward | |
1480 (octave-next-code-line 1)) | |
1481 (octave-send-region beg end)))) | |
1482 | |
1483 (defun octave-eval-print-last-sexp () | |
1484 "Evaluate Octave sexp before point and print value into current buffer." | |
1485 (interactive) | |
1486 (inferior-octave t) | |
1487 (let ((standard-output (current-buffer)) | |
1488 (print-escape-newlines nil) | |
1489 (opoint (point))) | |
1490 (terpri) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1491 (prin1 |
16901 | 1492 (save-excursion |
1493 (forward-sexp -1) | |
1494 (inferior-octave-send-list-and-digest | |
1495 (list (concat (buffer-substring-no-properties (point) opoint) | |
1496 "\n"))) | |
1497 (mapconcat 'identity inferior-octave-output-list "\n"))) | |
1498 (terpri))) | |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1499 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1500 ;;; Bug reporting |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1501 (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
|
1502 "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
|
1503 (interactive) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1504 (require 'reporter) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1505 (and |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1506 (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
|
1507 (reporter-submit-bug-report |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1508 octave-maintainer-address |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1509 (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
|
1510 (list |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1511 'octave-auto-indent |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1512 'octave-auto-newline |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1513 'octave-blink-matching-block |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1514 'octave-block-offset |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1515 'octave-comment-char |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1516 'octave-continuation-offset |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1517 'octave-continuation-string |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1518 'octave-send-echo-input |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1519 '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
|
1520 'octave-send-show-buffer)))) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1521 |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
1522 ;; provide ourself |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1523 |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
1524 (provide 'octave-mod) |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1525 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
1526 ;; 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
|
1527 ;;; octave-mod.el ends here |