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