Mercurial > emacs
annotate lisp/progmodes/octave-mod.el @ 110599:eae9fd6b889d
gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Mon, 27 Sep 2010 03:16:55 +0000 |
parents | b10051866f51 |
children | e544f6cc2447 |
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 "\\<\\(" |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
164 (regexp-opt (append octave-reserved-words |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
165 octave-text-functions)) |
16911
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. |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
174 (cons (concat "\\<" (regexp-opt octave-variables) "\\>") |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
175 'font-lock-variable-name-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
176 ;; Fontify all function declarations. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
177 (list octave-function-header-regexp |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
178 '(1 font-lock-keyword-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
179 '(3 font-lock-function-name-face nil t))) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
180 "Additional Octave expressions to highlight.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
181 |
110305
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
182 (defun octave-syntax-propertize-function (start end) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
183 (goto-char start) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
184 (octave-syntax-propertize-sqs end) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
185 (funcall (syntax-propertize-rules |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
186 ;; Try to distinguish the string-quotes from the transpose-quotes. |
110305
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
187 ("[[({,; ]\\('\\)" |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
188 (1 (prog1 "\"'" (octave-syntax-propertize-sqs end))))) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
189 (point) end)) |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
190 |
110305
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
191 (defun octave-syntax-propertize-sqs (end) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
192 "Propertize the content/end of single-quote strings." |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
193 (when (eq (nth 3 (syntax-ppss)) ?\') |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
194 ;; A '..' string. |
110305
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
195 (when (re-search-forward |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
196 "\\(?:\\=\\|[^']\\)\\(?:''\\)*\\('\\)\\($\\|[^']\\)" end 'move) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
197 (goto-char (match-beginning 2)) |
110164
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
198 (when (eq (char-before (match-beginning 1)) ?\\) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
199 ;; Backslash cannot escape a single quote. |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
200 (put-text-property (1- (match-beginning 1)) (match-beginning 1) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
201 'syntax-table (string-to-syntax "."))) |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
202 (put-text-property (match-beginning 1) (match-end 1) |
110305
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
203 'syntax-table (string-to-syntax "\"'"))))) |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
204 |
20781 | 205 (defcustom inferior-octave-buffer "*Inferior Octave*" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
206 "Name of buffer for running an inferior Octave process." |
20781 | 207 :type 'string |
208 :group 'octave-inferior) | |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
209 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
210 (defvar inferior-octave-process nil) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
211 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
212 (defvar octave-mode-map |
16901 | 213 (let ((map (make-sparse-keymap))) |
214 (define-key map "`" 'octave-abbrev-start) | |
215 (define-key map ";" 'octave-electric-semi) | |
216 (define-key map " " 'octave-electric-space) | |
217 (define-key map "\n" 'octave-reindent-then-newline-and-indent) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
218 (define-key map "\e\n" 'octave-indent-new-comment-line) |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
219 (define-key map "\M-\C-q" 'octave-indent-defun) |
16901 | 220 (define-key map "\C-c\C-b" 'octave-submit-bug-report) |
221 (define-key map "\C-c\C-p" 'octave-previous-code-line) | |
222 (define-key map "\C-c\C-n" 'octave-next-code-line) | |
223 (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
|
224 (define-key map "\C-c\C-e" 'octave-end-of-line) |
110066
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
225 (define-key map [remap down-list] 'smie-down-list) |
16901 | 226 (define-key map "\C-c\M-\C-h" 'octave-mark-block) |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
227 (define-key map "\C-c]" 'smie-close-block) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
228 (define-key map "\C-c/" 'smie-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
|
229 (define-key map "\C-c\C-f" 'octave-insert-defun) |
16901 | 230 (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
|
231 (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
|
232 (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
|
233 (define-key map "\C-c\C-if" 'octave-send-defun) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
234 (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
|
235 (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
|
236 (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
|
237 (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
|
238 (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
|
239 (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
|
240 (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
|
241 (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
|
242 (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
|
243 (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
|
244 (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
|
245 map) |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
246 "Keymap used in Octave mode.") |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
247 |
16901 | 248 |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
249 |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
250 (easy-menu-define octave-mode-menu octave-mode-map |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
251 "Menu for Octave mode." |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
252 '("Octave" |
98358
393e8f885464
(octave-mode-menu): Fix incorrect quoting.
Chong Yidong <cyd@stupidchicken.com>
parents:
94673
diff
changeset
|
253 ("Lines" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
254 ["Previous Code Line" octave-previous-code-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
255 ["Next Code Line" octave-next-code-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
256 ["Begin of Continuation" octave-beginning-of-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
257 ["End of Continuation" octave-end-of-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
258 ["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
|
259 ("Blocks" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
260 ["Mark Block" octave-mark-block t] |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
261 ["Close Block" smie-close-block t]) |
98358
393e8f885464
(octave-mode-menu): Fix incorrect quoting.
Chong Yidong <cyd@stupidchicken.com>
parents:
94673
diff
changeset
|
262 ("Functions" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
263 ["Indent Function" octave-indent-defun t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
264 ["Insert Function" octave-insert-defun t]) |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
265 "-" |
98358
393e8f885464
(octave-mode-menu): Fix incorrect quoting.
Chong Yidong <cyd@stupidchicken.com>
parents:
94673
diff
changeset
|
266 ("Debug" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
267 ["Send Current Line" octave-send-line t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
268 ["Send Current Block" octave-send-block t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
269 ["Send Current Function" octave-send-defun t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
270 ["Send Region" octave-send-region t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
271 ["Show Process Buffer" octave-show-process-buffer t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
272 ["Hide Process Buffer" octave-hide-process-buffer t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
273 ["Kill Process" octave-kill-process t]) |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
274 "-" |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
275 ["Indent Line" indent-according-to-mode t] |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
276 ["Complete Symbol" completion-at-point t] |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
277 "-" |
109842
ecdbd21826de
* lisp/progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109815
diff
changeset
|
278 ["Toggle Abbrev Mode" abbrev-mode |
ecdbd21826de
* lisp/progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109815
diff
changeset
|
279 :style toggle :selected abbrev-mode] |
ecdbd21826de
* lisp/progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109815
diff
changeset
|
280 ["Toggle Auto-Fill Mode" auto-fill-mode |
ecdbd21826de
* lisp/progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109815
diff
changeset
|
281 :style toggle :selected auto-fill-function] |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
282 "-" |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
283 ["Submit Bug Report" octave-submit-bug-report t] |
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
284 "-" |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
285 ["Describe Octave Mode" describe-mode t] |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
286 ["Lookup Octave Index" info-lookup-symbol t])) |
16901 | 287 |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
288 (defvar octave-mode-syntax-table |
16901 | 289 (let ((table (make-syntax-table))) |
290 (modify-syntax-entry ?\r " " table) | |
291 (modify-syntax-entry ?+ "." table) | |
292 (modify-syntax-entry ?- "." table) | |
293 (modify-syntax-entry ?= "." table) | |
294 (modify-syntax-entry ?* "." table) | |
295 (modify-syntax-entry ?/ "." table) | |
296 (modify-syntax-entry ?> "." table) | |
297 (modify-syntax-entry ?< "." table) | |
298 (modify-syntax-entry ?& "." table) | |
299 (modify-syntax-entry ?| "." table) | |
300 (modify-syntax-entry ?! "." table) | |
301 (modify-syntax-entry ?\\ "\\" table) | |
302 (modify-syntax-entry ?\' "." table) | |
94565
fe81b2cb42e0
(octave-abbrev-table): Move defvar and
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94496
diff
changeset
|
303 ;; 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
|
304 (modify-syntax-entry ?\` "." table) |
16901 | 305 (modify-syntax-entry ?\" "\"" table) |
306 (modify-syntax-entry ?. "w" table) | |
307 (modify-syntax-entry ?_ "w" table) | |
109757
818e325e0469
Introduce a new comment style "c" flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109755
diff
changeset
|
308 ;; 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
|
309 ;; 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
|
310 ;; 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
|
311 ;; 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
|
312 ;; 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
|
313 ;; 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
|
314 (modify-syntax-entry ?\% "< 13" table) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
315 (modify-syntax-entry ?\# "< 13" table) |
109757
818e325e0469
Introduce a new comment style "c" flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109755
diff
changeset
|
316 (modify-syntax-entry ?\{ "(} 2c" table) |
818e325e0469
Introduce a new comment style "c" flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109755
diff
changeset
|
317 (modify-syntax-entry ?\} "){ 4c" table) |
16901 | 318 (modify-syntax-entry ?\n ">" table) |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
319 table) |
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
320 "Syntax table in use in `octave-mode' buffers.") |
16901 | 321 |
20781 | 322 (defcustom octave-auto-indent nil |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
323 "Non-nil means indent line after a semicolon or space in Octave mode." |
20781 | 324 :type 'boolean |
26157
313a03652df3
Added (require 'custom) and deleted :version line from
Stephen Eglen <stephen@gnu.org>
parents:
25277
diff
changeset
|
325 :group 'octave) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
326 |
20781 | 327 (defcustom octave-auto-newline nil |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
328 "Non-nil means automatically newline after a semicolon in Octave mode." |
20781 | 329 :type 'boolean |
330 :group 'octave) | |
16901 | 331 |
20781 | 332 (defcustom octave-blink-matching-block t |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
333 "Control the blinking of matching Octave block keywords. |
16901 | 334 Non-nil means show matching begin of block when inserting a space, |
20781 | 335 newline or semicolon after an else or end keyword." |
336 :type 'boolean | |
337 :group 'octave) | |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
338 |
20781 | 339 (defcustom octave-block-offset 2 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
340 "Extra indentation applied to statements in Octave block structures." |
20781 | 341 :type 'integer |
342 :group 'octave) | |
16901 | 343 |
344 (defvar octave-block-comment-start | |
345 (concat (make-string 2 octave-comment-char) " ") | |
346 "String to insert to start a new Octave comment on an empty line.") | |
347 | |
20781 | 348 (defcustom octave-continuation-offset 4 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
349 "Extra indentation applied to Octave continuation lines." |
20781 | 350 :type 'integer |
351 :group 'octave) | |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
352 (eval-and-compile |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
353 (defconst octave-continuation-marker-regexp "\\\\\\|\\.\\.\\.")) |
16901 | 354 (defvar octave-continuation-regexp |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
355 (concat "[^#%\n]*\\(" octave-continuation-marker-regexp |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
356 "\\)\\s-*\\(\\s<.*\\)?$")) |
20781 | 357 (defcustom octave-continuation-string "\\" |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
358 "Character string used for Octave continuation lines. Normally \\." |
20781 | 359 :type 'string |
360 :group 'octave) | |
16901 | 361 |
362 (defvar octave-completion-alist nil | |
363 "Alist of Octave symbols for completion in Octave mode. | |
364 Each element looks like (VAR . VAR), where the car and cdr are the same | |
365 symbol (an Octave command or variable name). | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
366 Currently, only builtin variables can be completed.") |
16901 | 367 |
368 (defvar octave-mode-imenu-generic-expression | |
369 (list | |
370 ;; Functions | |
371 (list nil octave-function-header-regexp 3)) | |
372 "Imenu expression for Octave mode. See `imenu-generic-expression'.") | |
373 | |
20781 | 374 (defcustom octave-mode-hook nil |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
375 "Hook to be run when Octave mode is started." |
20781 | 376 :type 'hook |
377 :group 'octave) | |
16901 | 378 |
20781 | 379 (defcustom octave-send-show-buffer t |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
380 "Non-nil means display `inferior-octave-buffer' after sending to it." |
20781 | 381 :type 'boolean |
382 :group 'octave) | |
383 (defcustom octave-send-line-auto-forward t | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
384 "Control auto-forward after sending to the inferior Octave process. |
20781 | 385 Non-nil means always go to the next Octave code line after sending." |
386 :type 'boolean | |
387 :group 'octave) | |
388 (defcustom octave-send-echo-input t | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
389 "Non-nil means echo input sent to the inferior Octave process." |
20781 | 390 :type 'boolean |
391 :group 'octave) | |
16901 | 392 |
393 | |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
394 ;;; SMIE indentation |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
395 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
396 (require 'smie) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
397 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
398 (defconst octave-operator-table |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
399 '((assoc ";" "\n") (assoc ",") ; The doc claims they have equal precedence!? |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
400 (right "=" "+=" "-=" "*=" "/=") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
401 (assoc "&&") (assoc "||") ; The doc claims they have equal precedence!? |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
402 (assoc "&") (assoc "|") ; The doc claims they have equal precedence!? |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
403 (nonassoc "<" "<=" "==" ">=" ">" "!=" "~=") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
404 (nonassoc ":") ;No idea what this is. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
405 (assoc "+" "-") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
406 (assoc "*" "/" "\\" ".\\" ".*" "./") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
407 (nonassoc "'" ".'") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
408 (nonassoc "++" "--" "!" "~") ;And unary "+" and "-". |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
409 (right "^" "**" ".^" ".**") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
410 ;; It's not really an operator, but for indentation purposes it |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
411 ;; could be convenient to treat it as one. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
412 (assoc "..."))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
413 |
110164
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
414 (defconst octave-smie-bnf-table |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
415 '((atom) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
416 ;; We can't distinguish the first element in a sequence with |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
417 ;; precedence grammars, so we can't distinguish the condition |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
418 ;; if the `if' from the subsequent body, for example. |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
419 ;; This has to be done later in the indentation rules. |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
420 (exp (exp "\n" exp) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
421 ;; We need to mention at least one of the operators in this part |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
422 ;; of the grammar: if the BNF and the operator table have |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
423 ;; no overlap, SMIE can't know how they relate. |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
424 (exp ";" exp) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
425 ("try" exp "catch" exp "end_try_catch") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
426 ("try" exp "catch" exp "end") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
427 ("unwind_protect" exp |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
428 "unwind_protect_cleanup" exp "end_unwind_protect") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
429 ("unwind_protect" exp "unwind_protect_cleanup" exp "end") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
430 ("for" exp "endfor") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
431 ("for" exp "end") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
432 ("do" exp "until" atom) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
433 ("while" exp "endwhile") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
434 ("while" exp "end") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
435 ("if" exp "endif") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
436 ("if" exp "else" exp "endif") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
437 ("if" exp "elseif" exp "else" exp "endif") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
438 ("if" exp "elseif" exp "elseif" exp "else" exp "endif") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
439 ("if" exp "elseif" exp "elseif" exp "else" exp "end") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
440 ("switch" exp "case" exp "endswitch") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
441 ("switch" exp "case" exp "otherwise" exp "endswitch") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
442 ("switch" exp "case" exp "case" exp "otherwise" exp "endswitch") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
443 ("switch" exp "case" exp "case" exp "otherwise" exp "end") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
444 ("function" exp "endfunction") |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
445 ("function" exp "end")) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
446 ;; (fundesc (atom "=" atom)) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
447 )) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
448 |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
449 (defconst octave-smie-closer-alist |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
450 (smie-bnf-closer-alist octave-smie-bnf-table)) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
451 |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
452 (defconst octave-smie-op-levels |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
453 (smie-prec2-levels |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
454 (smie-merge-prec2s |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
455 (smie-bnf-precedence-table |
110164
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
456 octave-smie-bnf-table |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
457 '((assoc "\n" ";"))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
458 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
459 (smie-precs-precedence-table |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
460 (append octave-operator-table |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
461 '((nonassoc " -dummy- "))) ;Bogus anchor at the end. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
462 )))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
463 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
464 ;; Tokenizing needs to be refined so that ";;" is treated as two |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
465 ;; tokens and also so as to recognize the \n separator (and |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
466 ;; corresponding continuation lines). |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
467 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
468 (defconst octave-operator-regexp |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
469 (regexp-opt (apply 'append (mapcar 'cdr octave-operator-table)))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
470 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
471 (defun octave-smie-backward-token () |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
472 (let ((pos (point))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
473 (forward-comment (- (point))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
474 (cond |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
475 ((and (not (eq (char-before) ?\;)) ;Coalesce ";" and "\n". |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
476 (> pos (line-end-position)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
477 (if (looking-back octave-continuation-marker-regexp (- (point) 3)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
478 (progn |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
479 (goto-char (match-beginning 0)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
480 (forward-comment (- (point))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
481 nil) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
482 t) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
483 ;; Ignore it if it's within parentheses. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
484 (let ((ppss (syntax-ppss))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
485 (not (and (nth 1 ppss) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
486 (eq ?\( (char-after (nth 1 ppss))))))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
487 (skip-chars-forward " \t") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
488 ;; Why bother distinguishing \n and ;? |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
489 ";") ;;"\n" |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
490 ((and (looking-back octave-operator-regexp (- (point) 3) 'greedy) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
491 ;; Don't mistake a string quote for a transpose. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
492 (not (looking-back "\\s\"" (1- (point))))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
493 (goto-char (match-beginning 0)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
494 (match-string-no-properties 0)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
495 (t |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
496 (smie-default-backward-token))))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
497 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
498 (defun octave-smie-forward-token () |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
499 (skip-chars-forward " \t") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
500 (when (looking-at (eval-when-compile |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
501 (concat "\\(" octave-continuation-marker-regexp |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
502 "\\)[ \t]*\\($\\|[%#]\\)"))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
503 (goto-char (match-end 1)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
504 (forward-comment 1)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
505 (cond |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
506 ((and (looking-at "$\\|[%#]") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
507 ;; Ignore it if it's within parentheses. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
508 (prog1 (let ((ppss (syntax-ppss))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
509 (not (and (nth 1 ppss) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
510 (eq ?\( (char-after (nth 1 ppss)))))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
511 (forward-comment (point-max)))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
512 ;; Why bother distinguishing \n and ;? |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
513 ";") ;;"\n" |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
514 ((looking-at ";[ \t]*\\($\\|[%#]\\)") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
515 ;; Combine the ; with the subsequent \n. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
516 (goto-char (match-beginning 1)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
517 (forward-comment 1) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
518 ";") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
519 ((and (looking-at octave-operator-regexp) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
520 ;; Don't mistake a string quote for a transpose. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
521 (not (looking-at "\\s\""))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
522 (goto-char (match-end 0)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
523 (match-string-no-properties 0)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
524 (t |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
525 (smie-default-forward-token)))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
526 |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
527 (defconst octave-smie-indent-rules |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
528 '((";" |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
529 (:parent ("function" "if" "while" "else" "elseif" "for" "otherwise" |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
530 "case" "try" "catch" "unwind_protect" "unwind_protect_cleanup") |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
531 ;; FIXME: don't hardcode 2. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
532 (+ parent octave-block-offset)) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
533 ;; (:parent "switch" 4) ;For (invalid) code between switch and case. |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
534 0) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
535 ((:before . "case") octave-block-offset))) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
536 |
110270
c7809974cd64
Misc cleanups and simplifications.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110164
diff
changeset
|
537 (defvar electric-indent-chars) |
c7809974cd64
Misc cleanups and simplifications.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110164
diff
changeset
|
538 |
16901 | 539 ;;;###autoload |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
540 (define-derived-mode octave-mode prog-mode "Octave" |
16901 | 541 "Major mode for editing Octave code. |
542 | |
543 This mode makes it easier to write Octave code by helping with | |
544 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
|
545 showing keywords, comments, strings, etc. in different faces (with |
16901 | 546 Font Lock mode on terminals that support it). |
547 | |
548 Octave itself is a high-level language, primarily intended for numerical | |
549 computations. It provides a convenient command line interface for | |
550 solving linear and nonlinear problems numerically. Function definitions | |
551 can also be stored in files, and it can be used in a batch mode (which | |
552 is why you need this mode!). | |
553 | |
554 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
|
555 ftp from ftp.octave.org in the directory `/pub/octave'. Complete |
16901 | 556 source and binaries for several popular systems are available. |
557 | |
558 Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords. | |
559 | |
560 Keybindings | |
561 =========== | |
562 | |
563 \\{octave-mode-map} | |
564 | |
565 Variables you can use to customize Octave mode | |
566 ============================================== | |
567 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
568 `octave-auto-indent' |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
569 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
|
570 Default is nil. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
571 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
572 `octave-auto-newline' |
16901 | 573 Non-nil means auto-insert a newline and indent after a semicolon. |
574 Default is nil. | |
575 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
576 `octave-blink-matching-block' |
16901 | 577 Non-nil means show matching begin of block when inserting a space, |
578 newline or semicolon after an else or end keyword. Default is t. | |
579 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
580 `octave-block-offset' |
16901 | 581 Extra indentation applied to statements in block structures. |
582 Default is 2. | |
583 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
584 `octave-continuation-offset' |
16901 | 585 Extra indentation applied to Octave continuation lines. |
586 Default is 4. | |
587 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
588 `octave-continuation-string' |
16901 | 589 String used for Octave continuation lines. |
590 Default is a backslash. | |
591 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
592 `octave-send-echo-input' |
16901 | 593 Non-nil means always display `inferior-octave-buffer' after sending a |
594 command to the inferior Octave process. | |
595 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
596 `octave-send-line-auto-forward' |
16901 | 597 Non-nil means always go to the next unsent line of Octave code after |
598 sending a line to the inferior Octave process. | |
599 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
600 `octave-send-echo-input' |
16901 | 601 Non-nil means echo input sent to the inferior Octave process. |
602 | |
603 Turning on Octave mode runs the hook `octave-mode-hook'. | |
604 | |
605 To begin using this mode for all `.m' files that you edit, add the | |
606 following lines to your `.emacs' file: | |
607 | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
608 (add-to-list 'auto-mode-alist '(\"\\\\.m\\\\'\" . octave-mode)) |
16901 | 609 |
85052
c25dd5c18af4
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
84655
diff
changeset
|
610 To automatically turn on the abbrev and auto-fill features, |
16901 | 611 add the following lines to your `.emacs' file as well: |
612 | |
613 (add-hook 'octave-mode-hook | |
614 (lambda () | |
615 (abbrev-mode 1) | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
616 (auto-fill-mode 1))) |
16901 | 617 |
618 To submit a problem report, enter \\[octave-submit-bug-report] from \ | |
619 an Octave mode buffer. | |
620 This automatically sets up a mail buffer with version information | |
621 already added. You just need to add a description of the problem, | |
622 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
|
623 (setq local-abbrev-table octave-abbrev-table) |
16901 | 624 |
110038
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
625 (smie-setup octave-smie-op-levels octave-smie-indent-rules) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
626 (set (make-local-variable 'smie-indent-basic) 'octave-block-offset) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
627 (set (make-local-variable 'smie-backward-token-function) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
628 'octave-smie-backward-token) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
629 (set (make-local-variable 'smie-forward-token-function) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
630 'octave-smie-forward-token) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
631 (set (make-local-variable 'forward-sexp-function) |
6939db1ee97b
Use SMIE for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109842
diff
changeset
|
632 'smie-forward-sexp-command) |
110164
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
633 (set (make-local-variable 'smie-closer-alist) octave-smie-closer-alist) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
634 ;; Only needed for interactive calls to blink-matching-open. |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
635 (set (make-local-variable 'blink-matching-check-function) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
636 #'smie-blink-matching-check) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
637 |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
638 (when octave-blink-matching-block |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
639 (add-hook 'post-self-insert-hook #'smie-blink-matching-open 'append 'local) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
640 (set (make-local-variable 'smie-blink-matching-triggers) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
641 (append smie-blink-matching-triggers '(\;) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
642 ;; Rather than wait for SPC or ; to blink, try to blink as |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
643 ;; soon as we type the last char of a block ender. |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
644 ;; But strip ?d from this list so that we don't blink twice |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
645 ;; when the user writes "endif" (once at "end" and another |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
646 ;; time at "endif"). |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
647 (delq ?d (delete-dups |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
648 (mapcar (lambda (kw) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
649 (aref (cdr kw) (1- (length (cdr kw))))) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
650 smie-closer-alist)))))) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
651 |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
652 ;; FIXME: maybe we should use (cons ?\; electric-indent-chars) |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
653 ;; since only ; is really octave-specific. |
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
654 (set (make-local-variable 'electric-indent-chars) '(?\; ?\s ?\n)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
655 |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
656 (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
|
657 (set (make-local-variable 'comment-end) "") |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
658 ;; 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
|
659 ;; 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
|
660 ;; (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
|
661 (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
|
662 (set (make-local-variable 'comment-add) 1) |
16901 | 663 |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
664 (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
|
665 (set (make-local-variable 'paragraph-start) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
666 (concat "\\s-*$\\|" page-delimiter)) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
667 (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
|
668 (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
|
669 (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
|
670 ;; FIXME: Why disable it? |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
671 ;; (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
|
672 ;; 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
|
673 ;; (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
|
674 (set (make-local-variable 'normal-auto-fill-function) 'octave-auto-fill) |
16901 | 675 |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
676 (set (make-local-variable 'font-lock-defaults) |
110305
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
677 '(octave-font-lock-keywords)) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
678 |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
679 (set (make-local-variable 'syntax-propertize-function) |
b10051866f51
New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110270
diff
changeset
|
680 #'octave-syntax-propertize-function) |
16901 | 681 |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
682 (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
|
683 octave-mode-imenu-generic-expression) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
684 (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
|
685 |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
686 (add-hook 'completion-at-point-functions |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
687 'octave-completion-at-point-function nil t) |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
688 (set (make-local-variable 'beginning-of-defun-function) |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
689 'octave-beginning-of-defun) |
16901 | 690 |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
691 (easy-menu-add octave-mode-menu) |
16901 | 692 (octave-initialize-completions) |
62772
f2892faa87d4
* progmodes/ada-mode.el (ada-mode):
Lute Kamstra <lute@gnu.org>
parents:
52930
diff
changeset
|
693 (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
|
694 |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
695 (defvar info-lookup-mode) |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
696 |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
697 (defun octave-help () |
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
698 "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
|
699 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
|
700 (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
|
701 (call-interactively 'info-lookup-symbol))) |
16901 | 702 |
703 ;;; Miscellaneous useful functions | |
704 | |
705 (defsubst octave-in-comment-p () | |
78487
419c5c316b51
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78234
diff
changeset
|
706 "Return t if point is inside an Octave comment." |
16901 | 707 (save-excursion |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
708 ;; FIXME: use syntax-ppss? |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
709 (nth 4 (parse-partial-sexp (line-beginning-position) (point))))) |
16901 | 710 |
711 (defsubst octave-in-string-p () | |
78487
419c5c316b51
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78234
diff
changeset
|
712 "Return t if point is inside an Octave string." |
16901 | 713 (save-excursion |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
714 ;; FIXME: use syntax-ppss? |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
715 (nth 3 (parse-partial-sexp (line-beginning-position) (point))))) |
16901 | 716 |
717 (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
|
718 "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
|
719 ;; FIXME: Use syntax-ppss? |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
720 (let ((pps (parse-partial-sexp (line-beginning-position) (point)))) |
16901 | 721 (not (or (nth 3 pps) (nth 4 pps))))) |
722 | |
723 | |
79070
b5a52e129c97
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
78487
diff
changeset
|
724 (defun octave-looking-at-kw (regexp) |
79072
c766bbd72b1d
(octave-looking-at-kw): Add doc string.
Glenn Morris <rgm@gnu.org>
parents:
79070
diff
changeset
|
725 "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
|
726 (let ((case-fold-search nil)) |
b5a52e129c97
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
78487
diff
changeset
|
727 (looking-at regexp))) |
b5a52e129c97
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
78487
diff
changeset
|
728 |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
729 (defun octave-maybe-insert-continuation-string () |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
730 (if (or (octave-in-comment-p) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
731 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
732 (beginning-of-line) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
733 (looking-at octave-continuation-regexp))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
734 nil |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
735 (delete-horizontal-space) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
736 (insert (concat " " octave-continuation-string)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
737 |
16901 | 738 |
739 ;;; Indentation | |
740 | |
741 (defun octave-indent-new-comment-line () | |
742 "Break Octave line at point, continuing comment if within one. | |
743 If within code, insert `octave-continuation-string' before breaking the | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
744 line. If within a string, signal an error. |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
745 The new line is properly indented." |
16901 | 746 (interactive) |
747 (delete-horizontal-space) | |
748 (cond | |
749 ((octave-in-comment-p) | |
750 (indent-new-comment-line)) | |
751 ((octave-in-string-p) | |
752 (error "Cannot split a code line inside a string")) | |
753 (t | |
754 (insert (concat " " octave-continuation-string)) | |
755 (octave-reindent-then-newline-and-indent)))) | |
756 | |
757 (defun octave-indent-defun () | |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
758 "Properly indent the Octave function which contains point." |
16901 | 759 (interactive) |
760 (save-excursion | |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
761 (mark-defun) |
16901 | 762 (message "Indenting function...") |
763 (indent-region (point) (mark) nil)) | |
764 (message "Indenting function...done.")) | |
765 | |
766 | |
767 ;;; Motion | |
768 (defun octave-next-code-line (&optional arg) | |
769 "Move ARG lines of Octave code forward (backward if ARG is negative). | |
770 Skips past all empty and comment lines. Default for ARG is 1. | |
771 | |
772 On success, return 0. Otherwise, go as far as possible and return -1." | |
773 (interactive "p") | |
774 (or arg (setq arg 1)) | |
775 (beginning-of-line) | |
776 (let ((n 0) | |
777 (inc (if (> arg 0) 1 -1))) | |
778 (while (and (/= arg 0) (= n 0)) | |
779 (setq n (forward-line inc)) | |
780 (while (and (= n 0) | |
781 (looking-at "\\s-*\\($\\|\\s<\\)")) | |
782 (setq n (forward-line inc))) | |
783 (setq arg (- arg inc))) | |
784 n)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
785 |
16901 | 786 (defun octave-previous-code-line (&optional arg) |
787 "Move ARG lines of Octave code backward (forward if ARG is negative). | |
788 Skips past all empty and comment lines. Default for ARG is 1. | |
789 | |
790 On success, return 0. Otherwise, go as far as possible and return -1." | |
791 (interactive "p") | |
792 (or arg (setq arg 1)) | |
793 (octave-next-code-line (- arg))) | |
794 | |
795 (defun octave-beginning-of-line () | |
796 "Move point to beginning of current Octave line. | |
797 If on an empty or comment line, go to the beginning of that line. | |
798 Otherwise, move backward to the beginning of the first Octave code line | |
799 which is not inside a continuation statement, i.e., which does not | |
800 follow a code line ending in `...' or `\\', or is inside an open | |
801 parenthesis list." | |
802 (interactive) | |
803 (beginning-of-line) | |
804 (if (not (looking-at "\\s-*\\($\\|\\s<\\)")) | |
805 (while (or (condition-case nil | |
806 (progn | |
807 (up-list -1) | |
808 (beginning-of-line) | |
809 t) | |
810 (error nil)) | |
811 (and (or (looking-at "\\s-*\\($\\|\\s<\\)") | |
812 (save-excursion | |
813 (if (zerop (octave-previous-code-line)) | |
814 (looking-at octave-continuation-regexp)))) | |
815 (zerop (forward-line -1))))))) | |
816 | |
817 (defun octave-end-of-line () | |
818 "Move point to end of current Octave line. | |
819 If on an empty or comment line, go to the end of that line. | |
820 Otherwise, move forward to the end of the first Octave code line which | |
821 does not end in `...' or `\\' or is inside an open parenthesis list." | |
822 (interactive) | |
823 (end-of-line) | |
824 (if (save-excursion | |
825 (beginning-of-line) | |
826 (looking-at "\\s-*\\($\\|\\s<\\)")) | |
827 () | |
828 (while (or (condition-case nil | |
829 (progn | |
830 (up-list 1) | |
831 (end-of-line) | |
832 t) | |
833 (error nil)) | |
834 (and (save-excursion | |
835 (beginning-of-line) | |
836 (or (looking-at "\\s-*\\($\\|\\s<\\)") | |
837 (looking-at octave-continuation-regexp))) | |
838 (zerop (forward-line 1))))) | |
839 (end-of-line))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
840 |
16901 | 841 (defun octave-mark-block () |
842 "Put point at the beginning of this Octave block, mark at the end. | |
843 The block marked is the one that contains point or follows point." | |
844 (interactive) | |
110066
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
845 (unless (or (looking-at "\\s(") |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
846 (save-excursion |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
847 (let* ((token (funcall smie-forward-token-function)) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
848 (level (assoc token smie-op-levels))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
849 (and level (null (cadr level)))))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
850 (backward-up-list 1)) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
851 (mark-sexp)) |
16901 | 852 |
853 (defun octave-beginning-of-defun (&optional arg) | |
854 "Move backward to the beginning of an Octave function. | |
855 With positive ARG, do it that many times. Negative argument -N means | |
856 move forward to Nth following beginning of a function. | |
857 Returns t unless search stops at the beginning or end of the buffer." | |
858 (let* ((arg (or arg 1)) | |
859 (inc (if (> arg 0) 1 -1)) | |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
860 (found nil) |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
861 (case-fold-search nil)) |
16901 | 862 (and (not (eobp)) |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
863 (not (and (> arg 0) (looking-at "\\<function\\>"))) |
16901 | 864 (skip-syntax-forward "w")) |
865 (while (and (/= arg 0) | |
866 (setq found | |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
867 (re-search-backward "\\<function\\>" inc))) |
16901 | 868 (if (octave-not-in-string-or-comment-p) |
869 (setq arg (- arg inc)))) | |
870 (if found | |
871 (progn | |
872 (and (< inc 0) (goto-char (match-beginning 0))) | |
873 t)))) | |
874 | |
875 | |
876 ;;; Filling | |
877 (defun octave-auto-fill () | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
878 "Perform auto-fill in Octave mode. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
879 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
|
880 otherwise." |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
881 (let (fc give-up) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
882 (if (or (null (setq fc (current-fill-column))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
883 (save-excursion |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
884 (beginning-of-line) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
885 (and auto-fill-inhibit-regexp |
79070
b5a52e129c97
John W. Eaton <jwe at octave.org>
Glenn Morris <rgm@gnu.org>
parents:
78487
diff
changeset
|
886 (octave-looking-at-kw auto-fill-inhibit-regexp)))) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
887 nil ; Can't do anything |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
888 (if (and (not (octave-in-comment-p)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
889 (> (current-column) fc)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
890 (setq fc (- fc (+ (length octave-continuation-string) 1)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
891 (while (and (not give-up) (> (current-column) fc)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
892 (let* ((opoint (point)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
893 (fpoint |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
894 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
895 (move-to-column (+ fc 1)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
896 (skip-chars-backward "^ \t\n") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
897 ;; 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
|
898 ;; the first word |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
899 (if (bolp) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
900 (re-search-forward "[ \t]" opoint t)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
901 ;; 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
|
902 ;; comment chars |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
903 (if (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
904 (skip-syntax-backward " <") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
905 (bolp)) |
52930
069cb76731fd
(octave-comment-start): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
906 (re-search-forward "[ \t]" (line-end-position) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
907 'move)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
908 ;; 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
|
909 ;; continuation string, don't break here. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
910 (if (and (not (octave-in-comment-p)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
911 (looking-at |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
912 (concat "\\s-*" |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
913 (regexp-quote |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
914 octave-continuation-string) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
915 "\\s-*$"))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
916 (end-of-line)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
917 (skip-chars-backward " \t") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
918 (point)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
919 (if (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
920 (goto-char fpoint) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
921 (not (or (bolp) (eolp)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
922 (let ((prev-column (current-column))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
923 (if (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
924 (skip-chars-backward " \t") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
925 (= (point) fpoint)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
926 (progn |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
927 (octave-maybe-insert-continuation-string) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
928 (indent-new-comment-line t)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
929 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
930 (goto-char fpoint) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
931 (octave-maybe-insert-continuation-string) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
932 (indent-new-comment-line t))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
933 (if (>= (current-column) prev-column) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
934 (setq give-up t))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
935 (setq give-up t)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
936 (not give-up)))) |
16901 | 937 |
938 (defun octave-fill-paragraph (&optional arg) | |
110066
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
939 "Fill paragraph of Octave code, handling Octave comments." |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
940 ;; FIXME: difference with generic fill-paragraph: |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
941 ;; - code lines are only split, never joined. |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
942 ;; - \n that end comments are never removed. |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
943 ;; - insert continuation marker when splitting code lines. |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
944 (interactive "P") |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
945 (save-excursion |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
946 (let ((end (progn (forward-paragraph) (copy-marker (point) t))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
947 (beg (progn |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
948 (forward-paragraph -1) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
949 (skip-chars-forward " \t\n") |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
950 (beginning-of-line) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
951 (point))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
952 (cfc (current-fill-column)) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
953 comment-prefix) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
954 (goto-char beg) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
955 (while (< (point) end) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
956 (condition-case nil |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
957 (indent-according-to-mode) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
958 (error nil)) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
959 (move-to-column cfc) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
960 ;; First check whether we need to combine non-empty comment lines |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
961 (if (and (< (current-column) cfc) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
962 (octave-in-comment-p) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
963 (not (save-excursion |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
964 (beginning-of-line) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
965 (looking-at "^\\s-*\\s<+\\s-*$")))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
966 ;; This is a nonempty comment line which does not extend |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
967 ;; past the fill column. If it is followed by a nonempty |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
968 ;; comment line with the same comment prefix, try to |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
969 ;; combine them, and repeat this until either we reach the |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
970 ;; fill-column or there is nothing more to combine. |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
971 (progn |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
972 ;; Get the comment prefix |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
973 (save-excursion |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
974 (beginning-of-line) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
975 (while (and (re-search-forward "\\s<+") |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
976 (not (octave-in-comment-p)))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
977 (setq comment-prefix (match-string 0))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
978 ;; And keep combining ... |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
979 (while (and (< (current-column) cfc) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
980 (save-excursion |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
981 (forward-line 1) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
982 (and (looking-at |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
983 (concat "^\\s-*" |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
984 comment-prefix |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
985 "\\S<")) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
986 (not (looking-at |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
987 (concat "^\\s-*" |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
988 comment-prefix |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
989 "\\s-*$")))))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
990 (delete-char 1) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
991 (re-search-forward comment-prefix) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
992 (delete-region (match-beginning 0) (match-end 0)) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
993 (fixup-whitespace) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
994 (move-to-column cfc)))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
995 ;; We might also try to combine continued code lines> Perhaps |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
996 ;; some other time ... |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
997 (skip-chars-forward "^ \t\n") |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
998 (delete-horizontal-space) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
999 (if (or (< (current-column) cfc) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
1000 (and (= (current-column) cfc) (eolp))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
1001 (forward-line 1) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
1002 (if (not (eolp)) (insert " ")) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
1003 (or (octave-auto-fill) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
1004 (forward-line 1)))) |
5ef877197e04
Remove old indentation and navigation code on octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110038
diff
changeset
|
1005 t))) |
16901 | 1006 |
1007 | |
1008 ;;; Completions | |
1009 (defun octave-initialize-completions () | |
1010 "Create an alist for Octave completions." | |
1011 (if octave-completion-alist | |
1012 () | |
1013 (setq octave-completion-alist | |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1014 (append octave-reserved-words |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1015 octave-text-functions |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1016 octave-variables)))) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1017 |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1018 (defun octave-completion-at-point-function () |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1019 "Find the text to complete and the corresponding table." |
109755
1aa7bc345918
Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109754
diff
changeset
|
1020 (let* ((beg (save-excursion (backward-sexp 1) (point))) |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1021 (end (point))) |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1022 (if (< beg (point)) |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1023 ;; Extend region past point, if applicable. |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1024 (save-excursion (goto-char beg) (forward-sexp 1) |
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1025 (setq end (max end (point))))) |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1026 (list beg end octave-completion-alist))) |
16901 | 1027 |
1028 (defun octave-complete-symbol () | |
1029 "Perform completion on Octave symbol preceding point. | |
1030 Compare that symbol against Octave's reserved words and builtin | |
1031 variables." | |
1032 (interactive) | |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1033 (apply 'completion-in-region (octave-completion-at-point-function))) |
16901 | 1034 |
1035 ;;; Electric characters && friends | |
1036 (defun octave-reindent-then-newline-and-indent () | |
1037 "Reindent current Octave line, insert newline, and indent the new line. | |
1038 If Abbrev mode is on, expand abbrevs first." | |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1039 ;; FIXME: None of this is Octave-specific. |
16901 | 1040 (interactive) |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1041 (reindent-then-newline-and-indent)) |
16901 | 1042 |
1043 (defun octave-electric-semi () | |
1044 "Insert a semicolon in Octave mode. | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1045 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
|
1046 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
|
1047 Insert a newline if `octave-auto-newline' is non-nil." |
16901 | 1048 (interactive) |
110164
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
1049 (setq last-command-event ?\;) |
16901 | 1050 (if (not (octave-not-in-string-or-comment-p)) |
110164
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
1051 (self-insert-command 1) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1052 (if octave-auto-indent |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1053 (indent-according-to-mode)) |
110164
da442f29c7b6
Use SMIE's blink-paren for octave-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
110066
diff
changeset
|
1054 (self-insert-command 1) |
16901 | 1055 (if octave-auto-newline |
1056 (newline-and-indent)))) | |
1057 | |
1058 (defun octave-electric-space () | |
1059 "Insert a space in Octave mode. | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1060 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
|
1061 Reindent the line if `octave-auto-indent' is non-nil." |
16901 | 1062 (interactive) |
101002
3b3c7e10cd97
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1063 (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
|
1064 (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
|
1065 (not (octave-not-in-string-or-comment-p))) |
16901 | 1066 (progn |
1067 (indent-according-to-mode) | |
1068 (self-insert-command 1)) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1069 (if (and octave-auto-indent |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1070 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1071 (skip-syntax-backward " ") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1072 (not (bolp)))) |
16901 | 1073 (indent-according-to-mode)) |
1074 (self-insert-command 1))) | |
1075 | |
1076 (defun octave-abbrev-start () | |
1077 "Start entering an Octave abbreviation. | |
1078 If Abbrev mode is turned on, typing ` (grave accent) followed by ? or | |
1079 \\[help-command] lists all Octave abbrevs. Any other key combination is | |
1080 executed normally. | |
1081 Note that all Octave mode abbrevs start with a grave accent." | |
1082 (interactive) | |
1083 (if (not abbrev-mode) | |
1084 (self-insert-command 1) | |
1085 (let (c) | |
101002
3b3c7e10cd97
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1086 (insert last-command-event) |
85511
f873840f9fea
* emulation/edt-mapper.el (function-key-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85277
diff
changeset
|
1087 (if (if (featurep 'xemacs) |
23848
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1088 (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
|
1089 (eq (event-to-character c) help-char)) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1090 (or (eq (setq c (read-event)) ??) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1091 (eq c help-char))) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1092 (let ((abbrev-table-name-list '(octave-abbrev-table))) |
16901 | 1093 (list-abbrevs)) |
1094 (setq unread-command-events (list c)))))) | |
1095 | |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1096 (define-skeleton octave-insert-defun |
16901 | 1097 "Insert an Octave function skeleton. |
1098 Prompt for the function's name, arguments and return values (to be | |
1099 entered without parens)." | |
109754
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1100 (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
|
1101 (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
|
1102 nil nil defname)) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1103 (args (read-string "Arguments: ")) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1104 (vals (read-string "Return values: "))) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1105 (format "%s%s (%s)" |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1106 (cond |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1107 ((string-equal vals "") vals) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1108 ((string-match "[ ,]" vals) (concat "[" vals "] = ")) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1109 (t (concat vals " = "))) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1110 name |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1111 args)) |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1112 \n "function " > str \n \n |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1113 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
|
1114 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
|
1115 \n _ \n |
47ffebe76e42
Misc code cleanup of octave-mode.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109753
diff
changeset
|
1116 "endfunction" > \n) |
16901 | 1117 |
1118 ;;; Communication with the inferior Octave process | |
1119 (defun octave-kill-process () | |
1120 "Kill inferior Octave process and its buffer." | |
1121 (interactive) | |
1122 (if inferior-octave-process | |
1123 (progn | |
1124 (process-send-string inferior-octave-process "quit;\n") | |
1125 (accept-process-output inferior-octave-process))) | |
1126 (if inferior-octave-buffer | |
1127 (kill-buffer inferior-octave-buffer))) | |
1128 | |
1129 (defun octave-show-process-buffer () | |
1130 "Make sure that `inferior-octave-buffer' is displayed." | |
1131 (interactive) | |
1132 (if (get-buffer inferior-octave-buffer) | |
1133 (display-buffer inferior-octave-buffer) | |
1134 (message "No buffer named %s" inferior-octave-buffer))) | |
1135 | |
1136 (defun octave-hide-process-buffer () | |
1137 "Delete all windows that display `inferior-octave-buffer'." | |
1138 (interactive) | |
1139 (if (get-buffer inferior-octave-buffer) | |
1140 (delete-windows-on inferior-octave-buffer) | |
1141 (message "No buffer named %s" inferior-octave-buffer))) | |
1142 | |
1143 (defun octave-send-region (beg end) | |
1144 "Send current region to the inferior Octave process." | |
1145 (interactive "r") | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1146 (inferior-octave t) |
16901 | 1147 (let ((proc inferior-octave-process) |
1148 (string (buffer-substring-no-properties beg end)) | |
1149 line) | |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
1150 (with-current-buffer inferior-octave-buffer |
16901 | 1151 (setq inferior-octave-output-list nil) |
1152 (while (not (string-equal string "")) | |
1153 (if (string-match "\n" string) | |
1154 (setq line (substring string 0 (match-beginning 0)) | |
1155 string (substring string (match-end 0))) | |
1156 (setq line string string "")) | |
1157 (setq inferior-octave-receive-in-progress t) | |
1158 (inferior-octave-send-list-and-digest (list (concat line "\n"))) | |
1159 (while inferior-octave-receive-in-progress | |
1160 (accept-process-output proc)) | |
1161 (insert-before-markers | |
1162 (mapconcat 'identity | |
1163 (append | |
1164 (if octave-send-echo-input (list line) (list "")) | |
1165 (mapcar 'inferior-octave-strip-ctrl-g | |
1166 inferior-octave-output-list) | |
1167 (list inferior-octave-output-string)) | |
1168 "\n"))))) | |
1169 (if octave-send-show-buffer | |
1170 (display-buffer inferior-octave-buffer))) | |
1171 | |
1172 (defun octave-send-block () | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1173 "Send current Octave block to the inferior Octave process." |
16901 | 1174 (interactive) |
1175 (save-excursion | |
1176 (octave-mark-block) | |
1177 (octave-send-region (point) (mark)))) | |
1178 | |
1179 (defun octave-send-defun () | |
1180 "Send current Octave function to the inferior Octave process." | |
1181 (interactive) | |
1182 (save-excursion | |
109815
7714e8a59020
Font-lock '...' strings, plus various simplifications and fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109757
diff
changeset
|
1183 (mark-defun) |
16901 | 1184 (octave-send-region (point) (mark)))) |
1185 | |
1186 (defun octave-send-line (&optional arg) | |
1187 "Send current Octave code line to the inferior Octave process. | |
1188 With positive prefix ARG, send that many lines. | |
1189 If `octave-send-line-auto-forward' is non-nil, go to the next unsent | |
1190 code line." | |
1191 (interactive "P") | |
1192 (or arg (setq arg 1)) | |
1193 (if (> arg 0) | |
1194 (let (beg end) | |
1195 (beginning-of-line) | |
1196 (setq beg (point)) | |
1197 (octave-next-code-line (- arg 1)) | |
1198 (end-of-line) | |
1199 (setq end (point)) | |
1200 (if octave-send-line-auto-forward | |
1201 (octave-next-code-line 1)) | |
1202 (octave-send-region beg end)))) | |
1203 | |
1204 (defun octave-eval-print-last-sexp () | |
1205 "Evaluate Octave sexp before point and print value into current buffer." | |
1206 (interactive) | |
1207 (inferior-octave t) | |
1208 (let ((standard-output (current-buffer)) | |
1209 (print-escape-newlines nil) | |
1210 (opoint (point))) | |
1211 (terpri) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1212 (prin1 |
16901 | 1213 (save-excursion |
1214 (forward-sexp -1) | |
1215 (inferior-octave-send-list-and-digest | |
1216 (list (concat (buffer-substring-no-properties (point) opoint) | |
1217 "\n"))) | |
1218 (mapconcat 'identity inferior-octave-output-list "\n"))) | |
1219 (terpri))) | |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1220 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1221 ;;; Bug reporting |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1222 (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
|
1223 "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
|
1224 (interactive) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1225 (require 'reporter) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1226 (and |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1227 (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
|
1228 (reporter-submit-bug-report |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1229 octave-maintainer-address |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1230 (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
|
1231 (list |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1232 'octave-auto-indent |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1233 'octave-auto-newline |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1234 'octave-blink-matching-block |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1235 'octave-block-offset |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1236 'octave-comment-char |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1237 'octave-continuation-offset |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1238 'octave-continuation-string |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1239 'octave-send-echo-input |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1240 '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
|
1241 'octave-send-show-buffer)))) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1242 |
94496
38eb904fa638
* progmodes/octave-mod.el (octave-help): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
1243 ;; provide ourself |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1244 |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
1245 (provide 'octave-mod) |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1246 |
84655
4c09574b3527
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78487
diff
changeset
|
1247 ;; 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
|
1248 ;;; octave-mod.el ends here |