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