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