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