Mercurial > emacs
annotate lisp/progmodes/tcl.el @ 50761:3afa0d82e92e
(CHECK): Wrap args in parenthesis.
(specbind): Fix doc: symbol = Qnil is not supported any more.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 01 May 2003 00:36:21 +0000 |
parents | ce81e48eab6e |
children | 2aec3e4bf957 d7ddb3e565de |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
35712
diff
changeset
|
1 ;;; tcl.el --- Tcl code editing commands for Emacs |
6709 | 2 |
43437
55d255989f05
(tcl-do-fill-paragraph): Find and fill on more
Richard M. Stallman <rms@gnu.org>
parents:
39754
diff
changeset
|
3 ;; Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. |
6709 | 4 |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
5 ;; Maintainer: FSF |
43437
55d255989f05
(tcl-do-fill-paragraph): Find and fill on more
Richard M. Stallman <rms@gnu.org>
parents:
39754
diff
changeset
|
6 ;; Author: Tom Tromey <tromey@redhat.com> |
6710
85f4c4971597
Fixed up headers for release.
Tom Tromey <tromey@redhat.com>
parents:
6709
diff
changeset
|
7 ;; Chris Lindblad <cjl@lcs.mit.edu> |
85f4c4971597
Fixed up headers for release.
Tom Tromey <tromey@redhat.com>
parents:
6709
diff
changeset
|
8 ;; Keywords: languages tcl modes |
49730
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
9 ;; Version: $Revision: 1.71 $ |
6709 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
22662 | 15 ;; the Free Software Foundation; either version 2, or (at your option) |
6709 | 16 ;; any later version. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
25163 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
26 ;; Boston, MA 02111-1307, USA. | |
6709 | 27 |
25163 | 28 ;; BEFORE USE: |
6709 | 29 ;; |
30 ;; If you plan to use the interface to the TclX help files, you must | |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
31 ;; set the variable tcl-help-directory-list to point to the topmost |
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
32 ;; directories containing the TclX help files. Eg: |
6709 | 33 ;; |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
34 ;; (setq tcl-help-directory-list '("/usr/local/lib/tclx/help")) |
6709 | 35 ;; |
36 ;;; Commentary: | |
37 | |
38 ;; CUSTOMIZATION NOTES: | |
39 ;; * tcl-proc-list can be used to customize a list of things that | |
40 ;; "define" other things. Eg in my project I put "defvar" in this | |
41 ;; list. | |
42 ;; * tcl-typeword-list is similar, but uses font-lock-type-face. | |
43 ;; * tcl-keyword-list is a list of keywords. I've generally used this | |
44 ;; for flow-control words. Eg I add "unwind_protect" to this list. | |
45 ;; * tcl-type-alist can be used to minimally customize indentation | |
46 ;; according to context. | |
47 | |
25176 | 48 ;; THANKS FOR CRITICISM AND SUGGESTIONS TO: |
6709 | 49 ;; Guido Bosch <Guido.Bosch@loria.fr> |
50 ;; pgs1002@esc.cam.ac.uk (Dr P.G. Sjoerdsma) | |
51 ;; Mike Scheidler <c23mts@kocrsv01.delcoelect.com> | |
52 ;; Matt Newman <men@charney.colorado.edu> | |
53 ;; rwhitby@research.canon.oz.au (Rod Whitby) | |
54 ;; h9118101@hkuxa.hku.hk (Yip Chi Lap [Beta]) | |
55 ;; Pertti Tapio Kasanen <ptk@delta.hut.fi> | |
56 ;; schmid@fb3-s7.math.TU-Berlin.DE (Gregor Schmid) | |
8339
b6e4f16c969a
Emacs 18 changes from Carl Witty.
Tom Tromey <tromey@redhat.com>
parents:
8252
diff
changeset
|
57 ;; warsaw@nlm.nih.gov (Barry A. Warsaw) |
b6e4f16c969a
Emacs 18 changes from Carl Witty.
Tom Tromey <tromey@redhat.com>
parents:
8252
diff
changeset
|
58 ;; Carl Witty <cwitty@ai.mit.edu> |
8580
648f78c8ecf5
Fixed bug in tcl-guess-application.
Tom Tromey <tromey@redhat.com>
parents:
8575
diff
changeset
|
59 ;; T. V. Raman <raman@crl.dec.com> |
11303
7823947372f9
(tcl-outline-level): New function
Tom Tromey <tromey@redhat.com>
parents:
9428
diff
changeset
|
60 ;; Jesper Pedersen <blackie@imada.ou.dk> |
11787
635f5fb5d82a
Changed "Lucid Emacs" to "XEmacs".
Tom Tromey <tromey@redhat.com>
parents:
11303
diff
changeset
|
61 ;; dfarmer@evolving.com (Doug Farmer) |
12924
8172973fd6e4
(tcl-hilit): New function from "Chris Alfeld" <calfeld@math.utah.edu>
Tom Tromey <tromey@redhat.com>
parents:
12795
diff
changeset
|
62 ;; "Chris Alfeld" <calfeld@math.utah.edu> |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
63 ;; Ben Wing <ben@xemacs.org> |
6709 | 64 |
65 ;; KNOWN BUGS: | |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
66 ;; * In Tcl "#" is not always a comment character. This can confuse tcl.el |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
67 ;; in certain circumstances. For now the only workaround is to use |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
68 ;; font-lock which will mark the # chars accordingly or enclose offending |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
69 ;; hash characters in quotes or precede them with a backslash. Note that |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
70 ;; using braces won't work -- quotes change the syntax class of characters |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
71 ;; between them, while braces do not. If you don't use font-lock, the |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
72 ;; electric-# mode helps alleviate this problem somewhat. |
6709 | 73 ;; * indent-tcl-exp is untested. |
74 | |
75 ;; TODO: | |
76 ;; * make add-log-tcl-defun smarter. should notice if we are in the | |
77 ;; middle of a defun, or between defuns. should notice if point is | |
78 ;; on first line of defun (or maybe even in comments before defun). | |
79 ;; * Allow continuation lines to be indented under the first argument | |
44227
a1c4f9151348
(tcl-imenu-create-index-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43437
diff
changeset
|
80 ;; of the preceding line, like this: |
6709 | 81 ;; [list something \ |
82 ;; something-else] | |
83 ;; * There is a request that indentation work like this: | |
84 ;; button .fred -label Fred \ | |
85 ;; -command {puts fred} | |
86 ;; * Should have tcl-complete-symbol that queries the inferior process. | |
87 ;; * Should have describe-symbol that works by sending the magic | |
88 ;; command to a tclX process. | |
89 ;; * Need C-x C-e binding (tcl-eval-last-exp). | |
90 ;; * Write indent-region function that is faster than indenting each | |
91 ;; line individually. | |
92 ;; * tcl-figure-type should stop at "beginning of line" (only ws | |
93 ;; before point, and no "\" on previous line). (see tcl-real-command-p). | |
94 ;; * overrides some comint keybindings; fix. | |
95 ;; * Trailing \ will eat blank lines. Should deal with this. | |
96 ;; (this would help catch some potential bugs). | |
97 ;; * Inferior should display in half the screen, not the whole screen. | |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
98 ;; * Indentation should deal with "switch". |
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
99 ;; * Consider writing code to find help files automatically (for |
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
100 ;; common cases). |
7628 | 101 ;; * `#' shouldn't insert `\#' when point is in string. |
6709 | 102 |
103 | |
104 | |
105 ;;; Code: | |
106 | |
35712
350ba5553ea3
(outline, dabbrev, add-log): Require when
Gerd Moellmann <gerd@gnu.org>
parents:
29408
diff
changeset
|
107 (eval-when-compile |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
108 (require 'imenu) |
35712
350ba5553ea3
(outline, dabbrev, add-log): Require when
Gerd Moellmann <gerd@gnu.org>
parents:
29408
diff
changeset
|
109 (require 'outline) |
350ba5553ea3
(outline, dabbrev, add-log): Require when
Gerd Moellmann <gerd@gnu.org>
parents:
29408
diff
changeset
|
110 (require 'dabbrev) |
350ba5553ea3
(outline, dabbrev, add-log): Require when
Gerd Moellmann <gerd@gnu.org>
parents:
29408
diff
changeset
|
111 (require 'add-log)) |
350ba5553ea3
(outline, dabbrev, add-log): Require when
Gerd Moellmann <gerd@gnu.org>
parents:
29408
diff
changeset
|
112 |
6709 | 113 (require 'comint) |
114 | |
115 ;; | |
116 ;; User variables. | |
117 ;; | |
118 | |
25176 | 119 (defgroup tcl nil |
120 "Major mode for editing Tcl source in Emacs" | |
121 :group 'languages) | |
122 | |
123 (defcustom tcl-indent-level 4 | |
124 "*Indentation of Tcl statements with respect to containing block." | |
125 :group 'tcl | |
126 :type 'integer) | |
6709 | 127 |
25176 | 128 (defcustom tcl-continued-indent-level 4 |
129 "*Indentation of continuation line relative to first line of command." | |
130 :group 'tcl | |
131 :type 'integer) | |
6709 | 132 |
25176 | 133 (defcustom tcl-auto-newline nil |
134 "*Non-nil means automatically newline before and after braces you insert." | |
135 :group 'tcl | |
136 :type 'boolean) | |
6709 | 137 |
25176 | 138 (defcustom tcl-tab-always-indent t |
6709 | 139 "*Control effect of TAB key. |
140 If t (the default), always indent current line. | |
141 If nil and point is not in the indentation area at the beginning of | |
142 the line, a TAB is inserted. | |
143 Other values cause the first possible action from the following list | |
144 to take place: | |
145 | |
146 1. Move from beginning of line to correct indentation. | |
147 2. Delete an empty comment. | |
148 3. Move forward to start of comment, indenting if necessary. | |
149 4. Move forward to end of line, indenting if necessary. | |
150 5. Create an empty comment. | |
25176 | 151 6. Move backward to start of comment, indenting if necessary." |
152 :group 'tcl | |
153 :type '(choice (const :tag "Always" t) | |
154 (const :tag "Beginning only" nil) | |
155 (const :tag "Maybe move or make or delete comment" 'tcl))) | |
156 | |
6709 | 157 |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
158 (defcustom tcl-electric-hash-style nil ;; 'smart |
6709 | 159 "*Style of electric hash insertion to use. |
25163 | 160 Possible values are `backslash', meaning that `\\' quoting should be |
161 done; `quote', meaning that `\"' quoting should be done; `smart', | |
162 meaning that the choice between `backslash' and `quote' should be | |
6709 | 163 made depending on the number of hashes inserted; or nil, meaning that |
164 no quoting should be done. Any other value for this variable is | |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
165 taken to mean `smart'. The default is nil." |
25176 | 166 :group 'tcl |
167 :type '(choice (const backslash) (const quote) (const smart) (const nil))) | |
6709 | 168 |
25176 | 169 (defcustom tcl-help-directory-list nil |
170 "*List of topmost directories containing TclX help files." | |
171 :group 'tcl | |
35712
350ba5553ea3
(outline, dabbrev, add-log): Require when
Gerd Moellmann <gerd@gnu.org>
parents:
29408
diff
changeset
|
172 :type '(repeat directory)) |
6709 | 173 |
25176 | 174 (defcustom tcl-use-smart-word-finder t |
175 "*If not nil, use smart way to find current word, for Tcl help feature." | |
176 :group 'tcl | |
177 :type 'boolean) | |
6709 | 178 |
25176 | 179 (defcustom tcl-application "wish" |
180 "*Name of Tcl program to run in inferior Tcl mode." | |
181 :group 'tcl | |
182 :type 'string) | |
6709 | 183 |
25176 | 184 (defcustom tcl-command-switches nil |
185 "*List of switches to supply to the `tcl-application' program." | |
186 :group 'tcl | |
35712
350ba5553ea3
(outline, dabbrev, add-log): Require when
Gerd Moellmann <gerd@gnu.org>
parents:
29408
diff
changeset
|
187 :type '(repeat string)) |
25176 | 188 |
189 (defcustom tcl-prompt-regexp "^\\(% \\|\\)" | |
6709 | 190 "*If not nil, a regexp that will match the prompt in the inferior process. |
191 If nil, the prompt is the name of the application with \">\" appended. | |
192 | |
193 The default is \"^\\(% \\|\\)\", which will match the default primary | |
25176 | 194 and secondary prompts for tclsh and wish." |
195 :group 'tcl | |
196 :type 'regexp) | |
6709 | 197 |
25176 | 198 (defcustom inferior-tcl-source-command "source %s\n" |
6709 | 199 "*Format-string for building a Tcl command to load a file. |
200 This format string should use `%s' to substitute a file name | |
201 and should result in a Tcl expression that will command the | |
202 inferior Tcl to load that file. The filename will be appropriately | |
25176 | 203 quoted for Tcl." |
204 :group 'tcl | |
205 :type 'string) | |
6709 | 206 |
207 ;; | |
208 ;; Keymaps, abbrevs, syntax tables. | |
209 ;; | |
210 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
211 (defvar tcl-mode-map |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
212 (let ((map (make-sparse-keymap))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
213 (define-key map "{" 'tcl-electric-char) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
214 (define-key map "}" 'tcl-electric-brace) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
215 (define-key map "[" 'tcl-electric-char) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
216 (define-key map "]" 'tcl-electric-char) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
217 (define-key map ";" 'tcl-electric-char) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
218 (define-key map "#" 'tcl-electric-hash) ;Remove? -stef |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
219 (define-key map "\e\C-q" 'tcl-indent-exp) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
220 (define-key map "\177" 'backward-delete-char-untabify) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
221 (define-key map "\t" 'tcl-indent-command) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
222 (define-key map "\M-\C-x" 'tcl-eval-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
223 (define-key map "\C-c\C-i" 'tcl-help-on-word) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
224 (define-key map "\C-c\C-v" 'tcl-eval-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
225 (define-key map "\C-c\C-f" 'tcl-load-file) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
226 (define-key map "\C-c\C-t" 'inferior-tcl) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
227 (define-key map "\C-c\C-x" 'tcl-eval-region) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
228 (define-key map "\C-c\C-s" 'switch-to-tcl) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
229 map) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
230 "Keymap used in `tcl-mode'.") |
6709 | 231 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
232 (defvar tcl-mode-syntax-table |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
233 (let ((st (make-syntax-table))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
234 (modify-syntax-entry ?% "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
235 (modify-syntax-entry ?@ "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
236 (modify-syntax-entry ?& "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
237 (modify-syntax-entry ?* "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
238 (modify-syntax-entry ?+ "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
239 (modify-syntax-entry ?- "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
240 (modify-syntax-entry ?. "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
241 (modify-syntax-entry ?: "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
242 (modify-syntax-entry ?! "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
243 (modify-syntax-entry ?$ "_" st) ; FIXME use "'"? |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
244 (modify-syntax-entry ?/ "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
245 (modify-syntax-entry ?~ "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
246 (modify-syntax-entry ?< "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
247 (modify-syntax-entry ?= "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
248 (modify-syntax-entry ?> "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
249 (modify-syntax-entry ?| "_" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
250 (modify-syntax-entry ?\( "()" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
251 (modify-syntax-entry ?\) ")(" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
252 (modify-syntax-entry ?\; "." st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
253 (modify-syntax-entry ?\n ">" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
254 ;; (modify-syntax-entry ?\f ">" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
255 (modify-syntax-entry ?# "<" st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
256 st) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
257 "Syntax table in use in `tcl-mode' buffers.") |
6709 | 258 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
259 (defvar inferior-tcl-mode-map |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
260 ;; FIXME we override comint keybindings here. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
261 ;; Maybe someone has a better set? |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
262 (let ((map (make-sparse-keymap))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
263 ;; Will inherit from `comint-mode-map' thanks to define-derived-mode. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
264 (define-key map "\t" 'comint-dynamic-complete) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
265 (define-key map "\M-?" 'comint-dynamic-list-filename-completions) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
266 (define-key map "\177" 'backward-delete-char-untabify) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
267 (define-key map "\M-\C-x" 'tcl-eval-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
268 (define-key map "\C-c\C-i" 'tcl-help-on-word) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
269 (define-key map "\C-c\C-v" 'tcl-eval-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
270 (define-key map "\C-c\C-f" 'tcl-load-file) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
271 (define-key map "\C-c\C-t" 'inferior-tcl) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
272 (define-key map "\C-c\C-x" 'tcl-eval-region) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
273 (define-key map "\C-c\C-s" 'switch-to-tcl) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
274 map) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
275 "Keymap used in `inferior-tcl-mode'.") |
6709 | 276 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
277 (easy-menu-define tcl-mode-menu tcl-mode-map "Menu used in `tcl-mode'." |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
278 '("Tcl" |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
279 ["Beginning of function" beginning-of-defun t] |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
280 ["End of function" end-of-defun t] |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
281 ["Mark function" mark-defun t] |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
282 ["Indent region" indent-region (mark t)] |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
283 ["Comment region" comment-region (mark t)] |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
284 ["Uncomment region" uncomment-region (mark t)] |
6709 | 285 "----" |
286 ["Show Tcl process buffer" inferior-tcl t] | |
7687
6447f9b3c966
Menu items now sensitive as appropriate.
Tom Tromey <tromey@redhat.com>
parents:
7635
diff
changeset
|
287 ["Send function to Tcl process" tcl-eval-defun |
7781 | 288 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))] |
7687
6447f9b3c966
Menu items now sensitive as appropriate.
Tom Tromey <tromey@redhat.com>
parents:
7635
diff
changeset
|
289 ["Send region to Tcl process" tcl-eval-region |
7781 | 290 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))] |
7687
6447f9b3c966
Menu items now sensitive as appropriate.
Tom Tromey <tromey@redhat.com>
parents:
7635
diff
changeset
|
291 ["Send file to Tcl process" tcl-load-file |
7781 | 292 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))] |
6709 | 293 ["Restart Tcl process with file" tcl-restart-with-file t] |
294 "----" | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
295 ["Tcl help" tcl-help-on-word tcl-help-directory-list])) |
6709 | 296 |
297 (defvar inferior-tcl-buffer nil | |
298 "*The current inferior-tcl process buffer. | |
299 | |
300 MULTIPLE PROCESS SUPPORT | |
301 =========================================================================== | |
302 To run multiple Tcl processes, you start the first up with | |
303 \\[inferior-tcl]. It will be in a buffer named `*inferior-tcl*'. | |
304 Rename this buffer with \\[rename-buffer]. You may now start up a new | |
305 process with another \\[inferior-tcl]. It will be in a new buffer, | |
306 named `*inferior-tcl*'. You can switch between the different process | |
307 buffers with \\[switch-to-buffer]. | |
308 | |
309 Commands that send text from source buffers to Tcl processes -- like | |
310 `tcl-eval-defun' or `tcl-load-file' -- have to choose a process to | |
311 send to, when you have more than one Tcl process around. This is | |
312 determined by the global variable `inferior-tcl-buffer'. Suppose you | |
313 have three inferior Lisps running: | |
314 Buffer Process | |
315 foo inferior-tcl | |
316 bar inferior-tcl<2> | |
317 *inferior-tcl* inferior-tcl<3> | |
318 If you do a \\[tcl-eval-defun] command on some Lisp source code, what | |
319 process do you send it to? | |
320 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
321 - If you're in a process buffer (foo, bar, or *inferior-tcl*), |
6709 | 322 you send it to that process. |
323 - If you're in some other buffer (e.g., a source file), you | |
324 send it to the process attached to buffer `inferior-tcl-buffer'. | |
325 This process selection is performed by function `inferior-tcl-proc'. | |
326 | |
327 Whenever \\[inferior-tcl] fires up a new process, it resets | |
328 `inferior-tcl-buffer' to be the new process's buffer. If you only run | |
329 one process, this does the right thing. If you run multiple | |
330 processes, you can change `inferior-tcl-buffer' to another process | |
331 buffer with \\[set-variable].") | |
332 | |
333 ;; | |
334 ;; Hooks and other customization. | |
335 ;; | |
336 | |
337 (defvar tcl-mode-hook nil | |
338 "Hook run on entry to Tcl mode. | |
339 | |
340 Several functions exist which are useful to run from your | |
341 `tcl-mode-hook' (see each function's documentation for more | |
342 information): | |
343 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
344 `tcl-guess-application' |
6709 | 345 Guesses a default setting for `tcl-application' based on any |
346 \"#!\" line at the top of the file. | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
347 `tcl-hashify-buffer' |
6709 | 348 Quotes all \"#\" characters that don't correspond to actual |
349 Tcl comments. (Useful when editing code not originally created | |
350 with this mode). | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
351 `tcl-auto-fill-mode' |
6709 | 352 Auto-filling of Tcl comments. |
353 | |
25163 | 354 Add functions to the hook with `add-hook': |
6709 | 355 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
356 (add-hook 'tcl-mode-hook 'tcl-guess-application)") |
6709 | 357 |
358 | |
359 (defvar tcl-proc-list | |
24954
503bd9d97ac4
(tcl-proc-list): Reverted; already had `body'.
Tom Tromey <tromey@redhat.com>
parents:
24953
diff
changeset
|
360 '("proc" "method" "itcl_class" "body" "configbody" "class") |
6709 | 361 "List of commands whose first argument defines something. |
25163 | 362 This exists because some people (eg, me) use `defvar' et al. |
6709 | 363 Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords' |
364 after changing this list.") | |
365 | |
366 (defvar tcl-proc-regexp nil | |
367 "Regexp to use when matching proc headers.") | |
368 | |
369 (defvar tcl-typeword-list | |
22662 | 370 '("global" "upvar" "inherit" "public" "protected" "private" |
24957
e26249ed0833
(tcl-typeword-list): Added `variable'.
Tom Tromey <tromey@redhat.com>
parents:
24956
diff
changeset
|
371 "common" "itk_option" "variable") |
7612 | 372 "List of Tcl keywords denoting \"type\". Used only for highlighting. |
6709 | 373 Call `tcl-set-font-lock-keywords' after changing this list.") |
374 | |
375 ;; Generally I've picked control operators to be keywords. | |
376 (defvar tcl-keyword-list | |
377 '("if" "then" "else" "elseif" "for" "foreach" "break" "continue" "while" | |
378 "eval" "case" "in" "switch" "default" "exit" "error" "proc" "return" | |
12403
f863ead116f0
(tcl-set-proc-regexp): Allow leading spaces.
Tom Tromey <tromey@redhat.com>
parents:
11793
diff
changeset
|
379 "uplevel" "constructor" "destructor" "itcl_class" "loop" "for_array_keys" |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
380 "for_recursive_glob" "for_file" "method" "body" "configbody" "class" |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
381 "chain") |
6709 | 382 "List of Tcl keywords. Used only for highlighting. |
383 Default list includes some TclX keywords. | |
384 Call `tcl-set-font-lock-keywords' after changing this list.") | |
385 | |
386 (defvar tcl-font-lock-keywords nil | |
387 "Keywords to highlight for Tcl. See variable `font-lock-keywords'. | |
388 This variable is generally set from `tcl-proc-regexp', | |
389 `tcl-typeword-list', and `tcl-keyword-list' by the function | |
390 `tcl-set-font-lock-keywords'.") | |
391 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
392 (defvar tcl-font-lock-syntactic-keywords |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
393 ;; Mark the few `#' that are not comment-markers. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
394 '(("[^;[{ \t\n][ \t]*\\(#\\)" (1 "."))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
395 "Syntactic keywords for `tcl-mode'.") |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
396 |
6709 | 397 ;; FIXME need some way to recognize variables because array refs look |
398 ;; like 2 sexps. | |
399 (defvar tcl-type-alist | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
400 '(("proc" nil tcl-expr tcl-commands) |
12404 | 401 ("method" nil tcl-expr tcl-commands) |
12405
abcf4791a9b0
(tcl-type-alist): More itcl changes.
Tom Tromey <tromey@redhat.com>
parents:
12404
diff
changeset
|
402 ("destructor" tcl-commands) |
abcf4791a9b0
(tcl-type-alist): More itcl changes.
Tom Tromey <tromey@redhat.com>
parents:
12404
diff
changeset
|
403 ("constructor" tcl-commands) |
6709 | 404 ("expr" tcl-expr) |
405 ("catch" tcl-commands) | |
406 ("if" tcl-expr "then" tcl-commands) | |
407 ("elseif" tcl-expr "then" tcl-commands) | |
408 ("elseif" tcl-expr tcl-commands) | |
409 ("if" tcl-expr tcl-commands) | |
410 ("while" tcl-expr tcl-commands) | |
411 ("for" tcl-commands tcl-expr tcl-commands tcl-commands) | |
412 ("foreach" nil nil tcl-commands) | |
413 ("for_file" nil nil tcl-commands) | |
414 ("for_array_keys" nil nil tcl-commands) | |
415 ("for_recursive_glob" nil nil nil tcl-commands) | |
416 ;; Loop handling is not perfect, because the third argument can be | |
417 ;; either a command or an expr, and there is no real way to look | |
418 ;; forward. | |
419 ("loop" nil tcl-expr tcl-expr tcl-commands) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
420 ("loop" nil tcl-expr tcl-commands)) |
6709 | 421 "Alist that controls indentation. |
422 \(Actually, this really only controls what happens on continuation lines). | |
423 Each entry looks like `(KEYWORD TYPE ...)'. | |
424 Each type entry describes a sexp after the keyword, and can be one of: | |
425 * nil, meaning that this sexp has no particular type. | |
426 * tcl-expr, meaning that this sexp is an arithmetic expression. | |
427 * tcl-commands, meaning that this sexp holds Tcl commands. | |
428 * a string, which must exactly match the string at the corresponding | |
429 position for a match to be made. | |
430 | |
431 For example, the entry for the \"loop\" command is: | |
432 | |
433 (\"loop\" nil tcl-expr tcl-commands) | |
434 | |
435 This means that the \"loop\" command has three arguments. The first | |
436 argument is ignored (for indentation purposes). The second argument | |
437 is a Tcl expression, and the last argument is Tcl commands.") | |
438 | |
439 (defvar tcl-explain-indentation nil | |
440 "If not `nil', debugging message will be printed during indentation.") | |
441 | |
442 | |
443 | |
49730
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
444 ;; Here's another stab. I think this one actually works. |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
445 ;; We have to be careful that the open-brace following this regexp |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
446 ;; is indeed the one corresponding to the function's body so |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
447 ;; that end-of-defun works correctly. Tricky cases are: |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
448 ;; proc foo { {arg1 def} arg2 } { |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
449 ;; as well as |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
450 ;; proc foo { \n {arg1 def} \n arg2 } { |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
451 ;; The current setting handles the first case properly but not the second. |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
452 ;; It also fails if `proc' is not in column-0 (e.g. it's in a namespace). |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
453 (defconst tcl-omit-ws-regexp "^[^] \t\n#}].+[ \t]+") |
6709 | 454 |
455 | |
456 | |
457 ;; | |
458 ;; Some helper functions. | |
459 ;; | |
460 | |
461 (defun tcl-set-proc-regexp () | |
462 "Set `tcl-proc-regexp' from variable `tcl-proc-list'." | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
463 (setq tcl-proc-regexp |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
464 (concat "^\\s-*" (regexp-opt tcl-proc-list t) "[ \t]+"))) |
6709 | 465 |
466 (defun tcl-set-font-lock-keywords () | |
467 "Set `tcl-font-lock-keywords'. | |
468 Uses variables `tcl-proc-regexp' and `tcl-keyword-list'." | |
469 (setq tcl-font-lock-keywords | |
470 (list | |
471 ;; Names of functions (and other "defining things"). | |
472 (list (concat tcl-proc-regexp "\\([^ \t\n]+\\)") | |
473 2 'font-lock-function-name-face) | |
474 | |
475 ;; Names of type-defining things. | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
476 (list (concat "\\(\\s-\\|^\\)" |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
477 (regexp-opt tcl-typeword-list t) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
478 "\\(\\s-\\|$\\)") |
6709 | 479 2 'font-lock-type-face) |
480 | |
481 ;; Keywords. Only recognized if surrounded by whitespace. | |
482 ;; FIXME consider using "not word or symbol", not | |
483 ;; "whitespace". | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
484 (cons (concat "\\(\\s-\\|^\\)" |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
485 ;; FIXME Use regexp-quote? |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
486 (regexp-opt tcl-keyword-list t) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
487 "\\(\\s-\\|$\\)") |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
488 2)))) |
6709 | 489 |
490 (if tcl-proc-regexp | |
491 () | |
492 (tcl-set-proc-regexp)) | |
493 | |
494 (if tcl-font-lock-keywords | |
495 () | |
496 (tcl-set-font-lock-keywords)) | |
497 | |
44316
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
498 |
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
499 (defvar tcl-imenu-generic-expression |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
500 `((nil ,(concat tcl-proc-regexp "\\([-A-Za-z0-9_:+*]+\\)") 2)) |
44316
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
501 "Imenu generic expression for `tcl-mode'. See `imenu-generic-expression'.") |
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
502 |
6709 | 503 |
504 | |
505 ;; | |
506 ;; The mode itself. | |
507 ;; | |
508 | |
8252
7d4674a34de3
Added ";;;###autoload" comments where appropriate.
Tom Tromey <tromey@redhat.com>
parents:
7799
diff
changeset
|
509 ;;;###autoload |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
510 (define-derived-mode tcl-mode nil "Tcl" |
6709 | 511 "Major mode for editing Tcl code. |
512 Expression and list commands understand all Tcl brackets. | |
513 Tab indents for Tcl code. | |
514 Paragraphs are separated by blank lines only. | |
515 Delete converts tabs to spaces as it moves back. | |
516 | |
517 Variables controlling indentation style: | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
518 `tcl-indent-level' |
6709 | 519 Indentation of Tcl statements within surrounding block. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
520 `tcl-continued-indent-level' |
6709 | 521 Indentation of continuation line relative to first line of command. |
522 | |
523 Variables controlling user interaction with mode (see variable | |
524 documentation for details): | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
525 `tcl-tab-always-indent' |
6709 | 526 Controls action of TAB key. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
527 `tcl-auto-newline' |
6709 | 528 Non-nil means automatically newline before and after braces, brackets, |
529 and semicolons inserted in Tcl code. | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
530 `tcl-use-smart-word-finder' |
12644 | 531 If not nil, use a smarter, Tcl-specific way to find the current |
532 word when looking up help on a Tcl command. | |
6709 | 533 |
49730
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
534 Turning on Tcl mode runs `tcl-mode-hook'. Read the documentation for |
6709 | 535 `tcl-mode-hook' to see what kinds of interesting hook functions |
536 already exist. | |
537 | |
538 Commands: | |
539 \\{tcl-mode-map}" | |
44316
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
540 (unless (and (boundp 'filladapt-mode) filladapt-mode) |
48192
1acfacdf062a
(tcl-mode): Don't set paragraph-start,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44320
diff
changeset
|
541 (set (make-local-variable 'paragraph-ignore-fill-prefix) t)) |
7612 | 542 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
543 (set (make-local-variable 'indent-line-function) 'tcl-indent-line) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
544 (set (make-local-variable 'comment-indent-function) 'tcl-comment-indent) |
6709 | 545 ;; Tcl doesn't require a final newline. |
546 ;; (make-local-variable 'require-final-newline) | |
547 ;; (setq require-final-newline t) | |
7612 | 548 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
549 (set (make-local-variable 'comment-start) "# ") |
49730
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
550 (set (make-local-variable 'comment-start-skip) |
ce81e48eab6e
(tcl-omit-ws-regexp): Correctly handle cases like `proc foo {a {b c} d} {'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
551 "\\(\\(^\\|[;{[]\\)\\s-*\\)#+ *") |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
552 (set (make-local-variable 'comment-end) "") |
11303
7823947372f9
(tcl-outline-level): New function
Tom Tromey <tromey@redhat.com>
parents:
9428
diff
changeset
|
553 |
48192
1acfacdf062a
(tcl-mode): Don't set paragraph-start,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44320
diff
changeset
|
554 (set (make-local-variable 'outline-regexp) ".") |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
555 (set (make-local-variable 'outline-level) 'tcl-outline-level) |
7612 | 556 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
557 (set (make-local-variable 'font-lock-defaults) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
558 '(tcl-font-lock-keywords nil nil nil beginning-of-defun |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
559 (font-lock-syntactic-keywords . tcl-font-lock-syntactic-keywords) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
560 (parse-sexp-lookup-properties . t))) |
12517
2f90abd1c659
(tcl-mode): Customize for new dabbrev.
Tom Tromey <tromey@redhat.com>
parents:
12515
diff
changeset
|
561 |
44316
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
562 (set (make-local-variable 'imenu-generic-expression) |
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
563 'tcl-imenu-generic-expression) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
564 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
565 ;; Settings for new dabbrev code. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
566 (set (make-local-variable 'dabbrev-case-fold-search) nil) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
567 (set (make-local-variable 'dabbrev-case-replace) nil) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
568 (set (make-local-variable 'dabbrev-abbrev-skip-leading-regexp) "[$!]") |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
569 (set (make-local-variable 'dabbrev-abbrev-char-regexp) "\\sw\\|\\s_") |
7612 | 570 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
571 ;; This can only be set to t in Emacs 19 and XEmacs. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
572 ;; Emacs 18 and Epoch lose. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
573 (set (make-local-variable 'parse-sexp-ignore-comments) t) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
574 ;; XEmacs has defun-prompt-regexp, but I don't believe |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
575 ;; that it works for end-of-defun -- only for |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
576 ;; beginning-of-defun. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
577 (set (make-local-variable 'defun-prompt-regexp) tcl-omit-ws-regexp) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
578 ;; The following doesn't work in Lucid Emacs 19.6, but maybe |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
579 ;; it will appear in later versions. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
580 (set (make-local-variable 'add-log-current-defun-function) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
581 'tcl-add-log-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
582 |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
583 (easy-menu-add tcl-mode-menu) |
11787
635f5fb5d82a
Changed "Lucid Emacs" to "XEmacs".
Tom Tromey <tromey@redhat.com>
parents:
11303
diff
changeset
|
584 ;; Append Tcl menu to popup menu for XEmacs. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
585 (if (boundp 'mode-popup-menu) |
12520
ad24dd8cec5c
Changes to make menus work in XEmacs.
Tom Tromey <tromey@redhat.com>
parents:
12517
diff
changeset
|
586 (setq mode-popup-menu |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
587 (cons (concat mode-name " Mode Commands") tcl-mode-menu)))) |
6709 | 588 |
589 | |
590 | |
591 ;; This is used for braces, brackets, and semi (except for closing | |
592 ;; braces, which are handled specially). | |
593 (defun tcl-electric-char (arg) | |
594 "Insert character and correct line's indentation." | |
595 (interactive "p") | |
596 ;; Indent line first; this looks better if parens blink. | |
597 (tcl-indent-line) | |
598 (self-insert-command arg) | |
599 (if (and tcl-auto-newline (= last-command-char ?\;)) | |
600 (progn | |
601 (newline) | |
602 (tcl-indent-line)))) | |
603 | |
604 ;; This is used for closing braces. If tcl-auto-newline is set, can | |
605 ;; insert a newline both before and after the brace, depending on | |
606 ;; context. FIXME should this be configurable? Does anyone use this? | |
607 (defun tcl-electric-brace (arg) | |
608 "Insert character and correct line's indentation." | |
609 (interactive "p") | |
610 ;; If auto-newlining and there is stuff on the same line, insert a | |
611 ;; newline first. | |
612 (if tcl-auto-newline | |
613 (progn | |
614 (if (save-excursion | |
615 (skip-chars-backward " \t") | |
616 (bolp)) | |
617 () | |
618 (tcl-indent-line) | |
619 (newline)) | |
620 ;; In auto-newline case, must insert a newline after each | |
621 ;; brace. So an explicit loop is needed. | |
622 (while (> arg 0) | |
623 (insert last-command-char) | |
624 (tcl-indent-line) | |
625 (newline) | |
626 (setq arg (1- arg)))) | |
627 (self-insert-command arg)) | |
628 (tcl-indent-line)) | |
629 | |
630 | |
631 | |
632 (defun tcl-indent-command (&optional arg) | |
633 "Indent current line as Tcl code, or in some cases insert a tab character. | |
25163 | 634 If `tcl-tab-always-indent' is t (the default), always indent current line. |
635 If `tcl-tab-always-indent' is nil and point is not in the indentation | |
6709 | 636 area at the beginning of the line, a TAB is inserted. |
25163 | 637 Other values of `tcl-tab-always-indent' cause the first possible action |
6709 | 638 from the following list to take place: |
639 | |
640 1. Move from beginning of line to correct indentation. | |
641 2. Delete an empty comment. | |
642 3. Move forward to start of comment, indenting if necessary. | |
643 4. Move forward to end of line, indenting if necessary. | |
644 5. Create an empty comment. | |
645 6. Move backward to start of comment, indenting if necessary." | |
646 (interactive "p") | |
647 (cond | |
648 ((not tcl-tab-always-indent) | |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
649 ;; Indent if in indentation area, otherwise insert TAB. |
6709 | 650 (if (<= (current-column) (current-indentation)) |
651 (tcl-indent-line) | |
16170
2e26cb0991de
(tcl-indent-command): Use insert-tab, not self-insert-command.
Tom Tromey <tromey@redhat.com>
parents:
14865
diff
changeset
|
652 (insert-tab arg))) |
6709 | 653 ((eq tcl-tab-always-indent t) |
654 ;; Always indent. | |
655 (tcl-indent-line)) | |
656 (t | |
657 ;; "Perl-mode" style TAB command. | |
658 (let* ((ipoint (point)) | |
659 (eolpoint (progn | |
660 (end-of-line) | |
661 (point))) | |
662 (comment-p (tcl-in-comment))) | |
663 (cond | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
664 ((= ipoint (line-beginning-position)) |
6709 | 665 (beginning-of-line) |
666 (tcl-indent-line) | |
667 ;; If indenting didn't leave us in column 0, go to the | |
668 ;; indentation. Otherwise leave point at end of line. This | |
669 ;; is a hack. | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
670 (if (= (point) (line-beginning-position)) |
6709 | 671 (end-of-line) |
672 (back-to-indentation))) | |
673 ((and comment-p (looking-at "[ \t]*$")) | |
674 ;; Empty comment, so delete it. We also delete any ";" | |
675 ;; characters at the end of the line. I think this is | |
676 ;; friendlier, but I don't know how other people will feel. | |
677 (backward-char) | |
678 (skip-chars-backward " \t;") | |
679 (delete-region (point) eolpoint)) | |
680 ((and comment-p (< ipoint (point))) | |
681 ;; Before comment, so skip to it. | |
682 (tcl-indent-line) | |
683 (indent-for-comment)) | |
684 ((/= ipoint eolpoint) | |
685 ;; Go to end of line (since we're not there yet). | |
686 (goto-char eolpoint) | |
687 (tcl-indent-line)) | |
688 ((not comment-p) | |
689 (tcl-indent-line) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
690 (comment-indent)) |
6709 | 691 (t |
692 ;; Go to start of comment. We don't leave point where it is | |
693 ;; because we want to skip comment-start-skip. | |
694 (tcl-indent-line) | |
695 (indent-for-comment))))))) | |
696 | |
697 (defun tcl-indent-line () | |
698 "Indent current line as Tcl code. | |
699 Return the amount the indentation changed by." | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
700 (let ((indent (tcl-calculate-indent nil)) |
6709 | 701 beg shift-amt |
702 (case-fold-search nil) | |
703 (pos (- (point-max) (point)))) | |
704 (beginning-of-line) | |
705 (setq beg (point)) | |
706 (cond ((eq indent nil) | |
707 (setq indent (current-indentation))) | |
708 (t | |
709 (skip-chars-forward " \t") | |
710 (if (listp indent) (setq indent (car indent))) | |
711 (cond ((= (following-char) ?}) | |
712 (setq indent (- indent tcl-indent-level))) | |
713 ((= (following-char) ?\]) | |
714 (setq indent (- indent 1)))))) | |
715 (skip-chars-forward " \t") | |
716 (setq shift-amt (- indent (current-column))) | |
717 (if (zerop shift-amt) | |
718 (if (> (- (point-max) pos) (point)) | |
719 (goto-char (- (point-max) pos))) | |
720 (delete-region beg (point)) | |
721 (indent-to indent) | |
722 ;; If initial point was within line's indentation, | |
723 ;; position after the indentation. Else stay at same point in text. | |
724 (if (> (- (point-max) pos) (point)) | |
725 (goto-char (- (point-max) pos)))) | |
726 shift-amt)) | |
727 | |
728 (defun tcl-figure-type () | |
729 "Determine type of sexp at point. | |
25163 | 730 This is either `tcl-expr', `tcl-commands', or nil. Puts point at start |
6709 | 731 of sexp that indicates types. |
732 | |
733 See documentation for variable `tcl-type-alist' for more information." | |
734 (let ((count 0) | |
735 result | |
736 word-stack) | |
737 (while (and (< count 5) | |
738 (not result)) | |
739 (condition-case nil | |
740 (progn | |
741 ;; FIXME should use "tcl-backward-sexp", which would skip | |
742 ;; over entire variables, etc. | |
743 (backward-sexp) | |
744 (if (looking-at "[a-zA-Z_]+") | |
745 (let ((list tcl-type-alist) | |
746 entry) | |
12645
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
747 (setq word-stack (cons (tcl-word-no-props) word-stack)) |
6709 | 748 (while (and list (not result)) |
749 (setq entry (car list)) | |
750 (setq list (cdr list)) | |
751 (let ((index 0)) | |
752 (while (and entry (<= index count)) | |
753 ;; Abort loop if string does not match word on | |
754 ;; stack. | |
755 (and (stringp (car entry)) | |
756 (not (string= (car entry) | |
757 (nth index word-stack))) | |
758 (setq entry nil)) | |
759 (setq entry (cdr entry)) | |
760 (setq index (1+ index))) | |
761 (and (> index count) | |
762 (not (stringp (car entry))) | |
763 (setq result (car entry))) | |
764 ))) | |
765 (setq word-stack (cons nil word-stack)))) | |
766 (error nil)) | |
767 (setq count (1+ count))) | |
768 (and tcl-explain-indentation | |
769 (message "Indentation type %s" result)) | |
770 result)) | |
771 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
772 (defun tcl-calculate-indent (&optional parse-start) |
6709 | 773 "Return appropriate indentation for current line as Tcl code. |
774 In usual case returns an integer: the column to indent to. | |
775 Returns nil if line starts inside a string, t if in a comment." | |
776 (save-excursion | |
777 (beginning-of-line) | |
778 (let* ((indent-point (point)) | |
779 (case-fold-search nil) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
780 (continued-line |
6709 | 781 (save-excursion |
782 (if (bobp) | |
783 nil | |
784 (backward-char) | |
785 (= ?\\ (preceding-char))))) | |
786 (continued-indent-value (if continued-line | |
787 tcl-continued-indent-level | |
788 0)) | |
789 state | |
790 containing-sexp | |
791 found-next-line) | |
792 (if parse-start | |
793 (goto-char parse-start) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
794 (beginning-of-defun)) |
6709 | 795 (while (< (point) indent-point) |
796 (setq parse-start (point)) | |
797 (setq state (parse-partial-sexp (point) indent-point 0)) | |
798 (setq containing-sexp (car (cdr state)))) | |
799 (cond ((or (nth 3 state) (nth 4 state)) | |
800 ;; Inside comment or string. Return nil or t if should | |
801 ;; not change this line | |
802 (nth 4 state)) | |
803 ((null containing-sexp) | |
804 ;; Line is at top level. | |
805 continued-indent-value) | |
806 (t | |
807 ;; Set expr-p if we are looking at the expression part of | |
808 ;; an "if", "expr", etc statement. Set commands-p if we | |
809 ;; are looking at the body part of an if, while, etc | |
810 ;; statement. FIXME Should check for "for" loops here. | |
811 (goto-char containing-sexp) | |
812 (let* ((sexpr-type (tcl-figure-type)) | |
813 (expr-p (eq sexpr-type 'tcl-expr)) | |
814 (commands-p (eq sexpr-type 'tcl-commands)) | |
815 (expr-start (point))) | |
816 ;; Find the first statement in the block and indent | |
817 ;; like it. The first statement in the block might be | |
818 ;; on the same line, so what we do is skip all | |
819 ;; "virtually blank" lines, looking for a non-blank | |
820 ;; one. A line is virtually blank if it only contains | |
821 ;; a comment and whitespace. FIXME continued comments | |
822 ;; aren't supported. They are a wart on Tcl anyway. | |
823 ;; We do it this funky way because we want to know if | |
824 ;; we've found a statement on some line _after_ the | |
825 ;; line holding the sexp opener. | |
826 (goto-char containing-sexp) | |
827 (forward-char) | |
828 (if (and (< (point) indent-point) | |
829 (looking-at "[ \t]*\\(#.*\\)?$")) | |
830 (progn | |
831 (forward-line) | |
832 (while (and (< (point) indent-point) | |
833 (looking-at "[ \t]*\\(#.*\\)?$")) | |
834 (setq found-next-line t) | |
835 (forward-line)))) | |
836 (if (or continued-line | |
837 (/= (char-after containing-sexp) ?{) | |
838 expr-p) | |
839 (progn | |
840 ;; Line is continuation line, or the sexp opener | |
841 ;; is not a curly brace, or we are are looking at | |
842 ;; an `expr' expression (which must be split | |
843 ;; specially). So indentation is column of first | |
844 ;; good spot after sexp opener (with some added | |
845 ;; in the continued-line case). If there is no | |
846 ;; nonempty line before the indentation point, we | |
847 ;; use the column of the character after the sexp | |
848 ;; opener. | |
849 (if (>= (point) indent-point) | |
850 (progn | |
851 (goto-char containing-sexp) | |
852 (forward-char)) | |
853 (skip-chars-forward " \t")) | |
854 (+ (current-column) continued-indent-value)) | |
855 ;; After a curly brace, and not a continuation line. | |
856 ;; So take indentation from first good line after | |
857 ;; start of block, unless that line is on the same | |
858 ;; line as the opening brace. In this case use the | |
859 ;; indentation of the opening brace's line, plus | |
860 ;; another indent step. If we are in the body part | |
861 ;; of an "if" or "while" then the indentation is | |
862 ;; taken from the line holding the start of the | |
863 ;; statement. | |
864 (if (and (< (point) indent-point) | |
865 found-next-line) | |
866 (current-indentation) | |
867 (if commands-p | |
868 (goto-char expr-start) | |
869 (goto-char containing-sexp)) | |
870 (+ (current-indentation) tcl-indent-level))))))))) | |
871 | |
872 | |
873 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
874 (defun tcl-indent-exp () |
6709 | 875 "Indent each line of the Tcl grouping following point." |
876 (interactive) | |
877 (let ((indent-stack (list nil)) | |
878 (contain-stack (list (point))) | |
879 (case-fold-search nil) | |
880 outer-loop-done inner-loop-done state ostate | |
881 this-indent last-sexp continued-line | |
882 (next-depth 0) | |
883 last-depth) | |
884 (save-excursion | |
885 (forward-sexp 1)) | |
886 (save-excursion | |
887 (setq outer-loop-done nil) | |
888 (while (and (not (eobp)) (not outer-loop-done)) | |
889 (setq last-depth next-depth) | |
890 ;; Compute how depth changes over this line | |
891 ;; plus enough other lines to get to one that | |
892 ;; does not end inside a comment or string. | |
893 ;; Meanwhile, do appropriate indentation on comment lines. | |
894 (setq inner-loop-done nil) | |
895 (while (and (not inner-loop-done) | |
896 (not (and (eobp) (setq outer-loop-done t)))) | |
897 (setq ostate state) | |
898 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point)) | |
899 nil nil state)) | |
900 (setq next-depth (car state)) | |
901 (if (and (car (cdr (cdr state))) | |
902 (>= (car (cdr (cdr state))) 0)) | |
903 (setq last-sexp (car (cdr (cdr state))))) | |
904 (if (or (nth 4 ostate)) | |
905 (tcl-indent-line)) | |
906 (if (or (nth 3 state)) | |
907 (forward-line 1) | |
908 (setq inner-loop-done t))) | |
909 (if (<= next-depth 0) | |
910 (setq outer-loop-done t)) | |
911 (if outer-loop-done | |
912 nil | |
913 ;; If this line had ..))) (((.. in it, pop out of the levels | |
914 ;; that ended anywhere in this line, even if the final depth | |
915 ;; doesn't indicate that they ended. | |
916 (while (> last-depth (nth 6 state)) | |
917 (setq indent-stack (cdr indent-stack) | |
918 contain-stack (cdr contain-stack) | |
919 last-depth (1- last-depth))) | |
920 (if (/= last-depth next-depth) | |
921 (setq last-sexp nil)) | |
922 ;; Add levels for any parens that were started in this line. | |
923 (while (< last-depth next-depth) | |
924 (setq indent-stack (cons nil indent-stack) | |
925 contain-stack (cons nil contain-stack) | |
926 last-depth (1+ last-depth))) | |
927 (if (null (car contain-stack)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
928 (setcar contain-stack |
6709 | 929 (or (car (cdr state)) |
930 (save-excursion | |
931 (forward-sexp -1) | |
932 (point))))) | |
933 (forward-line 1) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
934 (setq continued-line |
6709 | 935 (save-excursion |
936 (backward-char) | |
937 (= (preceding-char) ?\\))) | |
938 (skip-chars-forward " \t") | |
939 (if (eolp) | |
940 nil | |
941 (if (and (car indent-stack) | |
942 (>= (car indent-stack) 0)) | |
943 ;; Line is on an existing nesting level. | |
944 (setq this-indent (car indent-stack)) | |
945 ;; Just started a new nesting level. | |
946 ;; Compute the standard indent for this level. | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
947 (let ((val (tcl-calculate-indent |
6709 | 948 (if (car indent-stack) |
949 (- (car indent-stack)))))) | |
950 (setcar indent-stack | |
951 (setq this-indent val)) | |
952 (setq continued-line nil))) | |
953 (cond ((not (numberp this-indent))) | |
954 ((= (following-char) ?}) | |
955 (setq this-indent (- this-indent tcl-indent-level))) | |
956 ((= (following-char) ?\]) | |
957 (setq this-indent (- this-indent 1)))) | |
958 ;; Put chosen indentation into effect. | |
959 (or (null this-indent) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
960 (= (current-column) |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
961 (if continued-line |
6709 | 962 (+ this-indent tcl-indent-level) |
963 this-indent)) | |
964 (progn | |
965 (delete-region (point) (progn (beginning-of-line) (point))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
966 (indent-to |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48192
diff
changeset
|
967 (if continued-line |
6709 | 968 (+ this-indent tcl-indent-level) |
969 this-indent))))))))) | |
970 ) | |
971 | |
972 | |
973 | |
974 ;; | |
975 ;; Interfaces to other packages. | |
976 ;; | |
977 | |
978 ;; FIXME Definition of function is very ad-hoc. Should use | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
979 ;; beginning-of-defun. Also has incestuous knowledge about the |
6709 | 980 ;; format of tcl-proc-regexp. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
981 (defun tcl-add-log-defun () |
6709 | 982 "Return name of Tcl function point is in, or nil." |
983 (save-excursion | |
13698
a5b05f960c30
(add-log-tcl-defun): Don't use tcl-beginning-of-defun; just go to end
Tom Tromey <tromey@redhat.com>
parents:
13697
diff
changeset
|
984 (end-of-line) |
a5b05f960c30
(add-log-tcl-defun): Don't use tcl-beginning-of-defun; just go to end
Tom Tromey <tromey@redhat.com>
parents:
13697
diff
changeset
|
985 (if (re-search-backward (concat tcl-proc-regexp "\\([^ \t\n{]+\\)") nil t) |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
986 (match-string 2)))) |
6709 | 987 |
11303
7823947372f9
(tcl-outline-level): New function
Tom Tromey <tromey@redhat.com>
parents:
9428
diff
changeset
|
988 (defun tcl-outline-level () |
7823947372f9
(tcl-outline-level): New function
Tom Tromey <tromey@redhat.com>
parents:
9428
diff
changeset
|
989 (save-excursion |
7823947372f9
(tcl-outline-level): New function
Tom Tromey <tromey@redhat.com>
parents:
9428
diff
changeset
|
990 (skip-chars-forward " \t") |
7823947372f9
(tcl-outline-level): New function
Tom Tromey <tromey@redhat.com>
parents:
9428
diff
changeset
|
991 (current-column))) |
7823947372f9
(tcl-outline-level): New function
Tom Tromey <tromey@redhat.com>
parents:
9428
diff
changeset
|
992 |
6709 | 993 |
994 | |
995 ;; | |
996 ;; Helper functions for inferior Tcl mode. | |
997 ;; | |
998 | |
999 ;; This exists to let us delete the prompt when commands are sent | |
1000 ;; directly to the inferior Tcl. See gud.el for an explanation of how | |
1001 ;; it all works (I took it from there). This stuff doesn't really | |
1002 ;; work as well as I'd like it to. But I don't believe there is | |
1003 ;; anything useful that can be done. | |
1004 (defvar inferior-tcl-delete-prompt-marker nil) | |
1005 | |
1006 (defun tcl-filter (proc string) | |
1007 (let ((inhibit-quit t)) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1008 (with-current-buffer (process-buffer proc) |
6709 | 1009 (goto-char (process-mark proc)) |
1010 ;; Delete prompt if requested. | |
1011 (if (marker-buffer inferior-tcl-delete-prompt-marker) | |
1012 (progn | |
1013 (delete-region (point) inferior-tcl-delete-prompt-marker) | |
1014 (set-marker inferior-tcl-delete-prompt-marker nil))))) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1015 (comint-output-filter proc string)) |
6709 | 1016 |
1017 (defun tcl-send-string (proc string) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1018 (with-current-buffer (process-buffer proc) |
6709 | 1019 (goto-char (process-mark proc)) |
1020 (beginning-of-line) | |
1021 (if (looking-at comint-prompt-regexp) | |
1022 (set-marker inferior-tcl-delete-prompt-marker (point)))) | |
1023 (comint-send-string proc string)) | |
1024 | |
1025 (defun tcl-send-region (proc start end) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1026 (with-current-buffer (process-buffer proc) |
6709 | 1027 (goto-char (process-mark proc)) |
1028 (beginning-of-line) | |
1029 (if (looking-at comint-prompt-regexp) | |
1030 (set-marker inferior-tcl-delete-prompt-marker (point)))) | |
1031 (comint-send-region proc start end)) | |
1032 | |
1033 (defun switch-to-tcl (eob-p) | |
1034 "Switch to inferior Tcl process buffer. | |
1035 With argument, positions cursor at end of buffer." | |
1036 (interactive "P") | |
1037 (if (get-buffer inferior-tcl-buffer) | |
1038 (pop-to-buffer inferior-tcl-buffer) | |
1039 (error "No current inferior Tcl buffer")) | |
1040 (cond (eob-p | |
1041 (push-mark) | |
1042 (goto-char (point-max))))) | |
1043 | |
1044 (defun inferior-tcl-proc () | |
1045 "Return current inferior Tcl process. | |
1046 See variable `inferior-tcl-buffer'." | |
1047 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-tcl-mode) | |
1048 (current-buffer) | |
1049 inferior-tcl-buffer)))) | |
1050 (or proc | |
1051 (error "No Tcl process; see variable `inferior-tcl-buffer'")))) | |
1052 | |
1053 (defun tcl-eval-region (start end &optional and-go) | |
1054 "Send the current region to the inferior Tcl process. | |
1055 Prefix argument means switch to the Tcl buffer afterwards." | |
1056 (interactive "r\nP") | |
1057 (let ((proc (inferior-tcl-proc))) | |
1058 (tcl-send-region proc start end) | |
1059 (tcl-send-string proc "\n") | |
1060 (if and-go (switch-to-tcl t)))) | |
1061 | |
1062 (defun tcl-eval-defun (&optional and-go) | |
1063 "Send the current defun to the inferior Tcl process. | |
1064 Prefix argument means switch to the Tcl buffer afterwards." | |
1065 (interactive "P") | |
1066 (save-excursion | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1067 (end-of-defun) |
6709 | 1068 (let ((end (point))) |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1069 (beginning-of-defun) |
6709 | 1070 (tcl-eval-region (point) end))) |
1071 (if and-go (switch-to-tcl t))) | |
1072 | |
1073 | |
1074 | |
1075 ;; | |
1076 ;; Inferior Tcl mode itself. | |
1077 ;; | |
1078 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1079 (define-derived-mode inferior-tcl-mode comint-mode "Inferior Tcl" |
6709 | 1080 "Major mode for interacting with Tcl interpreter. |
1081 | |
44316
443cf26a410a
(tcl-imenu-generic-expression): New value.
Richard M. Stallman <rms@gnu.org>
parents:
44227
diff
changeset
|
1082 You can start a Tcl process with \\[inferior-tcl]. |
6709 | 1083 |
25163 | 1084 Entry to this mode runs the normal hooks `comint-mode-hook' and |
1085 `inferior-tcl-mode-hook', in that order. | |
6709 | 1086 |
1087 You can send text to the inferior Tcl process from other buffers | |
1088 containing Tcl source. | |
1089 | |
1090 Variables controlling Inferior Tcl mode: | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1091 `tcl-application' |
6709 | 1092 Name of program to run. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1093 `tcl-command-switches' |
6709 | 1094 Command line arguments to `tcl-application'. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1095 `tcl-prompt-regexp' |
6709 | 1096 Matches prompt. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1097 `inferior-tcl-source-command' |
6709 | 1098 Command to use to read Tcl file in running application. |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1099 `inferior-tcl-buffer' |
6709 | 1100 The current inferior Tcl process buffer. See variable |
1101 documentation for details on multiple-process support. | |
1102 | |
1103 The following commands are available: | |
1104 \\{inferior-tcl-mode-map}" | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1105 (set (make-local-variable 'comint-prompt-regexp) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1106 (or tcl-prompt-regexp |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1107 (concat "^" (regexp-quote tcl-application) ">"))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1108 (setq mode-line-process '(": %s")) |
6709 | 1109 (setq local-abbrev-table tcl-mode-abbrev-table) |
1110 (set-syntax-table tcl-mode-syntax-table) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1111 (set (make-local-variable 'defun-prompt-regexp) tcl-omit-ws-regexp) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1112 (set (make-local-variable 'inferior-tcl-delete-prompt-marker) (make-marker)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1113 (set-process-filter (get-buffer-process (current-buffer)) 'tcl-filter)) |
6709 | 1114 |
8252
7d4674a34de3
Added ";;;###autoload" comments where appropriate.
Tom Tromey <tromey@redhat.com>
parents:
7799
diff
changeset
|
1115 ;;;###autoload |
6709 | 1116 (defun inferior-tcl (cmd) |
1117 "Run inferior Tcl process. | |
1118 Prefix arg means enter program name interactively. | |
1119 See documentation for function `inferior-tcl-mode' for more information." | |
1120 (interactive | |
1121 (list (if current-prefix-arg | |
1122 (read-string "Run Tcl: " tcl-application) | |
1123 tcl-application))) | |
1124 (if (not (comint-check-proc "*inferior-tcl*")) | |
1125 (progn | |
1126 (set-buffer (apply (function make-comint) "inferior-tcl" cmd nil | |
1127 tcl-command-switches)) | |
1128 (inferior-tcl-mode))) | |
1129 (make-local-variable 'tcl-application) | |
1130 (setq tcl-application cmd) | |
1131 (setq inferior-tcl-buffer "*inferior-tcl*") | |
1132 (switch-to-buffer "*inferior-tcl*")) | |
1133 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1134 (defalias 'run-tcl 'inferior-tcl) |
6709 | 1135 |
1136 | |
1137 | |
1138 ;; | |
1139 ;; Auto-fill support. | |
1140 ;; | |
1141 | |
1142 (defun tcl-real-command-p () | |
1143 "Return nil if point is not at the beginning of a command. | |
1144 A command is the first word on an otherwise empty line, or the | |
1145 first word following a semicolon, opening brace, or opening bracket." | |
1146 (save-excursion | |
1147 (skip-chars-backward " \t") | |
1148 (cond | |
1149 ((bobp) t) | |
1150 ((bolp) | |
1151 (backward-char) | |
1152 ;; Note -- continued comments are not supported here. I | |
1153 ;; consider those to be a wart on the language. | |
1154 (not (eq ?\\ (preceding-char)))) | |
1155 (t | |
1156 (memq (preceding-char) '(?\; ?{ ?\[)))))) | |
1157 | |
1158 ;; FIXME doesn't actually return t. See last case. | |
1159 (defun tcl-real-comment-p () | |
1160 "Return t if point is just after the `#' beginning a real comment. | |
1161 Does not check to see if previous char is actually `#'. | |
1162 A real comment is either at the beginning of the buffer, | |
44227
a1c4f9151348
(tcl-imenu-create-index-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43437
diff
changeset
|
1163 preceded only by whitespace on the line, or has a preceding |
6709 | 1164 semicolon, opening brace, or opening bracket on the same line." |
1165 (save-excursion | |
1166 (backward-char) | |
1167 (tcl-real-command-p))) | |
1168 | |
1169 (defun tcl-hairy-scan-for-comment (state end always-stop) | |
1170 "Determine if point is in a comment. | |
1171 Returns a list of the form `(FLAG . STATE)'. STATE can be used | |
1172 as input to future invocations. FLAG is nil if not in comment, | |
1173 t otherwise. If in comment, leaves point at beginning of comment. | |
25163 | 1174 |
1175 This function does not work in Emacs 18. | |
1176 See also `tcl-simple-scan-for-comment', a | |
6709 | 1177 simpler version that is often right, and works in Emacs 18." |
1178 (let ((bol (save-excursion | |
1179 (goto-char end) | |
1180 (beginning-of-line) | |
1181 (point))) | |
1182 real-comment | |
1183 last-cstart) | |
1184 (while (and (not last-cstart) (< (point) end)) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1185 (setq real-comment nil) ;In case we've looped around and it is set. |
6709 | 1186 (setq state (parse-partial-sexp (point) end nil nil state t)) |
1187 (if (nth 4 state) | |
1188 (progn | |
1189 ;; If ALWAYS-STOP is set, stop even if we don't have a | |
1190 ;; real comment, or if the comment isn't on the same line | |
1191 ;; as the end. | |
1192 (if always-stop (setq last-cstart (point))) | |
1193 ;; If we have a real comment, then set the comment | |
1194 ;; starting point if we are on the same line as the ending | |
1195 ;; location. | |
1196 (setq real-comment (tcl-real-comment-p)) | |
1197 (if real-comment | |
1198 (progn | |
1199 (and (> (point) bol) (setq last-cstart (point))) | |
1200 ;; NOTE Emacs 19 has a misfeature whereby calling | |
1201 ;; parse-partial-sexp with COMMENTSTOP set and with | |
1202 ;; an initial list that says point is in a comment | |
1203 ;; will cause an immediate return. So we must skip | |
1204 ;; over the comment ourselves. | |
1205 (beginning-of-line 2))) | |
1206 ;; Frob the state to make it look like we aren't in a | |
1207 ;; comment. | |
1208 (setcar (nthcdr 4 state) nil)))) | |
1209 (and last-cstart | |
1210 (goto-char last-cstart)) | |
1211 (cons real-comment state))) | |
1212 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1213 (defun tcl-in-comment () |
25163 | 1214 "Return t if point is in a comment, and leave point at beginning of comment." |
6709 | 1215 (let ((save (point))) |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1216 (beginning-of-defun) |
6709 | 1217 (car (tcl-hairy-scan-for-comment nil save nil)))) |
7628 | 1218 |
6709 | 1219 |
1220 | |
1221 ;; | |
1222 ;; Help-related code. | |
1223 ;; | |
1224 | |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1225 (defvar tcl-help-saved-dirs nil |
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1226 "Saved help directories. |
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1227 If `tcl-help-directory-list' changes, this allows `tcl-help-on-word' |
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1228 to update the alist.") |
6709 | 1229 |
1230 (defvar tcl-help-alist nil | |
1231 "Alist with command names as keys and filenames as values.") | |
1232 | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1233 (defun tcl-files-alist (dir &optional alist) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1234 "Recursively add all pairs (FILE . PATH) under DIR to ALIST." |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1235 (dolist (file (directory-files dir t) alist) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1236 (cond |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1237 ((not (file-directory-p file)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1238 (push (cons (file-name-nondirectory file) file) alist)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1239 ((member (file-name-nondirectory file) '("." ".."))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1240 (t (setq alist (tcl-files-alist file alist)))))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1241 |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1242 (defun tcl-help-snarf-commands (dirlist) |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1243 "Return alist of commands and filenames." |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1244 (let ((alist nil)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1245 (dolist (dir dirlist alist) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1246 (when (file-directory-p dir) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1247 (setq alist (tcl-files-alist dir alist)))))) |
6709 | 1248 |
1249 (defun tcl-reread-help-files () | |
1250 "Set up to re-read files, and then do it." | |
1251 (interactive) | |
1252 (message "Building Tcl help file index...") | |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1253 (setq tcl-help-saved-dirs tcl-help-directory-list) |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1254 (setq tcl-help-alist (tcl-help-snarf-commands tcl-help-directory-list)) |
6709 | 1255 (message "Building Tcl help file index...done")) |
1256 | |
12645
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
1257 (defun tcl-word-no-props () |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1258 "Like `current-word', but strips properties." |
12645
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
1259 (let ((word (current-word))) |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1260 (set-text-properties 0 (length word) nil word) |
12645
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
1261 word)) |
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
1262 |
6709 | 1263 (defun tcl-current-word (flag) |
1264 "Return current command word, or nil. | |
1265 If FLAG is nil, just uses `current-word'. | |
1266 Otherwise scans backward for most likely Tcl command word." | |
7799
1eb0d0f0f71b
tcl-current-word does the right thing in inferior-tcl-mode.
Tom Tromey <tromey@redhat.com>
parents:
7781
diff
changeset
|
1267 (if (and flag |
1eb0d0f0f71b
tcl-current-word does the right thing in inferior-tcl-mode.
Tom Tromey <tromey@redhat.com>
parents:
7781
diff
changeset
|
1268 (memq major-mode '(tcl-mode inferior-tcl-mode))) |
6709 | 1269 (condition-case nil |
1270 (save-excursion | |
1271 ;; Look backward for first word actually in alist. | |
1272 (if (bobp) | |
1273 () | |
1274 (while (and (not (bobp)) | |
1275 (not (tcl-real-command-p))) | |
1276 (backward-sexp))) | |
12645
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
1277 (if (assoc (tcl-word-no-props) tcl-help-alist) |
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
1278 (tcl-word-no-props))) |
6709 | 1279 (error nil)) |
12645
3ce3ca90e4a3
(tcl-word-no-props): New function.
Tom Tromey <tromey@redhat.com>
parents:
12644
diff
changeset
|
1280 (tcl-word-no-props))) |
6709 | 1281 |
8252
7d4674a34de3
Added ";;;###autoload" comments where appropriate.
Tom Tromey <tromey@redhat.com>
parents:
7799
diff
changeset
|
1282 ;;;###autoload |
6709 | 1283 (defun tcl-help-on-word (command &optional arg) |
1284 "Get help on Tcl command. Default is word at point. | |
1285 Prefix argument means invert sense of `tcl-use-smart-word-finder'." | |
1286 (interactive | |
1287 (list | |
1288 (progn | |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1289 (if (not (equal tcl-help-directory-list tcl-help-saved-dirs)) |
6709 | 1290 (tcl-reread-help-files)) |
1291 (let ((word (tcl-current-word | |
1292 (if current-prefix-arg | |
1293 (not tcl-use-smart-word-finder) | |
1294 tcl-use-smart-word-finder)))) | |
1295 (completing-read | |
1296 (if (or (null word) (string= word "")) | |
1297 "Help on Tcl command: " | |
1298 (format "Help on Tcl command (default %s): " word)) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1299 tcl-help-alist nil t nil nil word))) |
6709 | 1300 current-prefix-arg)) |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1301 (if (not (equal tcl-help-directory-list tcl-help-saved-dirs)) |
6709 | 1302 (tcl-reread-help-files)) |
1303 (if (string= command "") | |
1304 (setq command (tcl-current-word | |
1305 (if arg | |
1306 (not tcl-use-smart-word-finder) | |
1307 tcl-use-smart-word-finder)))) | |
1308 (let* ((help (get-buffer-create "*Tcl help*")) | |
1309 (cell (assoc command tcl-help-alist)) | |
1310 (file (and cell (cdr cell)))) | |
1311 (set-buffer help) | |
1312 (delete-region (point-min) (point-max)) | |
1313 (if file | |
1314 (progn | |
1315 (insert "*** " command "\n\n") | |
1316 (insert-file-contents file)) | |
1317 (if (string= command "") | |
1318 (insert "Magical Pig!") | |
1319 (insert "Tcl command " command " not in help\n"))) | |
1320 (set-buffer-modified-p nil) | |
1321 (goto-char (point-min)) | |
1322 (display-buffer help))) | |
1323 | |
1324 | |
1325 | |
1326 ;; | |
1327 ;; Other interactive stuff. | |
1328 ;; | |
1329 | |
1330 (defvar tcl-previous-dir/file nil | |
1331 "Record last directory and file used in loading. | |
1332 This holds a cons cell of the form `(DIRECTORY . FILE)' | |
1333 describing the last `tcl-load-file' command.") | |
1334 | |
1335 (defun tcl-load-file (file &optional and-go) | |
1336 "Load a Tcl file into the inferior Tcl process. | |
1337 Prefix argument means switch to the Tcl buffer afterwards." | |
1338 (interactive | |
1339 (list | |
1340 ;; car because comint-get-source returns a list holding the | |
1341 ;; filename. | |
8581
e7daed44da21
tcl-load-file default to current buffer.
Tom Tromey <tromey@redhat.com>
parents:
8580
diff
changeset
|
1342 (car (comint-get-source "Load Tcl file: " |
e7daed44da21
tcl-load-file default to current buffer.
Tom Tromey <tromey@redhat.com>
parents:
8580
diff
changeset
|
1343 (or (and |
e7daed44da21
tcl-load-file default to current buffer.
Tom Tromey <tromey@redhat.com>
parents:
8580
diff
changeset
|
1344 (eq major-mode 'tcl-mode) |
e7daed44da21
tcl-load-file default to current buffer.
Tom Tromey <tromey@redhat.com>
parents:
8580
diff
changeset
|
1345 (buffer-file-name)) |
e7daed44da21
tcl-load-file default to current buffer.
Tom Tromey <tromey@redhat.com>
parents:
8580
diff
changeset
|
1346 tcl-previous-dir/file) |
6709 | 1347 '(tcl-mode) t)) |
1348 current-prefix-arg)) | |
1349 (comint-check-source file) | |
1350 (setq tcl-previous-dir/file (cons (file-name-directory file) | |
1351 (file-name-nondirectory file))) | |
1352 (tcl-send-string (inferior-tcl-proc) | |
1353 (format inferior-tcl-source-command (tcl-quote file))) | |
1354 (if and-go (switch-to-tcl t))) | |
1355 | |
1356 (defun tcl-restart-with-file (file &optional and-go) | |
1357 "Restart inferior Tcl with file. | |
1358 If an inferior Tcl process exists, it is killed first. | |
1359 Prefix argument means switch to the Tcl buffer afterwards." | |
1360 (interactive | |
1361 (list | |
1362 (car (comint-get-source "Restart with Tcl file: " | |
1363 (or (and | |
1364 (eq major-mode 'tcl-mode) | |
1365 (buffer-file-name)) | |
1366 tcl-previous-dir/file) | |
1367 '(tcl-mode) t)) | |
1368 current-prefix-arg)) | |
1369 (let* ((buf (if (eq major-mode 'inferior-tcl-mode) | |
1370 (current-buffer) | |
1371 inferior-tcl-buffer)) | |
1372 (proc (and buf (get-process buf)))) | |
1373 (cond | |
1374 ((not (and buf (get-buffer buf))) | |
1375 ;; I think this will be ok. | |
1376 (inferior-tcl tcl-application) | |
1377 (tcl-load-file file and-go)) | |
1378 ((or | |
1379 (not (comint-check-proc buf)) | |
1380 (yes-or-no-p | |
1381 "A Tcl process is running, are you sure you want to reset it? ")) | |
1382 (save-excursion | |
1383 (comint-check-source file) | |
1384 (setq tcl-previous-dir/file (cons (file-name-directory file) | |
1385 (file-name-nondirectory file))) | |
1386 (comint-exec (get-buffer-create buf) | |
1387 (if proc | |
1388 (process-name proc) | |
1389 "inferior-tcl") | |
1390 tcl-application file tcl-command-switches) | |
1391 (if and-go (switch-to-tcl t))))))) | |
1392 | |
1393 (defun tcl-auto-fill-mode (&optional arg) | |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
1394 "Like `auto-fill-mode', but sets `comment-auto-fill-only-comments'." |
6709 | 1395 (interactive "P") |
44320
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
1396 (auto-fill-mode arg) |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
1397 (if auto-fill-function |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
1398 (set (make-local-variable 'comment-auto-fill-only-comments) t) |
40a69f39b79f
Change maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44316
diff
changeset
|
1399 (kill-local-variable 'comment-auto-fill-only-comments))) |
6709 | 1400 |
1401 (defun tcl-electric-hash (&optional count) | |
1402 "Insert a `#' and quote if it does not start a real comment. | |
1403 Prefix arg is number of `#'s to insert. | |
1404 See variable `tcl-electric-hash-style' for description of quoting | |
1405 styles." | |
1406 (interactive "p") | |
1407 (or count (setq count 1)) | |
1408 (if (> count 0) | |
1409 (let ((type | |
1410 (if (eq tcl-electric-hash-style 'smart) | |
1411 (if (> count 3) ; FIXME what is "smart"? | |
1412 'quote | |
1413 'backslash) | |
1414 tcl-electric-hash-style)) | |
1415 comment) | |
1416 (if type | |
1417 (progn | |
1418 (save-excursion | |
1419 (insert "#") | |
1420 (setq comment (tcl-in-comment))) | |
1421 (delete-char 1) | |
1422 (and tcl-explain-indentation (message "comment: %s" comment)) | |
1423 (cond | |
1424 ((eq type 'quote) | |
1425 (if (not comment) | |
1426 (insert "\""))) | |
1427 ((eq type 'backslash) | |
1428 ;; The following will set count to 0, so the | |
1429 ;; insert-char can still be run. | |
1430 (if (not comment) | |
1431 (while (> count 0) | |
1432 (insert "\\#") | |
1433 (setq count (1- count))))) | |
1434 (t nil)))) | |
1435 (insert-char ?# count)))) | |
1436 | |
1437 (defun tcl-hashify-buffer () | |
1438 "Quote all `#'s in current buffer that aren't Tcl comments." | |
1439 (interactive) | |
1440 (save-excursion | |
1441 (goto-char (point-min)) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1442 (let (state |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1443 result) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1444 (while (< (point) (point-max)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1445 (setq result (tcl-hairy-scan-for-comment state (point-max) t)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1446 (if (car result) |
6709 | 1447 (beginning-of-line 2) |
1448 (backward-char) | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1449 (if (eq ?# (following-char)) |
6709 | 1450 (insert "\\")) |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1451 (forward-char)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1452 (setq state (cdr result)))))) |
6709 | 1453 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1454 (defun tcl-comment-indent () |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1455 "Return the desired indentation, but be careful to add a `;' if needed." |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1456 (save-excursion |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1457 ;; If line is not blank, make sure we insert a ";" first. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1458 (skip-chars-backward " \t") |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1459 (unless (or (bolp) (tcl-real-command-p)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1460 (insert ";") |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1461 ;; Try and erase a non-significant char to keep charpos identical. |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1462 (if (memq (char-after) '(?\t ?\ )) (delete-char 1)))) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1463 (funcall (default-value 'comment-indent-function))) |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1464 |
6709 | 1465 ;; The following was inspired by the Tcl editing mode written by |
1466 ;; Gregor Schmid <schmid@fb3-s7.math.TU-Berlin.DE>. His version also | |
1467 ;; attempts to snarf the command line options from the command line, | |
1468 ;; but I didn't think that would really be that helpful (doesn't seem | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1469 ;; like it would be right enough. His version also looks for the |
6709 | 1470 ;; "#!/bin/csh ... exec" hack, but that seemed even less useful. |
7052
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1471 ;; FIXME should make sure that the application mentioned actually |
5dfd509b6396
Wrote tcl-indent-for-comment
Tom Tromey <tromey@redhat.com>
parents:
6730
diff
changeset
|
1472 ;; exists. |
6709 | 1473 (defun tcl-guess-application () |
1474 "Attempt to guess Tcl application by looking at first line. | |
1475 The first line is assumed to look like \"#!.../program ...\"." | |
1476 (save-excursion | |
1477 (goto-char (point-min)) | |
8580
648f78c8ecf5
Fixed bug in tcl-guess-application.
Tom Tromey <tromey@redhat.com>
parents:
8575
diff
changeset
|
1478 (if (looking-at "#![^ \t]*/\\([^ \t\n/]+\\)\\([ \t]\\|$\\)") |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1479 (set (make-local-variable 'tcl-application) (match-string 1))))) |
6709 | 1480 |
1481 | |
1482 | |
1483 ;; | |
11787
635f5fb5d82a
Changed "Lucid Emacs" to "XEmacs".
Tom Tromey <tromey@redhat.com>
parents:
11303
diff
changeset
|
1484 ;; XEmacs menu support. |
6709 | 1485 ;; Taken from schmid@fb3-s7.math.TU-Berlin.DE (Gregor Schmid), |
1486 ;; who wrote a different Tcl mode. | |
25163 | 1487 ;; We also have support for menus in Emacs. We do this by |
11787
635f5fb5d82a
Changed "Lucid Emacs" to "XEmacs".
Tom Tromey <tromey@redhat.com>
parents:
11303
diff
changeset
|
1488 ;; loading the XEmacs menu emulation code. |
6709 | 1489 ;; |
1490 | |
1491 (defun tcl-popup-menu (e) | |
7612 | 1492 (interactive "@e") |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1493 (popup-menu tcl-mode-menu)) |
6709 | 1494 |
1495 | |
1496 | |
1497 ;; | |
1498 ;; Quoting and unquoting functions. | |
1499 ;; | |
1500 | |
1501 ;; This quoting is sufficient to protect eg a filename from any sort | |
1502 ;; of expansion or splitting. Tcl quoting sure sucks. | |
1503 (defun tcl-quote (string) | |
1504 "Quote STRING according to Tcl rules." | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1505 (mapconcat (lambda (char) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1506 (if (memq char '(?[ ?] ?{ ?} ?\\ ?\" ?$ ? ?\;)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1507 (concat "\\" (char-to-string char)) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1508 (char-to-string char))) |
6709 | 1509 string "")) |
1510 | |
7628 | 1511 ;; |
1512 ;; Bug reporting. | |
1513 ;; | |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1514 |
7628 | 1515 |
39754
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1516 ;; These are relics kept "just in case". |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1517 (defalias 'tcl-uncomment-region 'uncomment-region) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1518 (defalias 'tcl-indent-for-comment 'comment-indent) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1519 (defalias 'add-log-tcl-defun 'tcl-add-log-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1520 (defalias 'indent-tcl-exp 'tcl-indent-exp) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1521 (defalias 'calculate-tcl-indent 'tcl-calculate-indent) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1522 (defalias 'tcl-beginning-of-defun 'beginning-of-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1523 (defalias 'tcl-end-of-defun 'end-of-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1524 (defalias 'tcl-mark-defun 'mark-defun) |
6a46751c85df
Change maintainer to FSF and remove loads of compatibility cruft.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38476
diff
changeset
|
1525 (defun tcl-mark () (mark t)) |
7628 | 1526 |
6709 | 1527 (provide 'tcl) |
1528 | |
1529 ;;; tcl.el ends here |