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