(sh-imenu-generic-expression): Fix doc,
[bpt/emacs.git] / lisp / progmodes / sh-script.el
1 ;;; sh-script.el --- shell-script editing commands for Emacs
2
3 ;; Copyright (C) 1993, 94, 95, 96, 97, 1999 by Free Software Foundation, Inc.
4
5 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
6 ;; Version: 2.0f
7 ;; Maintainer: FSF
8 ;; Keywords: languages, unix
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; Major mode for editing shell scripts. Bourne, C and rc shells as well
30 ;; as various derivatives are supported and easily derived from. Structured
31 ;; statements can be inserted with one command or abbrev. Completion is
32 ;; available for filenames, variables known from the script, the shell and
33 ;; the environment as well as commands.
34
35 ;;; Known Bugs:
36
37 ;; - In Bourne the keyword `in' is not anchored to case, for, select ...
38 ;; - Variables in `"' strings aren't fontified because there's no way of
39 ;; syntactically distinguishing those from `'' strings.
40
41 ;; Indentation
42 ;; ===========
43 ;; Indentation for rc and es modes is very limited, but for Bourne shells
44 ;; and its derivatives it is quite customizable.
45 ;;
46 ;; The following description applies to sh and derived shells (bash,
47 ;; zsh, ...).
48 ;;
49 ;; There are various customization variables which allow tailoring to
50 ;; a wide variety of styles. Most of these variables are named
51 ;; sh-indent-for-XXX and sh-indent-after-XXX. For example.
52 ;; sh-indent-after-if controls the indenting of a line following
53 ;; an if statement, and sh-indent-for-fi controls the indentation
54 ;; of the line containing the fi.
55 ;;
56 ;; You can set each to a numeric value, but it is often more convenient
57 ;; to a symbol such as `+' which uses the value of variable `sh-basic-offset'.
58 ;; By changing this one variable you can increase or decrease how much
59 ;; indentation there is. Valid symbols:
60 ;;
61 ;; + Indent right by sh-basic-offset
62 ;; - Indent left by sh-basic-offset
63 ;; ++ Indent right twice sh-basic-offset
64 ;; -- Indent left twice sh-basic-offset
65 ;; * Indent right half sh-basic-offset
66 ;; / Indent left half sh-basic-offset.
67 ;;
68 ;; There are 4 commands to help set the indentation variables:
69 ;;
70 ;; `sh-show-indent'
71 ;; This shows what variable controls the indentation of the current
72 ;; line and its value.
73 ;;
74 ;; `sh-set-indent'
75 ;; This allows you to set the value of the variable controlling the
76 ;; current line's indentation. You can enter a number or one of a
77 ;; number of special symbols to denote the value of sh-basic-offset,
78 ;; or its negative, or half it, or twice it, etc. If you've used
79 ;; cc-mode this should be familiar. If you forget which symbols are
80 ;; valid simply press C-h at the prompt.
81 ;;
82 ;; `sh-learn-line-indent'
83 ;; Simply make the line look the way you want it, then invoke this
84 ;; command. It will set the variable to the value that makes the line
85 ;; indent like that. If called with a prefix argument then it will set
86 ;; the value to one of the symbols if applicable.
87 ;;
88 ;; `sh-learn-buffer-indent'
89 ;; This is the deluxe function! It "learns" the whole buffer (use
90 ;; narrowing if you want it to process only part). It outputs to a
91 ;; buffer *indent* any conflicts it finds, and all the variables it has
92 ;; learned. This buffer is a sort of Occur mode buffer, allowing you to
93 ;; easily find where something was set. It is popped to automatically
94 ;; if there are any conflicts found or if `sh-popup-occur-buffer' is
95 ;; non-nil.
96 ;; `sh-indent-comment' will be set if all comments follow the same
97 ;; pattern; if they don't it will be set to nil.
98 ;; Whether `sh-basic-offset' is set is determined by variable
99 ;; `sh-learn-basic-offset'.
100 ;;
101 ;; Unfortunately, `sh-learn-buffer-indent' can take a long time to run
102 ;; (e.g. if there are large case statements). Perhaps it does not make
103 ;; sense to run it on large buffers: if lots of lines have different
104 ;; indentation styles it will produce a lot of diagnostics in the
105 ;; *indent* buffer; if there is a consistent style then running
106 ;; `sh-learn-buffer-indent' on a small region of the buffer should
107 ;; suffice.
108 ;;
109 ;; Saving indentation values
110 ;; -------------------------
111 ;; After you've learned the values in a buffer, how to you remember
112 ;; them? Originally I had hoped that `sh-learn-buffer-indent'
113 ;; would make this unnecessary; simply learn the values when you visit
114 ;; the buffer.
115 ;; You can do this automatically like this:
116 ;; (add-hook 'sh-set-shell-hook 'sh-learn-buffer-indent)
117 ;;
118 ;; However... `sh-learn-buffer-indent' is extremely slow,
119 ;; especially on large-ish buffer. Also, if there are conflicts the
120 ;; "last one wins" which may not produce the desired setting.
121 ;;
122 ;; So...There is a minimal way of being able to save indentation values and
123 ;; to reload them in another buffer or at another point in time.
124 ;;
125 ;; Use `sh-name-style' to give a name to the indentation settings of
126 ;; the current buffer.
127 ;; Use `sh-load-style' to load indentation settings for the current
128 ;; buffer from a specific style.
129 ;; Use `sh-save-styles-to-buffer' to write all the styles to a buffer
130 ;; in lisp code. You can then store it in a file and later use
131 ;; `load-file' to load it.
132 ;;
133 ;; Indentation variables - buffer local or global?
134 ;; ----------------------------------------------
135 ;; I think that often having them buffer-local makes sense,
136 ;; especially if one is using `sh-learn-buffer-indent'. However, if
137 ;; a user sets values using customization, these changes won't appear
138 ;; to work if the variables are already local!
139 ;;
140 ;; To get round this, there is a variable `sh-make-vars-local' and 2
141 ;; functions: `sh-make-vars-local' and `sh-reset-indent-vars-to-global-values'.
142 ;;
143 ;; If `sh-make-vars-local' is non-nil, then these variables become
144 ;; buffer local when the mode is established.
145 ;; If this is nil, then the variables are global. At any time you
146 ;; can make them local with the command `sh-make-vars-local'.
147 ;; Conversely, to update with the global values you can use the
148 ;; command `sh-reset-indent-vars-to-global-values'.
149 ;;
150 ;; This may be awkward, but the intent is to cover all cases.
151 ;;
152 ;; Awkward things, pitfalls
153 ;; ------------------------
154 ;; Indentation for a sh script is complicated for a number of reasons:
155 ;;
156 ;; 1. You can't format by simply looking at symbols, you need to look
157 ;; at keywords. [This is not the case for rc and es shells.]
158 ;; 2. The character ")" is used both as a matched pair "(" ... ")" and
159 ;; as a stand-alone symbol (in a case alternative). This makes
160 ;; things quite tricky!
161 ;; 3. Here-documents in a script should be treated "as is", and when
162 ;; they terminate we want to revert to the indentation of the line
163 ;; containing the "<<" symbol.
164 ;; 4. A line may be continued using the "\".
165 ;; 5. The character "#" (outside a string) normally starts a comment,
166 ;; but it doesn't in the sequence "$#"!
167 ;;
168 ;; To try and address points 2 3 and 5 I used a feature that cperl mode
169 ;; uses, that of a text's syntax property. This, however, has 2
170 ;; disadvantages:
171 ;; 1. We need to scan the buffer to find which ")" symbols belong to a
172 ;; case alternative, to find any here documents, and handle "$#".
173 ;; 2. Setting the text property makes the buffer modified. If the
174 ;; buffer is read-only buffer we have to cheat and bypass the read-only
175 ;; status. This is for cases where the buffer started read-only buffer
176 ;; but the user issued `toggle-read-only'.
177 ;;
178 ;; Bugs
179 ;; ----
180 ;; - Indenting many lines is slow. It currently does each line
181 ;; independently, rather than saving state information.
182 ;;
183 ;; - `sh-learn-buffer-indent' is extremely slow.
184 ;;
185 ;; Richard Sharman <rsharman@pobox.com> June 1999.
186
187 ;;; Code:
188
189 ;; page 1: variables and settings
190 ;; page 2: indentation stuff
191 ;; page 3: mode-command and utility functions
192 ;; page 4: statement syntax-commands for various shells
193 ;; page 5: various other commands
194
195 (eval-when-compile
196 (require 'skeleton)
197 (require 'comint))
198 (require 'executable)
199
200
201
202 (defgroup sh nil
203 "Shell programming utilities"
204 :group 'unix
205 :group 'languages)
206
207 (defgroup sh-script nil
208 "Shell script mode"
209 :group 'sh
210 :prefix "sh-")
211
212
213 (defcustom sh-ancestor-alist
214 '((ash . sh)
215 (bash . jsh)
216 (bash2 . jsh)
217 (dtksh . ksh)
218 (es . rc)
219 (itcsh . tcsh)
220 (jcsh . csh)
221 (jsh . sh)
222 (ksh . ksh88)
223 (ksh88 . jsh)
224 (oash . sh)
225 (pdksh . ksh88)
226 (posix . sh)
227 (tcsh . csh)
228 (wksh . ksh88)
229 (wsh . sh)
230 (zsh . ksh88)
231 (rpm . sh))
232 "*Alist showing the direct ancestor of various shells.
233 This is the basis for `sh-feature'. See also `sh-alias-alist'.
234 By default we have the following three hierarchies:
235
236 csh C Shell
237 jcsh C Shell with Job Control
238 tcsh Toronto C Shell
239 itcsh ? Toronto C Shell
240 rc Plan 9 Shell
241 es Extensible Shell
242 sh Bourne Shell
243 ash ? Shell
244 jsh Bourne Shell with Job Control
245 bash GNU Bourne Again Shell
246 ksh88 Korn Shell '88
247 ksh Korn Shell '93
248 dtksh CDE Desktop Korn Shell
249 pdksh Public Domain Korn Shell
250 wksh Window Korn Shell
251 zsh Z Shell
252 oash SCO OA (curses) Shell
253 posix IEEE 1003.2 Shell Standard
254 wsh ? Shell"
255 :type '(repeat (cons symbol symbol))
256 :group 'sh-script)
257
258
259 (defcustom sh-alias-alist
260 (nconc (if (eq system-type 'gnu/linux)
261 '((csh . tcsh)
262 (ksh . pdksh)))
263 ;; for the time being
264 '((ksh . ksh88)
265 (bash2 . bash)
266 (sh5 . sh)))
267 "*Alist for transforming shell names to what they really are.
268 Use this where the name of the executable doesn't correspond to the type of
269 shell it really is."
270 :type '(repeat (cons symbol symbol))
271 :group 'sh-script)
272
273
274 (defcustom sh-shell-file
275 (or
276 ;; On MSDOS and Windows, collapse $SHELL to lower-case and remove
277 ;; the executable extension, so comparisons with the list of
278 ;; known shells work.
279 (and (memq system-type '(ms-dos windows-nt))
280 (let* ((shell (getenv "SHELL"))
281 (shell-base
282 (and shell (file-name-nondirectory shell))))
283 ;; shell-script mode doesn't support DOS/Windows shells,
284 ;; so use the default instead.
285 (if (or (null shell)
286 (member (downcase shell-base)
287 '("command.com" "cmd.exe" "4dos.com" "ndos.com"
288 "cmdproxy.exe")))
289 "/bin/sh"
290 (file-name-sans-extension (downcase shell)))))
291 (getenv "SHELL")
292 "/bin/sh")
293 "*The executable file name for the shell being programmed."
294 :type 'string
295 :group 'sh-script)
296
297
298 (defcustom sh-shell-arg
299 ;; bash does not need any options when run in a shell script,
300 '((bash)
301 (csh . "-f")
302 (pdksh)
303 ;; Bill_Mann@praxisint.com says -p with ksh can do harm.
304 (ksh88)
305 ;; -p means don't initialize functions from the environment.
306 (rc . "-p")
307 ;; Someone proposed -motif, but we don't want to encourage
308 ;; use of a non-free widget set.
309 (wksh)
310 ;; -f means don't run .zshrc.
311 (zsh . "-f"))
312 "*Single argument string for the magic number. See `sh-feature'."
313 :type '(repeat (cons (symbol :tag "Shell")
314 (choice (const :tag "No Arguments" nil)
315 (string :tag "Arguments")
316 (cons :format "Evaluate: %v"
317 (const :format "" eval)
318 sexp))))
319 :group 'sh-script)
320
321 (defcustom sh-imenu-generic-expression
322 `((sh
323 . ((nil "^\\s-*\\(function\\s-+\\)?\\([A-Za-z_][A-Za-z_0-9]+\\)\\s-*()" 2))))
324 "*Alist of regular expressions for recognizing shell function definitions.
325 See `sh-feature' and `imenu-generic-expression'."
326 :type '(alist :key-type (symbol :tag "Shell")
327 :value-type (alist :key-type (choice :tag "Title"
328 string
329 (const :tag "None" nil))
330 :value-type
331 (repeat :tag "Regexp, index..." sexp)))
332 :group 'sh-script
333 :version "20.4")
334
335 (defvar sh-shell-variables nil
336 "Alist of shell variable names that should be included in completion.
337 These are used for completion in addition to all the variables named
338 in `process-environment'. Each element looks like (VAR . VAR), where
339 the car and cdr are the same symbol.")
340
341 (defvar sh-shell-variables-initialized nil
342 "Non-nil if `sh-shell-variables' is initialized.")
343
344 (defun sh-canonicalize-shell (shell)
345 "Convert a shell name SHELL to the one we should handle it as."
346 (if (string-match "\\.exe\\'" shell)
347 (setq shell (substring shell 0 (match-beginning 0))))
348 (or (symbolp shell)
349 (setq shell (intern shell)))
350 (or (cdr (assq shell sh-alias-alist))
351 shell))
352
353 (defvar sh-shell (sh-canonicalize-shell (file-name-nondirectory sh-shell-file))
354 "The shell being programmed. This is set by \\[sh-set-shell].")
355
356 ;;; I turned off this feature because it doesn't permit typing commands
357 ;;; in the usual way without help.
358 ;;;(defvar sh-abbrevs
359 ;;; '((csh eval sh-abbrevs shell
360 ;;; "switch" 'sh-case
361 ;;; "getopts" 'sh-while-getopts)
362
363 ;;; (es eval sh-abbrevs shell
364 ;;; "function" 'sh-function)
365
366 ;;; (ksh88 eval sh-abbrevs sh
367 ;;; "select" 'sh-select)
368
369 ;;; (rc eval sh-abbrevs shell
370 ;;; "case" 'sh-case
371 ;;; "function" 'sh-function)
372
373 ;;; (sh eval sh-abbrevs shell
374 ;;; "case" 'sh-case
375 ;;; "function" 'sh-function
376 ;;; "until" 'sh-until
377 ;;; "getopts" 'sh-while-getopts)
378
379 ;;; ;; The next entry is only used for defining the others
380 ;;; (shell "for" sh-for
381 ;;; "loop" sh-indexed-loop
382 ;;; "if" sh-if
383 ;;; "tmpfile" sh-tmp-file
384 ;;; "while" sh-while)
385
386 ;;; (zsh eval sh-abbrevs ksh88
387 ;;; "repeat" 'sh-repeat))
388 ;;; "Abbrev-table used in Shell-Script mode. See `sh-feature'.
389 ;;;Due to the internal workings of abbrev tables, the shell name symbol is
390 ;;;actually defined as the table for the like of \\[edit-abbrevs].")
391
392
393
394 (easy-mmode-defsyntax sh-mode-syntax-table
395 '((?\# . "<")
396 (?\^l . ">#")
397 (?\n . ">#")
398 (?\" . "\"\"")
399 (?\' . "\"'")
400 (?\` . "\"`")
401 (?! . "_")
402 (?% . "_")
403 (?: . "_")
404 (?. . "_")
405 (?^ . "_")
406 (?~ . "_")
407 (?< . ".")
408 (?> . "."))
409 "Syntax-table used in Shell-Script mode.")
410
411
412 (defvar sh-mode-map
413 (let ((map (make-sparse-keymap))
414 (menu-map (make-sparse-keymap "Insert")))
415 (define-key map "\C-c(" 'sh-function)
416 (define-key map "\C-c\C-w" 'sh-while)
417 (define-key map "\C-c\C-u" 'sh-until)
418 (define-key map "\C-c\C-t" 'sh-tmp-file)
419 (define-key map "\C-c\C-s" 'sh-select)
420 (define-key map "\C-c\C-r" 'sh-repeat)
421 (define-key map "\C-c\C-o" 'sh-while-getopts)
422 (define-key map "\C-c\C-l" 'sh-indexed-loop)
423 (define-key map "\C-c\C-i" 'sh-if)
424 (define-key map "\C-c\C-f" 'sh-for)
425 (define-key map "\C-c\C-c" 'sh-case)
426 (define-key map "\C-c?" 'sh-show-indent)
427 (define-key map "\C-c=" 'sh-set-indent)
428 (define-key map "\C-c<" 'sh-learn-line-indent)
429 (define-key map "\C-c>" 'sh-learn-buffer-indent)
430
431 (define-key map "=" 'sh-assignment)
432 (define-key map "\C-c+" 'sh-add)
433 (define-key map "\C-\M-x" 'sh-execute-region)
434 (define-key map "\C-c\C-x" 'executable-interpret)
435 (define-key map "<" 'sh-maybe-here-document)
436 (define-key map "(" 'skeleton-pair-insert-maybe)
437 (define-key map "{" 'skeleton-pair-insert-maybe)
438 (define-key map "[" 'skeleton-pair-insert-maybe)
439 (define-key map "'" 'skeleton-pair-insert-maybe)
440 (define-key map "`" 'skeleton-pair-insert-maybe)
441 (define-key map "\"" 'skeleton-pair-insert-maybe)
442
443 (substitute-key-definition 'complete-tag 'comint-dynamic-complete
444 map (current-global-map))
445 (substitute-key-definition 'newline-and-indent 'sh-newline-and-indent
446 map (current-global-map))
447 (substitute-key-definition 'delete-backward-char
448 'backward-delete-char-untabify
449 map (current-global-map))
450 (define-key map "\C-c:" 'sh-set-shell)
451 (substitute-key-definition 'beginning-of-defun
452 'sh-beginning-of-compound-command
453 map (current-global-map))
454 (substitute-key-definition 'backward-sentence 'sh-beginning-of-command
455 map (current-global-map))
456 (substitute-key-definition 'forward-sentence 'sh-end-of-command
457 map (current-global-map))
458 (define-key map [menu-bar insert] (cons "Insert" menu-map))
459 (define-key menu-map [sh-while] '("While Loop" . sh-while))
460 (define-key menu-map [sh-until] '("Until Loop" . sh-until))
461 (define-key menu-map [sh-tmp-file] '("Temporary File" . sh-tmp-file))
462 (define-key menu-map [sh-select] '("Select Statement" . sh-select))
463 (define-key menu-map [sh-repeat] '("Repeat Loop" . sh-repeat))
464 (define-key menu-map [sh-getopts] '("Options Loop" . sh-while-getopts))
465 (define-key menu-map [sh-indexed-loop] '("Indexed Loop" . sh-indexed-loop))
466 (define-key menu-map [sh-if] '("If Statement" . sh-if))
467 (define-key menu-map [sh-for] '("For Loop" . sh-for))
468 (define-key menu-map [sh-case] '("Case Statement" . sh-case))
469 map)
470 "Keymap used in Shell-Script mode.")
471
472
473
474 (defcustom sh-dynamic-complete-functions
475 '(shell-dynamic-complete-environment-variable
476 shell-dynamic-complete-command
477 comint-dynamic-complete-filename)
478 "*Functions for doing TAB dynamic completion."
479 :type '(repeat function)
480 :group 'sh-script)
481
482
483 (defcustom sh-require-final-newline
484 '((csh . t)
485 (pdksh . t)
486 (rc eval . require-final-newline)
487 (sh eval . require-final-newline))
488 "*Value of `require-final-newline' in Shell-Script mode buffers.
489 See `sh-feature'."
490 :type '(repeat (cons (symbol :tag "Shell")
491 (choice (const :tag "require" t)
492 (cons :format "Evaluate: %v"
493 (const :format "" eval)
494 sexp))))
495 :group 'sh-script)
496
497
498 (defcustom sh-assignment-regexp
499 '((csh . "\\<\\([a-zA-Z0-9_]+\\)\\(\\[.+\\]\\)?[ \t]*[-+*/%^]?=")
500 ;; actually spaces are only supported in let/(( ... ))
501 (ksh88 . "\\<\\([a-zA-Z0-9_]+\\)\\(\\[.+\\]\\)?[ \t]*\\([-+*/%&|~^]\\|<<\\|>>\\)?=")
502 (rc . "\\<\\([a-zA-Z0-9_*]+\\)[ \t]*=")
503 (sh . "\\<\\([a-zA-Z0-9_]+\\)="))
504 "*Regexp for the variable name and what may follow in an assignment.
505 First grouping matches the variable name. This is upto and including the `='
506 sign. See `sh-feature'."
507 :type '(repeat (cons (symbol :tag "Shell")
508 (choice regexp
509 (cons :format "Evaluate: %v"
510 (const :format "" eval)
511 sexp))))
512 :group 'sh-script)
513
514
515 (defcustom sh-indentation 4
516 "The width for further indentation in Shell-Script mode."
517 :type 'integer
518 :group 'sh-script)
519
520
521 (defcustom sh-remember-variable-min 3
522 "*Don't remember variables less than this length for completing reads."
523 :type 'integer
524 :group 'sh-script)
525
526
527 (defvar sh-header-marker nil
528 "When non-nil is the end of header for prepending by \\[sh-execute-region].
529 That command is also used for setting this variable.")
530
531
532 (defcustom sh-beginning-of-command
533 "\\([;({`|&]\\|\\`\\|[^\\]\n\\)[ \t]*\\([/~a-zA-Z0-9:]\\)"
534 "*Regexp to determine the beginning of a shell command.
535 The actual command starts at the beginning of the second \\(grouping\\)."
536 :type 'regexp
537 :group 'sh-script)
538
539
540 (defcustom sh-end-of-command
541 "\\([/~a-zA-Z0-9:]\\)[ \t]*\\([;#)}`|&]\\|$\\)"
542 "*Regexp to determine the end of a shell command.
543 The actual command ends at the end of the first \\(grouping\\)."
544 :type 'regexp
545 :group 'sh-script)
546
547
548
549 (defvar sh-here-document-word "EOF"
550 "Word to delimit here documents.")
551
552 (defvar sh-test
553 '((sh "[ ]" . 3)
554 (ksh88 "[[ ]]" . 4))
555 "Initial input in Bourne if, while and until skeletons. See `sh-feature'.")
556
557
558 ;; customized this out of sheer bravado. not for the faint of heart.
559 ;; but it *did* have an asterisk in the docstring!
560 (defcustom sh-builtins
561 '((bash eval sh-append posix
562 "alias" "bg" "bind" "builtin" "declare" "dirs" "enable" "fc" "fg"
563 "help" "history" "jobs" "kill" "let" "local" "popd" "pushd" "source"
564 "suspend" "typeset" "unalias")
565
566 ;; The next entry is only used for defining the others
567 (bourne eval sh-append shell
568 "eval" "export" "getopts" "newgrp" "pwd" "read" "readonly"
569 "times" "ulimit")
570
571 (csh eval sh-append shell
572 "alias" "chdir" "glob" "history" "limit" "nice" "nohup" "rehash"
573 "setenv" "source" "time" "unalias" "unhash")
574
575 (dtksh eval identity wksh)
576
577 (es "access" "apids" "cd" "echo" "eval" "false" "let" "limit" "local"
578 "newpgrp" "result" "time" "umask" "var" "vars" "wait" "whatis")
579
580 (jsh eval sh-append sh
581 "bg" "fg" "jobs" "kill" "stop" "suspend")
582
583 (jcsh eval sh-append csh
584 "bg" "fg" "jobs" "kill" "notify" "stop" "suspend")
585
586 (ksh88 eval sh-append bourne
587 "alias" "bg" "false" "fc" "fg" "jobs" "kill" "let" "print" "time"
588 "typeset" "unalias" "whence")
589
590 (oash eval sh-append sh
591 "checkwin" "dateline" "error" "form" "menu" "newwin" "oadeinit"
592 "oaed" "oahelp" "oainit" "pp" "ppfile" "scan" "scrollok" "wattr"
593 "wclear" "werase" "win" "wmclose" "wmmessage" "wmopen" "wmove"
594 "wmtitle" "wrefresh")
595
596 (pdksh eval sh-append ksh88
597 "bind")
598
599 (posix eval sh-append sh
600 "command")
601
602 (rc "builtin" "cd" "echo" "eval" "limit" "newpgrp" "shift" "umask" "wait"
603 "whatis")
604
605 (sh eval sh-append bourne
606 "hash" "test" "type")
607
608 ;; The next entry is only used for defining the others
609 (shell "cd" "echo" "eval" "set" "shift" "umask" "unset" "wait")
610
611 (wksh eval sh-append ksh88
612 "Xt[A-Z][A-Za-z]*")
613
614 (zsh eval sh-append ksh88
615 "autoload" "bindkey" "builtin" "chdir" "compctl" "declare" "dirs"
616 "disable" "disown" "echotc" "enable" "functions" "getln" "hash"
617 "history" "integer" "limit" "local" "log" "popd" "pushd" "r"
618 "readonly" "rehash" "sched" "setopt" "source" "suspend" "true"
619 "ttyctl" "type" "unfunction" "unhash" "unlimit" "unsetopt" "vared"
620 "which"))
621 "*List of all shell builtins for completing read and fontification.
622 Note that on some systems not all builtins are available or some are
623 implemented as aliases. See `sh-feature'."
624 :type '(repeat (cons (symbol :tag "Shell")
625 (choice (repeat string)
626 (cons :format "Evaluate: %v"
627 (const :format "" eval)
628 sexp))))
629 :group 'sh-script)
630
631
632
633 (defcustom sh-leading-keywords
634 '((csh "else")
635
636 (es "true" "unwind-protect" "whatis")
637
638 (rc "else")
639
640 (sh "do" "elif" "else" "if" "then" "trap" "type" "until" "while"))
641 "*List of keywords that may be immediately followed by a builtin or keyword.
642 Given some confusion between keywords and builtins depending on shell and
643 system, the distinction here has been based on whether they influence the
644 flow of control or syntax. See `sh-feature'."
645 :type '(repeat (cons (symbol :tag "Shell")
646 (choice (repeat string)
647 (cons :format "Evaluate: %v"
648 (const :format "" eval)
649 sexp))))
650 :group 'sh-script)
651
652
653 (defcustom sh-other-keywords
654 '((bash eval sh-append bourne
655 "bye" "logout")
656
657 ;; The next entry is only used for defining the others
658 (bourne eval sh-append sh
659 "function")
660
661 (csh eval sh-append shell
662 "breaksw" "default" "end" "endif" "endsw" "foreach" "goto"
663 "if" "logout" "onintr" "repeat" "switch" "then" "while")
664
665 (es "break" "catch" "exec" "exit" "fn" "for" "forever" "fork" "if"
666 "return" "throw" "while")
667
668 (ksh88 eval sh-append bourne
669 "select")
670
671 (rc "break" "case" "exec" "exit" "fn" "for" "if" "in" "return" "switch"
672 "while")
673
674 (sh eval sh-append shell
675 "done" "esac" "fi" "for" "in" "return")
676
677 ;; The next entry is only used for defining the others
678 (shell "break" "case" "continue" "exec" "exit")
679
680 (zsh eval sh-append bash
681 "select"))
682 "*List of keywords not in `sh-leading-keywords'.
683 See `sh-feature'."
684 :type '(repeat (cons (symbol :tag "Shell")
685 (choice (repeat string)
686 (cons :format "Evaluate: %v"
687 (const :format "" eval)
688 sexp))))
689 :group 'sh-script)
690
691
692
693 (defvar sh-variables
694 '((bash eval sh-append sh
695 "allow_null_glob_expansion" "auto_resume" "BASH" "BASH_VERSION"
696 "cdable_vars" "ENV" "EUID" "FCEDIT" "FIGNORE" "glob_dot_filenames"
697 "histchars" "HISTFILE" "HISTFILESIZE" "history_control" "HISTSIZE"
698 "hostname_completion_file" "HOSTTYPE" "IGNOREEOF" "ignoreeof"
699 "LINENO" "MAIL_WARNING" "noclobber" "nolinks" "notify"
700 "no_exit_on_failed_exec" "NO_PROMPT_VARS" "OLDPWD" "OPTERR" "PPID"
701 "PROMPT_COMMAND" "PS4" "pushd_silent" "PWD" "RANDOM" "REPLY"
702 "SECONDS" "SHLVL" "TMOUT" "UID")
703
704 (csh eval sh-append shell
705 "argv" "cdpath" "child" "echo" "histchars" "history" "home"
706 "ignoreeof" "mail" "noclobber" "noglob" "nonomatch" "path" "prompt"
707 "shell" "status" "time" "verbose")
708
709 (es eval sh-append shell
710 "apid" "cdpath" "CDPATH" "history" "home" "ifs" "noexport" "path"
711 "pid" "prompt" "signals")
712
713 (jcsh eval sh-append csh
714 "notify")
715
716 (ksh88 eval sh-append sh
717 "ENV" "ERRNO" "FCEDIT" "FPATH" "HISTFILE" "HISTSIZE" "LINENO"
718 "OLDPWD" "PPID" "PS3" "PS4" "PWD" "RANDOM" "REPLY" "SECONDS"
719 "TMOUT")
720
721 (oash eval sh-append sh
722 "FIELD" "FIELD_MAX" "LAST_KEY" "OALIB" "PP_ITEM" "PP_NUM")
723
724 (rc eval sh-append shell
725 "apid" "apids" "cdpath" "CDPATH" "history" "home" "ifs" "path" "pid"
726 "prompt" "status")
727
728 (sh eval sh-append shell
729 "CDPATH" "IFS" "OPTARG" "OPTIND" "PS1" "PS2")
730
731 ;; The next entry is only used for defining the others
732 (shell "COLUMNS" "EDITOR" "HOME" "HUSHLOGIN" "LANG" "LC_COLLATE"
733 "LC_CTYPE" "LC_MESSAGES" "LC_MONETARY" "LC_NUMERIC" "LC_TIME"
734 "LINES" "LOGNAME" "MAIL" "MAILCHECK" "MAILPATH" "PAGER" "PATH"
735 "SHELL" "TERM" "TERMCAP" "TERMINFO" "VISUAL")
736
737 (tcsh eval sh-append csh
738 "addsuffix" "ampm" "autocorrect" "autoexpand" "autolist"
739 "autologout" "chase_symlinks" "correct" "dextract" "edit" "el"
740 "fignore" "gid" "histlit" "HOST" "HOSTTYPE" "HPATH"
741 "ignore_symlinks" "listjobs" "listlinks" "listmax" "matchbeep"
742 "nobeep" "NOREBIND" "oid" "printexitvalue" "prompt2" "prompt3"
743 "pushdsilent" "pushdtohome" "recexact" "recognize_only_executables"
744 "rmstar" "savehist" "SHLVL" "showdots" "sl" "SYSTYPE" "tcsh" "term"
745 "tperiod" "tty" "uid" "version" "visiblebell" "watch" "who"
746 "wordchars")
747
748 (zsh eval sh-append ksh88
749 "BAUD" "bindcmds" "cdpath" "DIRSTACKSIZE" "fignore" "FIGNORE" "fpath"
750 "HISTCHARS" "hostcmds" "hosts" "HOSTS" "LISTMAX" "LITHISTSIZE"
751 "LOGCHECK" "mailpath" "manpath" "NULLCMD" "optcmds" "path" "POSTEDIT"
752 "prompt" "PROMPT" "PROMPT2" "PROMPT3" "PROMPT4" "psvar" "PSVAR"
753 "READNULLCMD" "REPORTTIME" "RPROMPT" "RPS1" "SAVEHIST" "SPROMPT"
754 "STTY" "TIMEFMT" "TMOUT" "TMPPREFIX" "varcmds" "watch" "WATCH"
755 "WATCHFMT" "WORDCHARS" "ZDOTDIR"))
756 "List of all shell variables available for completing read.
757 See `sh-feature'.")
758
759 \f
760 ;;; Font-Lock support
761
762 (defface sh-heredoc-face
763 '((((class color)
764 (background dark))
765 (:foreground "yellow" :bold t))
766 (((class color)
767 (background light))
768 (:foreground "tan" ))
769 (t
770 (:bold t)))
771 "Face to show a here-document"
772 :group 'sh-indentation)
773 (defvar sh-heredoc-face 'sh-heredoc-face)
774
775
776 (defvar sh-font-lock-keywords
777 '((csh eval sh-append shell
778 '("\\${?[#?]?\\([A-Za-z_][A-Za-z0-9_]*\\|0\\)" 1
779 font-lock-variable-name-face))
780
781 (es eval sh-append executable-font-lock-keywords
782 '("\\$#?\\([A-Za-z_][A-Za-z0-9_]*\\|[0-9]+\\)" 1
783 font-lock-variable-name-face))
784
785 (rc eval identity es)
786
787 (sh eval sh-append shell
788 ;; Variable names.
789 '("\\$\\({#?\\)?\\([A-Za-z_][A-Za-z0-9_]*\\|[-#?@!]\\)" 2
790 font-lock-variable-name-face)
791 ;; Function names.
792 '("^\\(\\sw+\\)[ \t]*(" 1 font-lock-function-name-face)
793 '("\\<\\(function\\)\\>[ \t]*\\(\\sw+\\)?"
794 (1 font-lock-keyword-face) (2 font-lock-function-name-face nil t)))
795
796 ;; The next entry is only used for defining the others
797 (shell eval sh-append executable-font-lock-keywords
798 '("\\\\[^A-Za-z0-9]" 0 font-lock-string-face)
799 '("\\${?\\([A-Za-z_][A-Za-z0-9_]*\\|[0-9]+\\|[$*_]\\)" 1
800 font-lock-variable-name-face))
801 (rpm eval sh-append rpm2
802 '("%{?\\(\\sw+\\)" 1 font-lock-keyword-face))
803 (rpm2 eval sh-append shell
804 '("^\\(\\sw+\\):" 1 font-lock-variable-name-face)))
805 "Default expressions to highlight in Shell Script modes. See `sh-feature'.")
806
807 (defvar sh-font-lock-keywords-1
808 '((sh "[ \t]in\\>"))
809 "Subdued level highlighting for Shell Script modes.")
810
811 (defvar sh-font-lock-keywords-2 ()
812 "Gaudy level highlighting for Shell Script modes.")
813
814 ;; These are used for the syntax table stuff (derived from cperl-mode).
815 ;; Note: parse-sexp-lookup-properties must be set to t for it to work.
816 (defconst sh-st-punc (string-to-syntax "."))
817 (defconst sh-here-doc-syntax (string-to-syntax "|")) ;; generic string
818
819 (defun sh-font-lock-heredoc (start string quoted)
820 "Determine the syntax of the \\n after a <<HEREDOC."
821 (unless (sh-in-comment-or-string start)
822 ;; We're looking at <<STRING, so we add "^STRING$" to the syntactic
823 ;; font-lock keywords to detect the end of this here document.
824 (let ((ere (concat
825 "^" (if quoted "[ \t]*")
826 (regexp-quote (replace-regexp-in-string "['\"]" "" string))
827 "\\(\n\\)")))
828 (unless (assoc ere font-lock-syntactic-keywords)
829 (let* ( ;; A rough regexp that should find us back.
830 (sre (concat "<<\\(-\\)?\\s-*['\"]?"
831 (regexp-quote string) "['\"]?[ \t\n]"))
832 (code `(cond
833 ((save-excursion (re-search-backward ,sre nil t))
834 ;; This ^STRING$ is indeed following a <<STRING
835 sh-here-doc-syntax)
836 ((not (save-excursion (re-search-forward ,sre nil t)))
837 ;; There's no <<STRING either before or after us,
838 ;; so we should remove this now obsolete entry.
839 (setq font-lock-syntactic-keywords
840 (delq (assoc ,ere font-lock-syntactic-keywords)
841 font-lock-syntactic-keywords))
842 nil))))
843 ;; Use destructive update so the new keyword gets used right away.
844 (setq font-lock-syntactic-keywords
845 (nconc font-lock-syntactic-keywords
846 (list (font-lock-compile-keyword `(,ere 1 ,code))))))))
847 sh-here-doc-syntax))
848
849 (defun sh-font-lock-paren (start)
850 (save-excursion
851 (goto-char start)
852 ;; Skip through all patterns
853 (while
854 (progn
855 (forward-comment (- (point-max)))
856 ;; Skip through one pattern
857 (while
858 (or (/= 0 (skip-syntax-backward "w_"))
859 (/= 0 (skip-chars-backward "?*/"))
860 (when (memq (char-before) '(?\" ?\'))
861 (condition-case nil (progn (backward-sexp 1) t)
862 (error nil)))))
863 (forward-comment (- (point-max)))
864 (when (eq (char-before) ?|)
865 (backward-char 1) t)))
866 (when (save-excursion (backward-char 2) (looking-at ";;\\|in"))
867 sh-st-punc)))
868
869 (defconst sh-font-lock-syntactic-keywords
870 ;; Mark a `#' character as having punctuation syntax in a variable reference.
871 ;; Really we should do this properly. From Chet Ramey and Brian Fox:
872 ;; "A `#' begins a comment when it is unquoted and at the beginning of a
873 ;; word. In the shell, words are separated by metacharacters."
874 ;; To do this in a regexp would be slow as it would be anchored to the right.
875 ;; But I can't be bothered to write a function to do it properly and
876 ;; efficiently. So we only do it properly for `#' in variable references and
877 ;; do it efficiently by anchoring the regexp to the left.
878 `(("\\${?[^}#\n\t ]*\\(##?\\)" 1 ,sh-st-punc)
879 ;; Find HEREDOC starters and add a corresponding rule for the ender.
880 ("[^<>]<<\\(-\\)?\\s-*\\(\\(['\"][^'\"]+['\"]\\|\\sw\\|\\s_\\)+\\).*\\(\n\\)"
881 4 (sh-font-lock-heredoc
882 (match-beginning 0) (match-string 2) (match-end 1)))
883 ;; Distinguish the special close-paren in `case'.
884 (")" 0 (sh-font-lock-paren (match-beginning 0)))))
885
886 (defun sh-font-lock-syntactic-face-function (state)
887 (if (nth 3 state)
888 (if (char-valid-p (nth 3 state))
889 font-lock-string-face
890 sh-heredoc-face)
891 font-lock-comment-face))
892
893 (defgroup sh-indentation nil
894 "Variables controlling indentation in shell scripts.
895
896 Note: customizing these variables will not affect existing buffers if
897 `sh-make-vars-local' is no-nil. See the documentation for
898 variable `sh-make-vars-local', command `sh-make-vars-local'
899 and command `sh-reset-indent-vars-to-global-values'."
900 :group 'sh-script)
901
902
903 (defcustom sh-set-shell-hook nil
904 "*Hook run by `sh-set-shell'."
905 :type 'hook
906 :group 'sh-script)
907
908 (defcustom sh-mode-hook nil
909 "*Hook run by `sh-mode'."
910 :type 'hook
911 :group 'sh-script)
912
913 (defcustom sh-learn-basic-offset nil
914 "*When `sh-guess-basic-offset' should learn `sh-basic-offset'.
915
916 nil mean: never.
917 t means: only if there seems to be an obvious value.
918 Anything else means: whenever we have a \"good guess\" as to the value."
919 :type '(choice
920 (const :tag "Never" nil)
921 (const :tag "Only if sure" t)
922 (const :tag "If have a good guess" usually))
923 :group 'sh-indentation)
924
925 (defcustom sh-popup-occur-buffer nil
926 "*Controls when `sh-learn-buffer-indent' pops the *indent* buffer.
927 If t it is always shown. If nil, it is shown only when there
928 are conflicts."
929 :type '(choice
930 (const :tag "Only when there are conflicts." nil)
931 (const :tag "Always" t))
932 :group 'sh-indentation)
933
934 (defcustom sh-blink t
935 "*If non-nil, `sh-show-indent' shows the line indentation is relative to.
936 The position on the line is not necessarily meaningful.
937 In some cases the line will be the matching keyword, but this is not
938 always the case."
939 :type 'boolean
940 :group 'sh-indentation)
941
942 (defcustom sh-first-lines-indent 0
943 "*The indentation of the first non-blank non-comment line.
944 Usually 0 meaning first column.
945 Can be set to a number, or to nil which means leave it as is."
946 :type '(choice
947 (const :tag "Leave as is" nil)
948 (integer :tag "Column number"
949 :menu-tag "Indent to this col (0 means first col)" ))
950 :group 'sh-indentation)
951
952
953 (defcustom sh-basic-offset 4
954 "*The default indentation increment.
955 This value is used for the + and - symbols in an indentation variable."
956 :type 'integer
957 :group 'sh-indentation)
958
959 (defcustom sh-indent-comment nil
960 "*How a comment line is to be indented.
961 nil means leave it as it is;
962 t means indent it as a normal line, aligning it to previous non-blank
963 non-comment line;
964 a number means align to that column, e.g. 0 means fist column."
965 :type '(choice
966 (const :tag "Leave as is." nil)
967 (const :tag "Indent as a normal line." t)
968 (integer :menu-tag "Indent to this col (0 means first col)."
969 :tag "Indent to column number.") )
970 :group 'sh-indentation)
971
972
973 (defvar sh-debug nil
974 "Enable lots of debug messages - if function `sh-debug' is enabled.")
975
976
977 ;; Uncomment this defun and comment the defmacro for debugging.
978 ;; (defun sh-debug (&rest args)
979 ;; "For debugging: display message ARGS if variable SH-DEBUG is non-nil."
980 ;; (if sh-debug
981 ;; (apply 'message args)))
982 (defmacro sh-debug (&rest args))
983
984 (defconst sh-symbol-list
985 '((const :tag "+ " :value +
986 :menu-tag "+ Indent right by sh-basic-offset")
987 (const :tag "- " :value -
988 :menu-tag "- Indent left by sh-basic-offset")
989 (const :tag "++" :value ++
990 :menu-tag "++ Indent right twice sh-basic-offset")
991 (const :tag "--" :value --
992 :menu-tag "-- Indent left twice sh-basic-offset")
993 (const :tag "* " :value *
994 :menu-tag "* Indent right half sh-basic-offset")
995 (const :tag "/ " :value /
996 :menu-tag "/ Indent left half sh-basic-offset")))
997
998 (defcustom sh-indent-for-else 0
999 "*How much to indent an else relative to an if. Usually 0."
1000 :type `(choice
1001 (integer :menu-tag "A number (positive=>indent right)"
1002 :tag "A number")
1003 (const :tag "--") ;; separator!
1004 ,@ sh-symbol-list
1005 )
1006 :group 'sh-indentation)
1007
1008 (defconst sh-number-or-symbol-list
1009 (append '((integer :menu-tag "A number (positive=>indent right)"
1010 :tag "A number")
1011 (const :tag "--")) ; separator
1012 sh-symbol-list))
1013
1014 (defcustom sh-indent-for-fi 0
1015 "*How much to indent a fi relative to an if. Usually 0."
1016 :type `(choice ,@ sh-number-or-symbol-list )
1017 :group 'sh-indentation)
1018
1019 (defcustom sh-indent-for-done '0
1020 "*How much to indent a done relative to its matching stmt. Usually 0."
1021 :type `(choice ,@ sh-number-or-symbol-list )
1022 :group 'sh-indentation)
1023
1024 (defcustom sh-indent-after-else '+
1025 "*How much to indent a statement after an else statement."
1026 :type `(choice ,@ sh-number-or-symbol-list )
1027 :group 'sh-indentation)
1028
1029 (defcustom sh-indent-after-if '+
1030 "*How much to indent a statement after an if statement.
1031 This includes lines after else and elif statements, too, but
1032 does not affect then else elif or fi statements themselves."
1033 :type `(choice ,@ sh-number-or-symbol-list )
1034 :group 'sh-indentation)
1035
1036 (defcustom sh-indent-for-then '+
1037 "*How much to indent an then relative to an if."
1038 :type `(choice ,@ sh-number-or-symbol-list )
1039 :group 'sh-indentation)
1040
1041 (defcustom sh-indent-for-do '*
1042 "*How much to indent a do statement.
1043 This is relative to the statement before the do, i.e. the
1044 while until or for statement."
1045 :type `(choice ,@ sh-number-or-symbol-list)
1046 :group 'sh-indentation)
1047
1048 (defcustom sh-indent-after-do '*
1049 "*How much to indent a line after a do statement.
1050 This is used when the do is the first word of the line.
1051 This is relative to the statement before the do, e.g. a
1052 while for repeat or select statement."
1053 :type `(choice ,@ sh-number-or-symbol-list)
1054 :group 'sh-indentation)
1055
1056 (defcustom sh-indent-after-loop-construct '+
1057 "*How much to indent a statement after a loop construct.
1058
1059 This variable is used when the keyword \"do\" is on the same line as the
1060 loop statement (e.g. \"until\", \"while\" or \"for\").
1061 If the do is on a line by itself, then `sh-indent-after-do' is used instead."
1062 :type `(choice ,@ sh-number-or-symbol-list)
1063 :group 'sh-indentation)
1064
1065
1066 (defcustom sh-indent-after-done 0
1067 "*How much to indent a statement after a \"done\" keyword.
1068 Normally this is 0, which aligns the \"done\" to the matching
1069 looping construct line.
1070 Setting it non-zero allows you to have the \"do\" statement on a line
1071 by itself and align the done under to do."
1072 :type `(choice ,@ sh-number-or-symbol-list)
1073 :group 'sh-indentation)
1074
1075 (defcustom sh-indent-for-case-label '+
1076 "*How much to indent a case label statement.
1077 This is relative to the line containing the case statement."
1078 :type `(choice ,@ sh-number-or-symbol-list)
1079 :group 'sh-indentation)
1080
1081 (defcustom sh-indent-for-case-alt '++
1082 "*How much to indent statements after the case label.
1083 This is relative to the line containing the case statement."
1084 :type `(choice ,@ sh-number-or-symbol-list)
1085 :group 'sh-indentation)
1086
1087
1088 (defcustom sh-indent-for-continuation '+
1089 "*How much to indent for a continuation statement."
1090 :type `(choice ,@ sh-number-or-symbol-list)
1091 :group 'sh-indentation)
1092
1093 (defcustom sh-indent-after-open '+
1094 "*How much to indent after a line with an opening parenthesis or brace.
1095 For an open paren after a function `sh-indent-after-function' is used."
1096 :type `(choice ,@ sh-number-or-symbol-list)
1097 :group 'sh-indentation)
1098
1099 (defcustom sh-indent-after-function '+
1100 "*How much to indent after a function line."
1101 :type `(choice ,@ sh-number-or-symbol-list)
1102 :group 'sh-indentation)
1103
1104 ;; These 2 are for the rc shell:
1105
1106 (defcustom sh-indent-after-switch '+
1107 "*How much to indent a case statement relative to the switch statement.
1108 This is for the rc shell."
1109 :type `(choice ,@ sh-number-or-symbol-list)
1110 :group 'sh-indentation)
1111
1112 (defcustom sh-indent-after-case '+
1113 "*How much to indent a statement relative to the case statement.
1114 This is for the rc shell."
1115 :type `(choice ,@ sh-number-or-symbol-list)
1116 :group 'sh-indentation)
1117
1118 ;; Internal use - not designed to be changed by the user:
1119
1120 (defun sh-mkword-regexpr (word)
1121 "Make a regexp which matches WORD as a word.
1122 This specifically excludes an occurrence of WORD followed by
1123 punctuation characters like '-'."
1124 (concat word "\\([^-a-z0-9_]\\|$\\)"))
1125
1126 (defconst sh-re-done (sh-mkword-regexpr "done"))
1127
1128
1129 (defconst sh-kws-for-done
1130 '((sh . ( "while" "until" "for" ) )
1131 (bash . ( "while" "until" "for" "select" ) )
1132 (ksh88 . ( "while" "until" "for" "select" ) )
1133 (zsh . ( "while" "until" "for" "repeat" "select" ) ) )
1134 "Which keywords can match the word `done' in this shell.")
1135
1136
1137 (defconst sh-indent-supported
1138 '((sh . t)
1139 (csh . nil)
1140 (rc . t))
1141 "Shell types that shell indenting can do something with.")
1142
1143 (defvar sh-indent-supported-here nil
1144 "Non-nil if we support indentation for the current buffer's shell type.")
1145
1146 (defconst sh-electric-rparen-needed
1147 '((sh . t))
1148 "Non-nil if the shell type needs an electric handling of case alternatives.")
1149
1150 (defconst sh-var-list
1151 '(
1152 sh-basic-offset sh-first-lines-indent sh-indent-after-case
1153 sh-indent-after-do sh-indent-after-done
1154 sh-indent-after-else
1155 sh-indent-after-if
1156 sh-indent-after-loop-construct
1157 sh-indent-after-open
1158 sh-indent-comment
1159 sh-indent-for-case-alt
1160 sh-indent-for-case-label
1161 sh-indent-for-continuation
1162 sh-indent-for-do
1163 sh-indent-for-done
1164 sh-indent-for-else
1165 sh-indent-for-fi
1166 sh-indent-for-then
1167 )
1168 "A list of variables used by script mode to control indentation.
1169 This list is used when switching between buffer-local and global
1170 values of variables, and for the commands using indentation styles.")
1171
1172 (defvar sh-make-vars-local t
1173 "*Controls whether indentation variables are local to the buffer.
1174 If non-nil, indentation variables are made local initially.
1175 If nil, you can later make the variables local by invoking
1176 command `sh-make-vars-local'.
1177 The default is t because I assume that in one Emacs session one is
1178 frequently editing existing scripts with different styles.")
1179
1180 \f
1181 ;; mode-command and utility functions
1182
1183 ;;;###autoload
1184 (put 'sh-mode 'mode-class 'special)
1185
1186 ;;;###autoload
1187 (define-derived-mode sh-mode nil "Shell-script"
1188 "Major mode for editing shell scripts.
1189 This mode works for many shells, since they all have roughly the same syntax,
1190 as far as commands, arguments, variables, pipes, comments etc. are concerned.
1191 Unless the file's magic number indicates the shell, your usual shell is
1192 assumed. Since filenames rarely give a clue, they are not further analyzed.
1193
1194 This mode adapts to the variations between shells (see `sh-set-shell') by
1195 means of an inheritance based feature lookup (see `sh-feature'). This
1196 mechanism applies to all variables (including skeletons) that pertain to
1197 shell-specific features.
1198
1199 The default style of this mode is that of Rosenblatt's Korn shell book.
1200 The syntax of the statements varies with the shell being used. The
1201 following commands are available, based on the current shell's syntax:
1202
1203 \\[sh-case] case statement
1204 \\[sh-for] for loop
1205 \\[sh-function] function definition
1206 \\[sh-if] if statement
1207 \\[sh-indexed-loop] indexed loop from 1 to n
1208 \\[sh-while-getopts] while getopts loop
1209 \\[sh-repeat] repeat loop
1210 \\[sh-select] select loop
1211 \\[sh-until] until loop
1212 \\[sh-while] while loop
1213
1214 For sh and rc shells indentation commands are:
1215 \\[sh-show-indent] Show the variable controlling this line's indentation.
1216 \\[sh-set-indent] Set then variable controlling this line's indentation.
1217 \\[sh-learn-line-indent] Change the indentation variable so this line
1218 would indent to the way it currently is.
1219 \\[sh-learn-buffer-indent] Set the indentation variables so the
1220 buffer indents as it currently is indented.
1221
1222
1223 \\[backward-delete-char-untabify] Delete backward one position, even if it was a tab.
1224 \\[sh-newline-and-indent] Delete unquoted space and indent new line same as this one.
1225 \\[sh-end-of-command] Go to end of successive commands.
1226 \\[sh-beginning-of-command] Go to beginning of successive commands.
1227 \\[sh-set-shell] Set this buffer's shell, and maybe its magic number.
1228 \\[sh-execute-region] Have optional header and region be executed in a subshell.
1229
1230 \\[sh-maybe-here-document] Without prefix, following an unquoted < inserts here document.
1231 {, (, [, ', \", `
1232 Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``.
1233
1234 If you generally program a shell different from your login shell you can
1235 set `sh-shell-file' accordingly. If your shell's file name doesn't correctly
1236 indicate what shell it is use `sh-alias-alist' to translate.
1237
1238 If your shell gives error messages with line numbers, you can use \\[executable-interpret]
1239 with your script for an edit-interpret-debug cycle."
1240 (make-local-variable 'skeleton-end-hook)
1241 (make-local-variable 'paragraph-start)
1242 (make-local-variable 'paragraph-separate)
1243 (make-local-variable 'comment-start)
1244 (make-local-variable 'comment-start-skip)
1245 (make-local-variable 'require-final-newline)
1246 (make-local-variable 'sh-header-marker)
1247 (make-local-variable 'sh-shell-file)
1248 (make-local-variable 'sh-shell)
1249 (make-local-variable 'skeleton-pair-alist)
1250 (make-local-variable 'skeleton-pair-filter)
1251 (make-local-variable 'comint-dynamic-complete-functions)
1252 (make-local-variable 'comint-prompt-regexp)
1253 (make-local-variable 'font-lock-defaults)
1254 (make-local-variable 'skeleton-filter)
1255 (make-local-variable 'skeleton-newline-indent-rigidly)
1256 (make-local-variable 'sh-shell-variables)
1257 (make-local-variable 'sh-shell-variables-initialized)
1258 (make-local-variable 'imenu-generic-expression)
1259 (make-local-variable 'sh-indent-supported-here)
1260 (make-local-variable 'font-lock-unfontify-region-function)
1261 (setq skeleton-end-hook (lambda ()
1262 (or (eolp) (newline) (indent-relative)))
1263 paragraph-start (concat page-delimiter "\\|$")
1264 paragraph-separate paragraph-start
1265 comment-start "# "
1266 comint-dynamic-complete-functions sh-dynamic-complete-functions
1267 ;; we can't look if previous line ended with `\'
1268 comint-prompt-regexp "^[ \t]*"
1269 font-lock-defaults
1270 `((sh-font-lock-keywords
1271 sh-font-lock-keywords-1 sh-font-lock-keywords-2)
1272 nil nil
1273 ((?/ . "w") (?~ . "w") (?. . "w") (?- . "w") (?_ . "w")) nil
1274 (font-lock-syntactic-keywords
1275 ;; Copy so we can use destructive update in `sh-font-lock-heredoc'.
1276 . ,(copy-sequence sh-font-lock-syntactic-keywords))
1277 (font-lock-syntactic-face-function
1278 . sh-font-lock-syntactic-face-function))
1279 skeleton-pair-alist '((?` _ ?`))
1280 skeleton-pair-filter 'sh-quoted-p
1281 skeleton-further-elements '((< '(- (min sh-indentation
1282 (current-column)))))
1283 skeleton-filter 'sh-feature
1284 skeleton-newline-indent-rigidly t
1285 sh-indent-supported-here nil)
1286 (set (make-local-variable 'parse-sexp-ignore-comments) t)
1287 ;; Parse or insert magic number for exec, and set all variables depending
1288 ;; on the shell thus determined.
1289 (let ((interpreter
1290 (save-excursion
1291 (goto-char (point-min))
1292 (cond ((looking-at "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)")
1293 (match-string 2))
1294 ((and buffer-file-name
1295 (string-match "\\.m?spec$" buffer-file-name))
1296 "rpm")))))
1297 (sh-set-shell (or interpreter sh-shell-file) nil nil)))
1298
1299 ;;;###autoload
1300 (defalias 'shell-script-mode 'sh-mode)
1301
1302
1303 (defun sh-font-lock-keywords (&optional keywords)
1304 "Function to get simple fontification based on `sh-font-lock-keywords'.
1305 This adds rules for comments and assignments."
1306 (sh-feature sh-font-lock-keywords
1307 (when (stringp (sh-feature sh-assignment-regexp))
1308 (lambda (list)
1309 `((,(sh-feature sh-assignment-regexp)
1310 1 font-lock-variable-name-face)
1311 ,@keywords
1312 ,@list)))))
1313
1314 (defun sh-font-lock-keywords-1 (&optional builtins)
1315 "Function to get better fontification including keywords."
1316 (let ((keywords (concat "\\([;(){}`|&]\\|^\\)[ \t]*\\(\\(\\("
1317 (mapconcat 'identity
1318 (sh-feature sh-leading-keywords)
1319 "\\|")
1320 "\\)[ \t]+\\)?\\("
1321 (mapconcat 'identity
1322 (append (sh-feature sh-leading-keywords)
1323 (sh-feature sh-other-keywords))
1324 "\\|")
1325 "\\)")))
1326 (sh-font-lock-keywords
1327 `(,@(if builtins
1328 `((,(concat keywords "[ \t]+\\)?\\("
1329 (mapconcat 'identity (sh-feature sh-builtins) "\\|")
1330 "\\)\\>")
1331 (2 font-lock-keyword-face nil t)
1332 (6 font-lock-builtin-face))
1333 ,@(sh-feature sh-font-lock-keywords-2)))
1334 (,(concat keywords "\\)\\>")
1335 2 font-lock-keyword-face)
1336 ,@(sh-feature sh-font-lock-keywords-1)))))
1337
1338 (defun sh-font-lock-keywords-2 ()
1339 "Function to get better fontification including keywords and builtins."
1340 (sh-font-lock-keywords-1 t))
1341
1342
1343 (defvar sh-regexp-for-done nil
1344 "A buffer-local regexp to match opening keyword for done.")
1345
1346 (defvar sh-kw-alist nil
1347 "A buffer-local, since it is shell-type dependent, list of keywords.")
1348
1349 ;; ( key-word first-on-this on-prev-line )
1350 ;; This is used to set `sh-kw-alist' which is a list of sublists each
1351 ;; having 3 elements:
1352 ;; a keyword
1353 ;; a rule to check when the keyword appears on "this" line
1354 ;; a rule to check when the keyword appears on "the previous" line
1355 ;; The keyword is usually a string and is the first word on a line.
1356 ;; If this keyword appears on the line whose indentation is to be
1357 ;; calculated, the rule in element 2 is called. If this returns
1358 ;; non-zero, the resulting point (which may be changed by the rule)
1359 ;; is used as the default indentation.
1360 ;; If it returned false or the keyword was not found in the table,
1361 ;; then the keyword from the previous line is looked up and the rule
1362 ;; in element 3 is called. In this case, however,
1363 ;; `sh-get-indent-info' does not stop but may keep going and test
1364 ;; other keywords against rules in element 3. This is because the
1365 ;; preceding line could have, for example, an opening "if" and an
1366 ;; opening "while" keyword and we need to add the indentation offsets
1367 ;; for both.
1368 ;;
1369 (defconst sh-kw
1370 '((sh
1371 ("if" nil sh-handle-prev-if)
1372 ("elif" sh-handle-this-else sh-handle-prev-else)
1373 ("else" sh-handle-this-else sh-handle-prev-else)
1374 ("fi" sh-handle-this-fi sh-handle-prev-fi)
1375 ("then" sh-handle-this-then sh-handle-prev-then)
1376 ("(" nil sh-handle-prev-open)
1377 ("{" nil sh-handle-prev-open)
1378 ("[" nil sh-handle-prev-open)
1379 ("}" sh-handle-this-close nil)
1380 (")" sh-handle-this-close nil)
1381 ("]" sh-handle-this-close nil)
1382 ("case" nil sh-handle-prev-case)
1383 ("esac" sh-handle-this-esac sh-handle-prev-esac)
1384 (case-label nil sh-handle-after-case-label) ;; ???
1385 (";;" nil sh-handle-prev-case-alt-end) ;; ???
1386 ("done" sh-handle-this-done sh-handle-prev-done)
1387 ("do" sh-handle-this-do sh-handle-prev-do))
1388
1389 ;; Note: we don't need specific stuff for bash and zsh shells;
1390 ;; the regexp `sh-regexp-for-done' handles the extra keywords
1391 ;; these shells use.
1392 (rc
1393 ("{" nil sh-handle-prev-open)
1394 ("}" sh-handle-this-close nil)
1395 ("case" sh-handle-this-rc-case sh-handle-prev-rc-case))))
1396
1397
1398 (defun sh-set-shell (shell &optional no-query-flag insert-flag)
1399 "Set this buffer's shell to SHELL (a string).
1400 Makes this script executable via `executable-set-magic', and sets up the
1401 proper starting #!-line, if INSERT-FLAG is non-nil.
1402 Calls the value of `sh-set-shell-hook' if set."
1403 (interactive (list (completing-read "Name or path of shell: "
1404 interpreter-mode-alist
1405 (lambda (x) (eq (cdr x) 'sh-mode)))
1406 (eq executable-query 'function)
1407 t))
1408 (if (string-match "\\.exe\\'" shell)
1409 (setq shell (substring shell 0 (match-beginning 0))))
1410 (setq sh-shell (intern (file-name-nondirectory shell))
1411 sh-shell (or (cdr (assq sh-shell sh-alias-alist))
1412 sh-shell))
1413 (if insert-flag
1414 (setq sh-shell-file
1415 (executable-set-magic shell (sh-feature sh-shell-arg)
1416 no-query-flag insert-flag)))
1417 (setq require-final-newline (sh-feature sh-require-final-newline)
1418 ;;; local-abbrev-table (sh-feature sh-abbrevs)
1419 comment-start-skip "#+[\t ]*"
1420 mode-line-process (format "[%s]" sh-shell)
1421 sh-shell-variables nil
1422 sh-shell-variables-initialized nil
1423 imenu-generic-expression (sh-feature sh-imenu-generic-expression)
1424 imenu-case-fold-search nil)
1425 (dolist (var (sh-feature sh-variables))
1426 (sh-remember-variable var))
1427 (make-local-variable 'indent-line-function)
1428 (if (setq sh-indent-supported-here (sh-feature sh-indent-supported))
1429 (progn
1430 (message "Setting up indent for shell type %s" sh-shell)
1431 (set (make-local-variable 'parse-sexp-lookup-properties) t)
1432 (set (make-local-variable 'sh-kw-alist) (sh-feature sh-kw))
1433 (let ((regexp (sh-feature sh-kws-for-done)))
1434 (if regexp
1435 (set (make-local-variable 'sh-regexp-for-done)
1436 (sh-mkword-regexpr (regexp-opt regexp t)))))
1437 (message "setting up indent stuff")
1438 ;; sh-mode has already made indent-line-function local
1439 ;; but do it in case this is called before that.
1440 (setq indent-line-function 'sh-indent-line)
1441 (if sh-make-vars-local
1442 (sh-make-vars-local))
1443 (message "Indentation setup for shell type %s" sh-shell))
1444 (message "No indentation for this shell type.")
1445 (setq indent-line-function 'sh-basic-indent-line))
1446 (run-hooks 'sh-set-shell-hook))
1447
1448
1449
1450 (defun sh-feature (list &optional function)
1451 "Index ALIST by the current shell.
1452 If ALIST isn't a list where every element is a cons, it is returned as is.
1453 Else indexing follows an inheritance logic which works in two ways:
1454
1455 - Fall back on successive ancestors (see `sh-ancestor-alist') as long as
1456 the alist contains no value for the current shell.
1457 The ultimate default is always `sh'.
1458
1459 - If the value thus looked up is a list starting with `eval' its `cdr' is
1460 first evaluated. If that is also a list and the first argument is a
1461 symbol in ALIST it is not evaluated, but rather recursively looked up in
1462 ALIST to allow the function called to define the value for one shell to be
1463 derived from another shell. While calling the function, is the car of the
1464 alist element is the current shell.
1465 The value thus determined is physically replaced into the alist.
1466
1467 Optional FUNCTION is applied to the determined value and the result is cached
1468 in ALIST."
1469 (or (if (consp list)
1470 (let ((l list))
1471 (while (and l (consp (car l)))
1472 (setq l (cdr l)))
1473 (if l list)))
1474 (if function
1475 (cdr (assoc (setq function (cons sh-shell function)) list)))
1476 (let ((sh-shell sh-shell)
1477 elt val)
1478 (while (and sh-shell
1479 (not (setq elt (assq sh-shell list))))
1480 (setq sh-shell (cdr (assq sh-shell sh-ancestor-alist))))
1481 ;; If the shell is not known, treat it as sh.
1482 (unless elt
1483 (setq elt (assq 'sh list)))
1484 (if (and (consp (setq val (cdr elt)))
1485 (eq (car val) 'eval))
1486 (setcdr elt
1487 (setq val
1488 (eval (if (consp (setq val (cdr val)))
1489 (let ((sh-shell (car (cdr val)))
1490 function)
1491 (if (assq sh-shell list)
1492 (setcar (cdr val)
1493 (list 'quote
1494 (sh-feature list))))
1495 val)
1496 val)))))
1497 (if function
1498 (nconc list
1499 (list (cons function
1500 (setq sh-shell (car function)
1501 val (funcall (cdr function) val))))))
1502 val)))
1503
1504
1505
1506 ;;; I commented this out because nobody calls it -- rms.
1507 ;;;(defun sh-abbrevs (ancestor &rest list)
1508 ;;; "Iff it isn't, define the current shell as abbrev table and fill that.
1509 ;;;Abbrev table will inherit all abbrevs from ANCESTOR, which is either an abbrev
1510 ;;;table or a list of (NAME1 EXPANSION1 ...). In addition it will define abbrevs
1511 ;;;according to the remaining arguments NAMEi EXPANSIONi ...
1512 ;;;EXPANSION may be either a string or a skeleton command."
1513 ;;; (or (if (boundp sh-shell)
1514 ;;; (symbol-value sh-shell))
1515 ;;; (progn
1516 ;;; (if (listp ancestor)
1517 ;;; (nconc list ancestor))
1518 ;;; (define-abbrev-table sh-shell ())
1519 ;;; (if (vectorp ancestor)
1520 ;;; (mapatoms (lambda (atom)
1521 ;;; (or (eq atom 0)
1522 ;;; (define-abbrev (symbol-value sh-shell)
1523 ;;; (symbol-name atom)
1524 ;;; (symbol-value atom)
1525 ;;; (symbol-function atom))))
1526 ;;; ancestor))
1527 ;;; (while list
1528 ;;; (define-abbrev (symbol-value sh-shell)
1529 ;;; (car list)
1530 ;;; (if (stringp (car (cdr list)))
1531 ;;; (car (cdr list))
1532 ;;; "")
1533 ;;; (if (symbolp (car (cdr list)))
1534 ;;; (car (cdr list))))
1535 ;;; (setq list (cdr (cdr list)))))
1536 ;;; (symbol-value sh-shell)))
1537
1538
1539 (defun sh-append (ancestor &rest list)
1540 "Return list composed of first argument (a list) physically appended to rest."
1541 (nconc list ancestor))
1542
1543
1544 (defun sh-modify (skeleton &rest list)
1545 "Modify a copy of SKELETON by replacing I1 with REPL1, I2 with REPL2 ..."
1546 (setq skeleton (copy-sequence skeleton))
1547 (while list
1548 (setcar (or (nthcdr (car list) skeleton)
1549 (error "Index %d out of bounds" (car list)))
1550 (car (cdr list)))
1551 (setq list (nthcdr 2 list)))
1552 skeleton)
1553
1554
1555 (defun sh-basic-indent-line ()
1556 "Indent a line for Sh mode (shell script mode).
1557 Indent as far as preceding non-empty line, then by steps of `sh-indentation'.
1558 Lines containing only comments are considered empty."
1559 (interactive)
1560 (let ((previous (save-excursion
1561 (while (and (progn (beginning-of-line)
1562 (not (bobp)))
1563 (progn
1564 (forward-line -1)
1565 (back-to-indentation)
1566 (or (eolp)
1567 (eq (following-char) ?#)))))
1568 (current-column)))
1569 current)
1570 (save-excursion
1571 (indent-to (if (eq this-command 'newline-and-indent)
1572 previous
1573 (if (< (current-column)
1574 (setq current (progn (back-to-indentation)
1575 (current-column))))
1576 (if (eolp) previous 0)
1577 (delete-region (point)
1578 (progn (beginning-of-line) (point)))
1579 (if (eolp)
1580 (max previous (* (1+ (/ current sh-indentation))
1581 sh-indentation))
1582 (* (1+ (/ current sh-indentation)) sh-indentation))))))
1583 (if (< (current-column) (current-indentation))
1584 (skip-chars-forward " \t"))))
1585
1586
1587 (defun sh-execute-region (start end &optional flag)
1588 "Pass optional header and region to a subshell for noninteractive execution.
1589 The working directory is that of the buffer, and only environment variables
1590 are already set which is why you can mark a header within the script.
1591
1592 With a positive prefix ARG, instead of sending region, define header from
1593 beginning of buffer to point. With a negative prefix ARG, instead of sending
1594 region, clear header."
1595 (interactive "r\nP")
1596 (if flag
1597 (setq sh-header-marker (if (> (prefix-numeric-value flag) 0)
1598 (point-marker)))
1599 (if sh-header-marker
1600 (save-excursion
1601 (let (buffer-undo-list)
1602 (goto-char sh-header-marker)
1603 (append-to-buffer (current-buffer) start end)
1604 (shell-command-on-region (point-min)
1605 (setq end (+ sh-header-marker
1606 (- end start)))
1607 sh-shell-file)
1608 (delete-region sh-header-marker end)))
1609 (shell-command-on-region start end (concat sh-shell-file " -")))))
1610
1611
1612 (defun sh-remember-variable (var)
1613 "Make VARIABLE available for future completing reads in this buffer."
1614 (or (< (length var) sh-remember-variable-min)
1615 (getenv var)
1616 (assoc var sh-shell-variables)
1617 (push (cons var var) sh-shell-variables))
1618 var)
1619
1620
1621
1622 (defun sh-quoted-p ()
1623 "Is point preceded by an odd number of backslashes?"
1624 (eq -1 (% (save-excursion (skip-chars-backward "\\\\")) 2)))
1625 \f
1626 ;; Indentation stuff.
1627 (defun sh-must-be-shell-mode ()
1628 "Signal an error if not in Shell-script mode."
1629 (unless (eq major-mode 'sh-mode)
1630 (error "This buffer is not in Shell-script mode")))
1631
1632 (defun sh-must-support-indent ()
1633 "*Signal an error if the shell type for this buffer is not supported.
1634 Also, the buffer must be in Shell-script mode."
1635 (sh-must-be-shell-mode)
1636 (unless sh-indent-supported-here
1637 (error "This buffer's shell type is not supported for this command")))
1638
1639 (defun sh-make-vars-local ()
1640 "Make the indentation variables local to this buffer.
1641 Normally they already are local. This command is provided in case
1642 variable `sh-make-vars-local' has been set to nil.
1643
1644 To revert all these variables to the global values, use
1645 command `sh-reset-indent-vars-to-global-values'."
1646 (interactive)
1647 (sh-must-be-shell-mode)
1648 (mapcar 'make-local-variable sh-var-list)
1649 (message "Indentation variable are now local."))
1650
1651 (defun sh-reset-indent-vars-to-global-values ()
1652 "Reset local indentation variables to the global values.
1653 Then, if variable `sh-make-vars-local' is non-nil, make them local."
1654 (interactive)
1655 (sh-must-be-shell-mode)
1656 (mapcar 'kill-local-variable sh-var-list)
1657 (if sh-make-vars-local
1658 (mapcar 'make-local-variable sh-var-list)))
1659
1660
1661 ;; Theoretically these are only needed in shell and derived modes.
1662 ;; However, the routines which use them are only called in those modes.
1663 (defconst sh-special-keywords "then\\|do")
1664
1665 (defun sh-help-string-for-variable (var)
1666 "Construct a string for `sh-read-variable' when changing variable VAR ."
1667 (let ((msg (documentation-property var 'variable-documentation))
1668 (msg2 ""))
1669 (unless (memq var '(sh-first-lines-indent sh-indent-comment))
1670 (setq msg2
1671 (format "\n
1672 You can enter a number (positive to increase indentation,
1673 negative to decrease indentation, zero for no change to indentation).
1674
1675 Or, you can enter one of the following symbols which are relative to
1676 the value of variable `sh-basic-offset'
1677 which in this buffer is currently %s.
1678
1679 \t%s."
1680 sh-basic-offset
1681 (mapconcat (lambda (x)
1682 (nth (1- (length x)) x))
1683 sh-symbol-list "\n\t"))))
1684 (concat
1685 ;; The following shows the global not the local value!
1686 ;; (format "Current value of %s is %s\n\n" var (symbol-value var))
1687 msg msg2)))
1688
1689 (defun sh-read-variable (var)
1690 "Read a new value for indentation variable VAR."
1691 (interactive "*variable? ") ;; to test
1692 (let ((minibuffer-help-form `(sh-help-string-for-variable
1693 (quote ,var)))
1694 val)
1695 (setq val (read-from-minibuffer
1696 (format "New value for %s (press %s for help): "
1697 var (single-key-description help-char))
1698 (format "%s" (symbol-value var))
1699 nil t))
1700 val))
1701
1702
1703
1704 (defun sh-in-comment-or-string (start)
1705 "Return non-nil if START is in a comment or string."
1706 (save-excursion
1707 (let (state)
1708 (beginning-of-line)
1709 (setq state (parse-partial-sexp (point) start nil nil nil t))
1710 (or (nth 3 state)(nth 4 state)))))
1711
1712 (defun sh-goto-matching-if ()
1713 "Go to the matching if for a fi.
1714 This handles nested if..fi pairs."
1715 (let ((found (sh-find-prev-matching "\\bif\\b" "\\bfi\\b" 1)))
1716 (if found
1717 (goto-char found))))
1718
1719
1720 ;; Functions named sh-handle-this-XXX are called when the keyword on the
1721 ;; line whose indentation is being handled contain XXX;
1722 ;; those named sh-handle-prev-XXX are when XXX appears on the previous line.
1723
1724 (defun sh-handle-prev-if ()
1725 (list '(+ sh-indent-after-if)))
1726
1727 (defun sh-handle-this-else ()
1728 (if (sh-goto-matching-if)
1729 ;; (list "aligned to if")
1730 (list "aligned to if" '(+ sh-indent-for-else))
1731 nil
1732 ))
1733
1734 (defun sh-handle-prev-else ()
1735 (if (sh-goto-matching-if)
1736 (list '(+ sh-indent-after-if))
1737 ))
1738
1739 (defun sh-handle-this-fi ()
1740 (if (sh-goto-matching-if)
1741 (list "aligned to if" '(+ sh-indent-for-fi))
1742 nil
1743 ))
1744
1745 (defun sh-handle-prev-fi ()
1746 ;; Why do we have this rule? Because we must go back to the if
1747 ;; to get its indent. We may continue back from there.
1748 ;; We return nil because we don't have anything to add to result,
1749 ;; the side affect of setting align-point is all that matters.
1750 ;; we could return a comment (a string) but I can't think of a good one...
1751 (sh-goto-matching-if)
1752 nil)
1753
1754 (defun sh-handle-this-then ()
1755 (let ((p (sh-goto-matching-if)))
1756 (if p
1757 (list '(+ sh-indent-for-then))
1758 )))
1759
1760 (defun sh-handle-prev-then ()
1761 (let ((p (sh-goto-matching-if)))
1762 (if p
1763 (list '(+ sh-indent-after-if))
1764 )))
1765
1766 (defun sh-handle-prev-open ()
1767 (save-excursion
1768 (let ((x (sh-prev-stmt)))
1769 (if (and x
1770 (progn
1771 (goto-char x)
1772 (or
1773 (looking-at "function\\b")
1774 (looking-at "\\s-*\\S-+\\s-*()")
1775 )))
1776 (list '(+ sh-indent-after-function))
1777 (list '(+ sh-indent-after-open)))
1778 )))
1779
1780 (defun sh-handle-this-close ()
1781 (forward-char 1) ;; move over ")"
1782 (if (sh-safe-forward-sexp -1)
1783 (list "aligned to opening paren")))
1784
1785 (defun sh-goto-matching-case ()
1786 (let ((found (sh-find-prev-matching "\\bcase\\b" "\\besac\\b" 1)))
1787 (if found (goto-char found))))
1788
1789 (defun sh-handle-prev-case ()
1790 ;; This is typically called when point is on same line as a case
1791 ;; we shouldn't -- and can't find prev-case
1792 (if (looking-at ".*\\<case\\>")
1793 (list '(+ sh-indent-for-case-label))
1794 (error "We don't seem to be on a line with a case"))) ;; debug
1795
1796 (defun sh-handle-this-esac ()
1797 (if (sh-goto-matching-case)
1798 (list "aligned to matching case")))
1799
1800 (defun sh-handle-prev-esac ()
1801 (if (sh-goto-matching-case)
1802 (list "matching case")))
1803
1804 (defun sh-handle-after-case-label ()
1805 (if (sh-goto-matching-case)
1806 (list '(+ sh-indent-for-case-alt))))
1807
1808 (defun sh-handle-prev-case-alt-end ()
1809 (if (sh-goto-matching-case)
1810 (list '(+ sh-indent-for-case-label))))
1811
1812 (defun sh-safe-forward-sexp (&optional arg)
1813 "Try and do a `forward-sexp', but do not error.
1814 Return new point if successful, nil if an error occurred."
1815 (condition-case nil
1816 (progn
1817 (forward-sexp (or arg 1))
1818 (point)) ;; return point if successful
1819 (error
1820 (sh-debug "oops!(1) %d" (point))
1821 nil))) ;; return nil if fail
1822
1823 (defun sh-goto-match-for-done ()
1824 (let ((found (sh-find-prev-matching sh-regexp-for-done sh-re-done 1)))
1825 (if found
1826 (goto-char found))))
1827
1828 (defun sh-handle-this-done ()
1829 (if (sh-goto-match-for-done)
1830 (list "aligned to do stmt" '(+ sh-indent-for-done))))
1831
1832 (defun sh-handle-prev-done ()
1833 (if (sh-goto-match-for-done)
1834 (list "previous done")))
1835
1836 (defun sh-handle-this-do ()
1837 (if (sh-goto-match-for-done)
1838 (list '(+ sh-indent-for-do))))
1839
1840 (defun sh-handle-prev-do ()
1841 (cond
1842 ((save-restriction
1843 (narrow-to-region
1844 (point)
1845 (save-excursion
1846 (beginning-of-line)
1847 (point)))
1848 (sh-goto-match-for-done))
1849 (sh-debug "match for done found on THIS line")
1850 (list '(+ sh-indent-after-loop-construct)))
1851 ((sh-goto-match-for-done)
1852 (sh-debug "match for done found on PREV line")
1853 (list '(+ sh-indent-after-do)))
1854 (t
1855 (message "match for done NOT found")
1856 nil)))
1857
1858 ;; for rc:
1859 (defun sh-find-prev-switch ()
1860 "Find the line for the switch keyword matching this line's case keyword."
1861 (re-search-backward "\\<switch\\>" nil t))
1862
1863 (defun sh-handle-this-rc-case ()
1864 (if (sh-find-prev-switch)
1865 (list '(+ sh-indent-after-switch))
1866 ;; (list '(+ sh-indent-for-case-label))
1867 nil))
1868
1869 (defun sh-handle-prev-rc-case ()
1870 (list '(+ sh-indent-after-case)))
1871
1872 (defun sh-check-rule (n thing)
1873 (let ((rule (nth n (assoc thing sh-kw-alist)))
1874 (val nil))
1875 (if rule
1876 (progn
1877 (setq val (funcall rule))
1878 (sh-debug "rule (%d) for %s at %d is %s\n-> returned %s"
1879 n thing (point) rule val)))
1880 val))
1881
1882
1883 (defun sh-get-indent-info ()
1884 "Return indent-info for this line.
1885 This is a list. nil means the line is to be left as is.
1886 Otherwise it contains one or more of the following sublists:
1887 \(t NUMBER\) NUMBER is the base location in the buffer that indentation is
1888 relative to. If present, this is always the first of the
1889 sublists. The indentation of the line in question is
1890 derived from the indentation of this point, possibly
1891 modified by subsequent sublists.
1892 \(+ VAR\)
1893 \(- VAR\) Get the value of variable VAR and add to or subtract from
1894 the indentation calculated so far.
1895 \(= VAR\) Get the value of variable VAR and *replace* the
1896 indentation with its value. This only occurs for
1897 special variables such as `sh-indent-comment'.
1898 STRING This is ignored for the purposes of calculating
1899 indentation, it is printed in certain cases to help show
1900 what the indentation is based on."
1901 ;; See comments before `sh-kw'.
1902 (save-excursion
1903 (let ((prev-kw nil)
1904 (prev-stmt nil)
1905 (have-result nil)
1906 depth-bol depth-eol
1907 this-kw
1908 (state nil)
1909 state-bol
1910 (depth-prev-bol nil)
1911 start
1912 func val
1913 (result nil)
1914 prev-lines-indent
1915 (prev-list nil)
1916 (this-list nil)
1917 (align-point nil)
1918 prev-line-end x)
1919 (beginning-of-line)
1920 ;; Note: setting result to t means we are done and will return nil.
1921 ;;(This function never returns just t.)
1922 (cond
1923 ((and (boundp 'font-lock-string-face)
1924 (equal (get-text-property (point) 'face) font-lock-string-face))
1925 (setq result t)
1926 (setq have-result t))
1927 ((looking-at "\\s-*#") ; was (equal this-kw "#")
1928 (if (bobp)
1929 (setq result t) ;; return nil if 1st line!
1930 (setq result (list '(= sh-indent-comment)))
1931 ;; we still need to get previous line in case
1932 ;; sh-indent-comment is t (indent as normal)
1933 (setq align-point (sh-prev-line nil))
1934 (setq have-result nil)
1935 ))
1936 ) ;; cond
1937
1938 (unless have-result
1939 ;; Continuation lines are handled specially
1940 (if (sh-this-is-a-continuation)
1941 (progn
1942 ;; We assume the line being continued is already
1943 ;; properly indented...
1944 ;; (setq prev-line-end (sh-prev-line))
1945 (setq align-point (sh-prev-line nil))
1946 (setq result (list '(+ sh-indent-for-continuation)))
1947 (setq have-result t))
1948 (beginning-of-line)
1949 (skip-chars-forward " \t")
1950 (setq this-kw (sh-get-kw)))
1951
1952 ;; Handle "this" keyword: first word on the line we're
1953 ;; calculating indentation info for.
1954 (if this-kw
1955 (if (setq val (sh-check-rule 1 this-kw))
1956 (progn
1957 (setq align-point (point))
1958 (sh-debug
1959 "this - setting align-point to %d" align-point)
1960 (setq result (append result val))
1961 (setq have-result t)
1962 ;; set prev-line to continue processing remainder
1963 ;; of this line as a previous line
1964 (setq prev-line-end (point))
1965 ))))
1966
1967 (unless have-result
1968 (setq prev-line-end (sh-prev-line 'end)))
1969
1970 (if prev-line-end
1971 (save-excursion
1972 ;; We start off at beginning of this line.
1973 ;; Scan previous statements while this is <=
1974 ;; start of previous line.
1975 (setq start (point)) ;; for debug only
1976 (goto-char prev-line-end)
1977 (setq x t)
1978 (while (and x (setq x (sh-prev-thing)))
1979 (sh-debug "at %d x is: %s result is: %s" (point) x result)
1980 (cond
1981 ((and (equal x ")")
1982 (equal (get-text-property (1- (point)) 'syntax-table)
1983 sh-st-punc))
1984 (sh-debug "Case label) here")
1985 (setq x 'case-label)
1986 (if (setq val (sh-check-rule 2 x))
1987 (progn
1988 (setq result (append result val))
1989 (setq align-point (point))))
1990 (forward-char -1)
1991 (skip-chars-forward "[a-z0-9]*?")
1992 )
1993 ((string-match "[])}]" x)
1994 (setq x (sh-safe-forward-sexp -1))
1995 (if x
1996 (progn
1997 (setq align-point (point))
1998 (setq result (append result
1999 (list "aligned to opening paren")))
2000 )))
2001 ((string-match "[[({]" x)
2002 (sh-debug "Checking special thing: %s" x)
2003 (if (setq val (sh-check-rule 2 x))
2004 (setq result (append result val)))
2005 (forward-char -1)
2006 (setq align-point (point)))
2007 ((string-match "[\"'`]" x)
2008 (sh-debug "Skipping back for %s" x)
2009 ;; this was oops-2
2010 (setq x (sh-safe-forward-sexp -1)))
2011 ((stringp x)
2012 (sh-debug "Checking string %s at %s" x (point))
2013 (if (setq val (sh-check-rule 2 x))
2014 ;; (or (eq t (car val))
2015 ;; (eq t (car (car val))))
2016 (setq result (append result val)))
2017 ;; not sure about this test Wed Jan 27 23:48:35 1999
2018 (setq align-point (point))
2019 (unless (bolp)
2020 (forward-char -1)))
2021 (t
2022 (error "Don't know what to do with %s" x))
2023 )
2024 ) ;; while
2025 (sh-debug "result is %s" result)
2026 )
2027 (sh-debug "No prev line!")
2028 (sh-debug "result: %s align-point: %s" result align-point)
2029 )
2030
2031 (if align-point
2032 ;; was: (setq result (append result (list (list t align-point))))
2033 (setq result (append (list (list t align-point)) result))
2034 )
2035 (sh-debug "result is now: %s" result)
2036
2037 (or result
2038 (if prev-line-end
2039 (setq result (list (list t prev-line-end)))
2040 (setq result (list (list '= 'sh-first-lines-indent)))
2041 ))
2042
2043 (if (eq result t)
2044 (setq result nil))
2045 (sh-debug "result is: %s" result)
2046 result
2047 ) ;; let
2048 ))
2049
2050
2051 (defun sh-get-indent-var-for-line (&optional info)
2052 "Return the variable controlling indentation for this line.
2053 If there is not [just] one such variable, return a string
2054 indicating the problem.
2055 If INFO is supplied it is used, else it is calculated."
2056 (let ((var nil)
2057 (result nil)
2058 (reason nil)
2059 sym elt)
2060 (or info
2061 (setq info (sh-get-indent-info)))
2062 (if (null info)
2063 (setq result "this line to be left as is")
2064 (while (and info (null result))
2065 (setq elt (car info))
2066 (cond
2067 ((stringp elt)
2068 (setq reason elt)
2069 )
2070 ((not (listp elt))
2071 (error "sh-get-indent-var-for-line invalid elt: %s" elt))
2072 ;; so it is a list
2073 ((eq t (car elt))
2074 ) ;; nothing
2075 ((symbolp (setq sym (nth 1 elt)))
2076 ;; A bit of a kludge - when we see the sh-indent-comment
2077 ;; ignore other variables. Otherwise it is tricky to
2078 ;; "learn" the comment indentation.
2079 (if (eq var 'sh-indent-comment)
2080 (setq result var)
2081 (if var
2082 (setq result
2083 "this line is controlled by more than 1 variable.")
2084 (setq var sym))))
2085 (t
2086 (error "sh-get-indent-var-for-line invalid list elt: %s" elt)))
2087 (setq info (cdr info))
2088 ))
2089 (or result
2090 (setq result var))
2091 (or result
2092 (setq result reason))
2093 (if (null result)
2094 ;; e.g. just had (t POS)
2095 (setq result "line has default indentation"))
2096 result))
2097
2098
2099
2100 ;; Finding the previous line isn't trivial.
2101 ;; We must *always* go back one more and see if that is a continuation
2102 ;; line -- it is the PREVIOUS line which is continued, not the one
2103 ;; we are going to!
2104 ;; Also, we want to treat a whole "here document" as one big line,
2105 ;; because we may want to a align to the beginning of it.
2106 ;;
2107 ;; What we do:
2108 ;; - go back to previous non-empty line
2109 ;; - if this is in a here-document, go to the beginning of it
2110 ;; - while previous line is continued, go back one line
2111 (defun sh-prev-line (&optional end)
2112 "Back to end of previous non-comment non-empty line.
2113 Go to beginning of logical line unless END is non-nil, in which case
2114 we go to the end of the previous line and do not check for continuations."
2115 (sh-must-be-shell-mode)
2116 (save-excursion
2117 (beginning-of-line)
2118 (forward-comment (- (point-max)))
2119 (unless end (beginning-of-line))
2120 (when (and (not (bobp))
2121 (boundp 'font-lock-string-face)
2122 (equal (get-text-property (1- (point)) 'face)
2123 font-lock-string-face))
2124 (let ((p1 (previous-single-property-change (1- (point)) 'face)))
2125 (when p1
2126 (goto-char p1)
2127 (if end
2128 (end-of-line)
2129 (beginning-of-line)))))
2130 (unless end
2131 ;; we must check previous lines to see if they are continuation lines
2132 ;; if so, we must return position of first of them
2133 (while (and (sh-this-is-a-continuation)
2134 (>= 0 (forward-line -1))))
2135 (beginning-of-line)
2136 (skip-chars-forward " \t"))
2137 (point)))
2138
2139
2140 (defun sh-prev-stmt ()
2141 "Return the address of the previous stmt or nil."
2142 ;; This is used when we are trying to find a matching keyword.
2143 ;; Searching backward for the keyword would certainly be quicker, but
2144 ;; it is hard to remove "false matches" -- such as if the keyword
2145 ;; appears in a string or quote. This way is slower, but (I think) safer.
2146 (interactive)
2147 (save-excursion
2148 (let ((going t)
2149 (start (point))
2150 (found nil)
2151 (prev nil))
2152 (skip-chars-backward " \t;|&({[")
2153 (while (and (not found)
2154 (not (bobp))
2155 going)
2156 ;; Do a backward-sexp if possible, else backup bit by bit...
2157 (if (sh-safe-forward-sexp -1)
2158 (progn
2159 (if (looking-at sh-special-keywords)
2160 (progn
2161 (setq found prev))
2162 (setq prev (point))
2163 ))
2164 ;; backward-sexp failed
2165 (if (zerop (skip-chars-backward " \t()[\]{};`'"))
2166 (forward-char -1))
2167 (if (bolp)
2168 (let ((back (sh-prev-line nil)))
2169 (if back
2170 (goto-char back)
2171 (setq going nil)))))
2172 (unless found
2173 (skip-chars-backward " \t")
2174 (if (or (and (bolp) (not (sh-this-is-a-continuation)))
2175 (eq (char-before) ?\;)
2176 (looking-at "\\s-*[|&]"))
2177 (setq found (point)))))
2178 (if found
2179 (goto-char found))
2180 (if found
2181 (progn
2182 (skip-chars-forward " \t|&({[")
2183 (setq found (point))))
2184 (if (>= (point) start)
2185 (progn
2186 (debug "We didn't move!")
2187 (setq found nil))
2188 (or found
2189 (sh-debug "Did not find prev stmt.")))
2190 found)))
2191
2192
2193 (defun sh-get-word ()
2194 "Get a shell word skipping whitespace from point."
2195 (interactive)
2196 (skip-chars-forward "\t ")
2197 (let ((start (point)))
2198 (while
2199 (if (looking-at "[\"'`]")
2200 (sh-safe-forward-sexp)
2201 ;; (> (skip-chars-forward "^ \t\n\"'`") 0)
2202 (> (skip-chars-forward "-_a-zA-Z\$0-9") 0)
2203 ))
2204 (buffer-substring start (point))
2205 ))
2206
2207 (defun sh-prev-thing ()
2208 "Return the previous thing this logical line."
2209 ;; This is called when `sh-get-indent-info' is working backwards on
2210 ;; the previous line(s) finding what keywords may be relevant for
2211 ;; indenting. It moves over sexps if possible, and will stop
2212 ;; on a ; and at the beginning of a line if it is not a continuation
2213 ;; line.
2214 ;;
2215 ;; Added a kludge for ";;"
2216 ;; Possible return values:
2217 ;; nil - nothing
2218 ;; a string - possibly a keyword
2219 ;;
2220 (if (bolp)
2221 nil
2222 (let ((going t)
2223 c n
2224 min-point
2225 (start (point))
2226 (found nil))
2227 (save-restriction
2228 (narrow-to-region
2229 (if (sh-this-is-a-continuation)
2230 (setq min-point (sh-prev-line nil))
2231 (save-excursion
2232 (beginning-of-line)
2233 (setq min-point (point))))
2234 (point))
2235 (skip-chars-backward " \t;")
2236 (unless (looking-at "\\s-*;;")
2237 (skip-chars-backward "^)}];\"'`({[")
2238 (setq c (char-before))))
2239 (sh-debug "stopping at %d c is %s start=%d min-point=%d"
2240 (point) c start min-point)
2241 (if (< (point) min-point)
2242 (error "point %d < min-point %d" (point) min-point))
2243 (cond
2244 ((looking-at "\\s-*;;")
2245 ;; (message "Found ;; !")
2246 ";;")
2247 ((or (eq c ?\n)
2248 (eq c nil)
2249 (eq c ?\;))
2250 (save-excursion
2251 ;; skip forward over white space newline and \ at eol
2252 (skip-chars-forward " \t\n\\\\")
2253 (sh-debug "Now at %d start=%d" (point) start)
2254 (if (>= (point) start)
2255 (progn
2256 (sh-debug "point: %d >= start: %d" (point) start)
2257 nil)
2258 (sh-get-word))
2259 ))
2260 (t
2261 ;; c -- return a string
2262 (char-to-string c)
2263 ))
2264 )))
2265
2266
2267 (defun sh-this-is-a-continuation ()
2268 "Return non-nil if current line is a continuation of previous line."
2269 (save-excursion
2270 (and (zerop (forward-line -1))
2271 (looking-at ".*\\\\$")
2272 (not (nth 4 (parse-partial-sexp (match-beginning 0) (match-end 0)
2273 nil nil nil t))))))
2274
2275 (defun sh-get-kw (&optional where and-move)
2276 "Return first word of line from WHERE.
2277 If AND-MOVE is non-nil then move to end of word."
2278 (let ((start (point)))
2279 (if where
2280 (goto-char where))
2281 (prog1
2282 (buffer-substring (point)
2283 (progn (skip-chars-forward "^ \t\n;")(point)))
2284 (unless and-move
2285 (goto-char start)))))
2286
2287 (defun sh-find-prev-matching (open close &optional depth)
2288 "Find a matching token for a set of opening and closing keywords.
2289 This takes into account that there may be nested open..close pairings.
2290 OPEN and CLOSE are regexps denoting the tokens to be matched.
2291 Optional parameter DEPTH (usually 1) says how many to look for."
2292 (let ((parse-sexp-ignore-comments t)
2293 prev)
2294 (setq depth (or depth 1))
2295 (save-excursion
2296 (condition-case nil
2297 (while (and
2298 (/= 0 depth)
2299 (not (bobp))
2300 (setq prev (sh-prev-stmt)))
2301 (goto-char prev)
2302 (save-excursion
2303 (if (looking-at "\\\\\n")
2304 (progn
2305 (forward-char 2)
2306 (skip-chars-forward " \t")))
2307 (cond
2308 ((looking-at open)
2309 (setq depth (1- depth))
2310 (sh-debug "found open at %d - depth = %d" (point) depth))
2311 ((looking-at close)
2312 (setq depth (1+ depth))
2313 (sh-debug "found close - depth = %d" depth))
2314 (t
2315 ))))
2316 (error nil))
2317 (if (eq depth 0)
2318 prev ;; (point)
2319 nil)
2320 )))
2321
2322
2323 (defun sh-var-value (var &optional ignore-error)
2324 "Return the value of variable VAR, interpreting symbols.
2325 It can also return t or nil.
2326 If an illegal value is found, throw an error unless Optional argument
2327 IGNORE-ERROR is non-nil."
2328 (let ((val (symbol-value var)))
2329 (cond
2330 ((numberp val)
2331 val)
2332 ((eq val t)
2333 val)
2334 ((null val)
2335 val)
2336 ((eq val '+)
2337 sh-basic-offset)
2338 ((eq val '-)
2339 (- sh-basic-offset))
2340 ((eq val '++)
2341 (* 2 sh-basic-offset))
2342 ((eq val '--)
2343 (* 2 (- sh-basic-offset)))
2344 ((eq val '*)
2345 (/ sh-basic-offset 2))
2346 ((eq val '/)
2347 (/ (- sh-basic-offset) 2))
2348 (t
2349 (if ignore-error
2350 (progn
2351 (message "Don't know how to handle %s's value of %s" var val)
2352 0)
2353 (error "Don't know how to handle %s's value of %s" var val))
2354 ))))
2355
2356 (defun sh-set-var-value (var value &optional no-symbol)
2357 "Set variable VAR to VALUE.
2358 Unless optional argument NO-SYMBOL is non-nil, then if VALUE is
2359 can be represented by a symbol then do so."
2360 (cond
2361 (no-symbol
2362 (set var value))
2363 ((= value sh-basic-offset)
2364 (set var '+))
2365 ((= value (- sh-basic-offset))
2366 (set var '-))
2367 ((eq value (* 2 sh-basic-offset))
2368 (set var '++))
2369 ((eq value (* 2 (- sh-basic-offset)))
2370 (set var '--))
2371 ((eq value (/ sh-basic-offset 2))
2372 (set var '*))
2373 ((eq value (/ (- sh-basic-offset) 2))
2374 (set var '/))
2375 (t
2376 (set var value)))
2377 )
2378
2379
2380 (defun sh-calculate-indent (&optional info)
2381 "Return the indentation for the current line.
2382 If INFO is supplied it is used, else it is calculated from current line."
2383 (let ((ofs 0)
2384 (base-value 0)
2385 elt a b var val)
2386 (or info
2387 (setq info (sh-get-indent-info)))
2388 (when info
2389 (while info
2390 (sh-debug "info: %s ofs=%s" info ofs)
2391 (setq elt (car info))
2392 (cond
2393 ((stringp elt)) ;; do nothing?
2394 ((listp elt)
2395 (setq a (car (car info)))
2396 (setq b (nth 1 (car info)))
2397 (cond
2398 ((eq a t)
2399 (save-excursion
2400 (goto-char b)
2401 (setq val (current-indentation)))
2402 (setq base-value val))
2403 ((symbolp b)
2404 (setq val (sh-var-value b))
2405 (cond
2406 ((eq a '=)
2407 (cond
2408 ((null val)
2409 ;; no indentation
2410 ;; set info to nil so we stop immediately
2411 (setq base-value nil ofs nil info nil))
2412 ((eq val t) (setq ofs 0)) ;; indent as normal line
2413 (t
2414 ;; The following assume the (t POS) come first!
2415 (setq ofs val base-value 0)
2416 (setq info nil)))) ;; ? stop now
2417 ((eq a '+) (setq ofs (+ ofs val)))
2418 ((eq a '-) (setq ofs (- ofs val)))
2419 (t
2420 (error "sh-calculate-indent invalid a a=%s b=%s" a b))))
2421 (t
2422 (error "sh-calculate-indent invalid elt: a=%s b=%s" a b))))
2423 (t
2424 (error "sh-calculate-indent invalid elt %s" elt)))
2425 (sh-debug "a=%s b=%s val=%s base-value=%s ofs=%s"
2426 a b val base-value ofs)
2427 (setq info (cdr info)))
2428 ;; return value:
2429 (sh-debug "at end: base-value: %s ofs: %s" base-value ofs)
2430
2431 (cond
2432 ((or (null base-value)(null ofs))
2433 nil)
2434 ((and (numberp base-value)(numberp ofs))
2435 (sh-debug "base (%d) + ofs (%d) = %d"
2436 base-value ofs (+ base-value ofs))
2437 (+ base-value ofs)) ;; return value
2438 (t
2439 (error "sh-calculate-indent: Help. base-value=%s ofs=%s"
2440 base-value ofs)
2441 nil)))))
2442
2443
2444 (defun sh-indent-line ()
2445 "Indent the current line."
2446 (interactive)
2447 (sh-must-be-shell-mode)
2448 (let ((indent (sh-calculate-indent)) shift-amt beg end
2449 (pos (- (point-max) (point))))
2450 (when indent
2451 (beginning-of-line)
2452 (setq beg (point))
2453 (skip-chars-forward " \t")
2454 (setq shift-amt (- indent (current-column)))
2455 (unless (zerop shift-amt)
2456 (delete-region beg (point))
2457 (indent-to indent))
2458 ;; If initial point was within line's indentation,
2459 ;; position after the indentation. Else stay at same point in text.
2460 (if (> (- (point-max) pos) (point))
2461 (goto-char (- (point-max) pos))))))
2462
2463
2464 (defun sh-blink (blinkpos &optional msg)
2465 "Move cursor momentarily to BLINKPOS and display MSG."
2466 ;; We can get here without it being a number on first line
2467 (if (numberp blinkpos)
2468 (save-excursion
2469 (goto-char blinkpos)
2470 (message msg)
2471 (sit-for blink-matching-delay))
2472 (message msg)))
2473
2474 (defun sh-show-indent (arg)
2475 "Show the how the currently line would be indented.
2476 This tells you which variable, if any, controls the indentation of
2477 this line.
2478 If optional arg ARG is non-null (called interactively with a prefix),
2479 a pop up window describes this variable.
2480 If variable `sh-blink' is non-nil then momentarily go to the line
2481 we are indenting relative to, if applicable."
2482 (interactive "P")
2483 (sh-must-support-indent)
2484 (let* ((info (sh-get-indent-info))
2485 (var (sh-get-indent-var-for-line info))
2486 (curr-indent (current-indentation))
2487 val msg)
2488 (if (stringp var)
2489 (message (setq msg var))
2490 (setq val (sh-calculate-indent info))
2491
2492 (if (eq curr-indent val)
2493 (setq msg (format "%s is %s" var (symbol-value var)))
2494 (setq msg
2495 (if val
2496 (format "%s (%s) would change indent from %d to: %d"
2497 var (symbol-value var) curr-indent val)
2498 (format "%s (%s) would leave line as is"
2499 var (symbol-value var)))
2500 ))
2501 (if (and arg var)
2502 (describe-variable var)))
2503 (if sh-blink
2504 (let ((info (sh-get-indent-info)))
2505 (if (and info (listp (car info))
2506 (eq (car (car info)) t))
2507 (sh-blink (nth 1 (car info)) msg)
2508 (message msg)))
2509 (message msg))
2510 ))
2511
2512 (defun sh-set-indent ()
2513 "Set the indentation for the current line.
2514 If the current line is controlled by an indentation variable, prompt
2515 for a new value for it."
2516 (interactive)
2517 (sh-must-support-indent)
2518 (let* ((info (sh-get-indent-info))
2519 (var (sh-get-indent-var-for-line info))
2520 val val0 new-val old-val indent-val)
2521 (if (stringp var)
2522 (message (format "Cannot set indent - %s" var))
2523 (setq old-val (symbol-value var))
2524 (setq val (sh-read-variable var))
2525 (condition-case nil
2526 (progn
2527 (set var val)
2528 (setq indent-val (sh-calculate-indent info))
2529 (if indent-val
2530 (message "Variable: %s Value: %s would indent to: %d"
2531 var (symbol-value var) indent-val)
2532 (message "Variable: %s Value: %s would leave line as is."
2533 var (symbol-value var)))
2534 ;; I'm not sure about this, indenting it now?
2535 ;; No. Because it would give the impression that an undo would
2536 ;; restore thing, but the value has been altered.
2537 ;; (sh-indent-line)
2538 )
2539 (error
2540 (set var old-val)
2541 (message "Bad value for %s, restoring to previous value %s"
2542 var old-val)
2543 (sit-for 1)
2544 nil))
2545 )))
2546
2547
2548 (defun sh-learn-line-indent (arg)
2549 "Learn how to indent a line as it currently is indented.
2550
2551 If there is an indentation variable which controls this line's indentation,
2552 then set it to a value which would indent the line the way it
2553 presently is.
2554
2555 If the value can be represented by one of the symbols then do so
2556 unless optional argument ARG (the prefix when interactive) is non-nil."
2557 (interactive "*P")
2558 (sh-must-support-indent)
2559 ;; I'm not sure if we show allow learning on an empty line.
2560 ;; Though it might occasionally be useful I think it usually
2561 ;; would just be confusing.
2562 (if (save-excursion
2563 (beginning-of-line)
2564 (looking-at "\\s-*$"))
2565 (message "sh-learn-line-indent ignores empty lines.")
2566 (let* ((info (sh-get-indent-info))
2567 (var (sh-get-indent-var-for-line info))
2568 ival sval diff new-val
2569 (no-symbol arg)
2570 (curr-indent (current-indentation)))
2571 (cond
2572 ((stringp var)
2573 (message (format "Cannot learn line - %s" var)))
2574 ((eq var 'sh-indent-comment)
2575 ;; This is arbitrary...
2576 ;; - if curr-indent is 0, set to curr-indent
2577 ;; - else if it has the indentation of a "normal" line,
2578 ;; then set to t
2579 ;; - else set to curr-indent.
2580 (setq sh-indent-comment
2581 (if (= curr-indent 0)
2582 0
2583 (let* ((sh-indent-comment t)
2584 (val2 (sh-calculate-indent info)))
2585 (if (= val2 curr-indent)
2586 t
2587 curr-indent))))
2588 (message "%s set to %s" var (symbol-value var))
2589 )
2590 ((numberp (setq sval (sh-var-value var)))
2591 (setq ival (sh-calculate-indent info))
2592 (setq diff (- curr-indent ival))
2593
2594 (sh-debug "curr-indent: %d ival: %d diff: %d var:%s sval %s"
2595 curr-indent ival diff var sval)
2596 (setq new-val (+ sval diff))
2597 ;;; I commented out this because someone might want to replace
2598 ;;; a value of `+' with the current value of sh-basic-offset
2599 ;;; or vice-versa.
2600 ;;; (if (= 0 diff)
2601 ;;; (message "No change needed!")
2602 (sh-set-var-value var new-val no-symbol)
2603 (message "%s set to %s" var (symbol-value var))
2604 )
2605 (t
2606 (debug)
2607 (message "Cannot change %s" var))))))
2608
2609
2610
2611 (defun sh-mark-init (buffer)
2612 "Initialize a BUFFER to be used by `sh-mark-line'."
2613 (let ((main-buffer (current-buffer)))
2614 (save-excursion
2615 (set-buffer (get-buffer-create buffer))
2616 (erase-buffer)
2617 (occur-mode)
2618 (setq occur-buffer main-buffer)
2619 )))
2620
2621
2622 (defun sh-mark-line (message point buffer &optional add-linenum occur-point)
2623 "Insert MESSAGE referring to location POINT in current buffer into BUFFER.
2624 Buffer BUFFER is in `occur-mode'.
2625 If ADD-LINENUM is non-nil the message is preceded by the line number.
2626 If OCCUR-POINT is non-nil then the line is marked as a new occurrence
2627 so that `occur-next' and `occur-prev' will work."
2628 (let ((m1 (make-marker))
2629 (main-buffer (current-buffer))
2630 start
2631 (line ""))
2632 (when point
2633 (set-marker m1 point (current-buffer))
2634 (if add-linenum
2635 (setq line (format "%d: " (1+ (count-lines 1 point))))))
2636 (save-excursion
2637 (if (get-buffer buffer)
2638 (set-buffer (get-buffer buffer))
2639 (set-buffer (get-buffer-create buffer))
2640 (occur-mode)
2641 (setq occur-buffer main-buffer)
2642 )
2643 (goto-char (point-max))
2644 (setq start (point))
2645 (insert line)
2646 (if occur-point
2647 (setq occur-point (point)))
2648 (insert message)
2649 (if point
2650 (put-text-property start (point) 'mouse-face 'highlight))
2651 (insert "\n")
2652 (if point
2653 (progn
2654 (put-text-property start (point) 'occur m1)
2655 (if occur-point
2656 (put-text-property occur-point (1+ occur-point)
2657 'occur-point t))
2658 ))
2659 )))
2660
2661
2662
2663 ;; Is this really worth having?
2664 (defvar sh-learned-buffer-hook nil
2665 "*An abnormal hook, called with an alist of learned variables.")
2666 ;;; Example of how to use sh-learned-buffer-hook
2667 ;;
2668 ;; (defun what-i-learned (list)
2669 ;; (let ((p list))
2670 ;; (save-excursion
2671 ;; (set-buffer "*scratch*")
2672 ;; (goto-char (point-max))
2673 ;; (insert "(setq\n")
2674 ;; (while p
2675 ;; (insert (format " %s %s \n"
2676 ;; (nth 0 (car p)) (nth 1 (car p))))
2677 ;; (setq p (cdr p)))
2678 ;; (insert ")\n")
2679 ;; )))
2680 ;;
2681 ;; (add-hook 'sh-learned-buffer-hook 'what-i-learned)
2682
2683
2684 ;; Originally this was sh-learn-region-indent (beg end)
2685 ;; However, in practice this was awkward so I changed it to
2686 ;; use the whole buffer. Use narrowing if needbe.
2687 (defun sh-learn-buffer-indent (&optional arg)
2688 "Learn how to indent the buffer the way it currently is.
2689
2690 Output in buffer \"*indent*\" shows any lines which have conflicting
2691 values of a variable, and the final value of all variables learned.
2692 This buffer is popped to automatically if there are any discrepancies.
2693
2694 If no prefix ARG is given, then variables are set to numbers.
2695 If a prefix arg is given, then variables are set to symbols when
2696 applicable -- e.g. to symbol `+' if the value is that of the
2697 basic indent.
2698 If a positive numerical prefix is given, then `sh-basic-offset'
2699 is set to the prefix's numerical value.
2700 Otherwise, sh-basic-offset may or may not be changed, according
2701 to the value of variable `sh-learn-basic-offset'.
2702
2703 Abnormal hook `sh-learned-buffer-hook' if non-nil is called when the
2704 function completes. The function is abnormal because it is called
2705 with an alist of variables learned. This feature may be changed or
2706 removed in the future.
2707
2708 This command can often take a long time to run."
2709 (interactive "P")
2710 (sh-must-support-indent)
2711 (save-excursion
2712 (goto-char (point-min))
2713 (let ((learned-var-list nil)
2714 (out-buffer "*indent*")
2715 (num-diffs 0)
2716 last-pos
2717 previous-set-info
2718 (max 17)
2719 vec
2720 msg
2721 (comment-col nil) ;; number if all same, t if seen diff values
2722 (comments-always-default t) ;; nil if we see one not default
2723 initial-msg
2724 (specified-basic-offset (and arg (numberp arg)
2725 (> arg 0)))
2726 (linenum 0)
2727 suggested)
2728 (setq vec (make-vector max 0))
2729 (sh-mark-init out-buffer)
2730
2731 (if specified-basic-offset
2732 (progn
2733 (setq sh-basic-offset arg)
2734 (setq initial-msg
2735 (format "Using specified sh-basic-offset of %d"
2736 sh-basic-offset)))
2737 (setq initial-msg
2738 (format "Initial value of sh-basic-offset: %s"
2739 sh-basic-offset)))
2740
2741 (while (< (point) (point-max))
2742 (setq linenum (1+ linenum))
2743 ;; (if (zerop (% linenum 10))
2744 (message "line %d" linenum)
2745 ;; )
2746 (unless (looking-at "\\s-*$") ;; ignore empty lines!
2747 (let* ((sh-indent-comment t) ;; info must return default indent
2748 (info (sh-get-indent-info))
2749 (var (sh-get-indent-var-for-line info))
2750 sval ival diff new-val
2751 (curr-indent (current-indentation)))
2752 (cond
2753 ((null var)
2754 nil)
2755 ((stringp var)
2756 nil)
2757 ((numberp (setq sval (sh-var-value var 'no-error)))
2758 ;; the numberp excludes comments since sval will be t.
2759 (setq ival (sh-calculate-indent))
2760 (setq diff (- curr-indent ival))
2761 (setq new-val (+ sval diff))
2762 (sh-set-var-value var new-val 'no-symbol)
2763 (unless (looking-at "\\s-*#") ;; don't learn from comments
2764 (if (setq previous-set-info (assoc var learned-var-list))
2765 (progn
2766 ;; it was already there, is it same value ?
2767 (unless (eq (symbol-value var)
2768 (nth 1 previous-set-info))
2769 (sh-mark-line
2770 (format "Variable %s was set to %s"
2771 var (symbol-value var))
2772 (point) out-buffer t t)
2773 (sh-mark-line
2774 (format " but was previously set to %s"
2775 (nth 1 previous-set-info))
2776 (nth 2 previous-set-info) out-buffer t)
2777 (setq num-diffs (1+ num-diffs))
2778 ;; (delete previous-set-info learned-var-list)
2779 (setcdr previous-set-info
2780 (list (symbol-value var) (point)))
2781 )
2782 )
2783 (setq learned-var-list
2784 (append (list (list var (symbol-value var)
2785 (point)))
2786 learned-var-list)))
2787 (if (numberp new-val)
2788 (progn
2789 (sh-debug
2790 "This line's indent value: %d" new-val)
2791 (if (< new-val 0)
2792 (setq new-val (- new-val)))
2793 (if (< new-val max)
2794 (aset vec new-val (1+ (aref vec new-val))))))
2795 ))
2796 ((eq var 'sh-indent-comment)
2797 (unless (= curr-indent (sh-calculate-indent info))
2798 ;; this is not the default indentation
2799 (setq comments-always-default nil)
2800 (if comment-col ;; then we have see one before
2801 (or (eq comment-col curr-indent)
2802 (setq comment-col t)) ;; seen a different one
2803 (setq comment-col curr-indent))
2804 ))
2805 (t
2806 (sh-debug "Cannot learn this line!!!")
2807 ))
2808 (sh-debug
2809 "at %s learned-var-list is %s" (point) learned-var-list)
2810 ))
2811 (forward-line 1)
2812 ) ;; while
2813 (if sh-debug
2814 (progn
2815 (setq msg (format
2816 "comment-col = %s comments-always-default = %s"
2817 comment-col comments-always-default))
2818 ;; (message msg)
2819 (sh-mark-line msg nil out-buffer)))
2820 (cond
2821 ((eq comment-col 0)
2822 (setq msg "\nComments are all in 1st column.\n"))
2823 (comments-always-default
2824 (setq msg "\nComments follow default indentation.\n")
2825 (setq comment-col t))
2826 ((numberp comment-col)
2827 (setq msg (format "\nComments are in col %d." comment-col)))
2828 (t
2829 (setq msg "\nComments seem to be mixed, leaving them as is.\n")
2830 (setq comment-col nil)
2831 ))
2832 (sh-debug msg)
2833 (sh-mark-line msg nil out-buffer)
2834
2835 (sh-mark-line initial-msg nil out-buffer t t)
2836
2837 (setq suggested (sh-guess-basic-offset vec))
2838
2839 (if (and suggested (not specified-basic-offset))
2840 (let ((new-value
2841 (cond
2842 ;; t => set it if we have a single value as a number
2843 ((and (eq sh-learn-basic-offset t) (numberp suggested))
2844 suggested)
2845 ;; other non-nil => set it if only one value was found
2846 (sh-learn-basic-offset
2847 (if (numberp suggested)
2848 suggested
2849 (if (= (length suggested) 1)
2850 (car suggested))))
2851 (t
2852 nil))))
2853 (if new-value
2854 (progn
2855 (setq learned-var-list
2856 (append (list (list 'sh-basic-offset
2857 (setq sh-basic-offset new-value)
2858 (point-max)))
2859 learned-var-list))
2860 ;; Not sure if we need to put this line in, since
2861 ;; it will appear in the "Learned variable settings".
2862 (sh-mark-line
2863 (format "Changed sh-basic-offset to: %d" sh-basic-offset)
2864 nil out-buffer))
2865 (sh-mark-line
2866 (if (listp suggested)
2867 (format "Possible value(s) for sh-basic-offset: %s"
2868 (mapconcat 'int-to-string suggested " "))
2869 (format "Suggested sh-basic-offset: %d" suggested))
2870 nil out-buffer))))
2871
2872
2873 (setq learned-var-list
2874 (append (list (list 'sh-indent-comment comment-col (point-max)))
2875 learned-var-list))
2876 (setq sh-indent-comment comment-col)
2877 (let ((name (buffer-name))
2878 (lines (if (and (eq (point-min) 1)
2879 (eq (point-max) (1+ (buffer-size))))
2880 ""
2881 (format "lines %d to %d of "
2882 (1+ (count-lines 1 (point-min)))
2883 (1+ (count-lines 1 (point-max))))))
2884 )
2885 (sh-mark-line "\nLearned variable settings:" nil out-buffer)
2886 (if arg
2887 ;; Set learned variables to symbolic rather than numeric
2888 ;; values where possible.
2889 (dolist (learned-var (reverse learned-var-list))
2890 (let ((var (car learned-var))
2891 (val (nth 1 learned-var)))
2892 (when (and (not (eq var 'sh-basic-offset))
2893 (numberp val))
2894 (sh-set-var-value var val)))))
2895 (dolist (learned-var (reverse learned-var-list))
2896 (let ((var (car learned-var)))
2897 (sh-mark-line (format " %s %s" var (symbol-value var))
2898 (nth 2 learned-var) out-buffer)))
2899 (save-excursion
2900 (set-buffer out-buffer)
2901 (goto-char (point-min))
2902 (insert
2903 (format "Indentation values for buffer %s.\n" name)
2904 (format "%d indentation variable%s different values%s\n\n"
2905 num-diffs
2906 (if (= num-diffs 1)
2907 " has" "s have")
2908 (if (zerop num-diffs)
2909 "." ":"))
2910 )))
2911 ;; Are abnormal hooks considered bad form?
2912 (run-hook-with-args 'sh-learned-buffer-hook learned-var-list)
2913 (if (or sh-popup-occur-buffer (> num-diffs 0))
2914 (pop-to-buffer out-buffer))
2915 )))
2916
2917 (defun sh-guess-basic-offset (vec)
2918 "See if we can determine a reasonable value for `sh-basic-offset'.
2919 This is experimental, heuristic and arbitrary!
2920 Argument VEC is a vector of information collected by
2921 `sh-learn-buffer-indent'.
2922 Return values:
2923 number - there appears to be a good single value
2924 list of numbers - no obvious one, here is a list of one or more
2925 reasonable choices
2926 nil - we couldn't find a reasonable one."
2927 (let* ((max (1- (length vec)))
2928 (i 1)
2929 (totals (make-vector max 0))
2930 (return nil)
2931 j)
2932 (while (< i max)
2933 (aset totals i (+ (aref totals i) (* 4 (aref vec i))))
2934 (setq j (/ i 2))
2935 (if (zerop (% i 2))
2936 (aset totals i (+ (aref totals i) (aref vec (/ i 2)))))
2937 (if (< (* i 2) max)
2938 (aset totals i (+ (aref totals i) (aref vec (* i 2)))))
2939 (setq i (1+ i)))
2940
2941 (let ((x nil)
2942 (result nil)
2943 tot sum p)
2944 (setq i 1)
2945 (while (< i max)
2946 (if (/= (aref totals i) 0)
2947 (setq x (append x (list (cons i (aref totals i))))))
2948 (setq i (1+ i)))
2949
2950 (setq x (sort x (lambda (a b) (> (cdr a) (cdr b)))))
2951 (setq tot (apply '+ (append totals nil)))
2952 (sh-debug (format "vec: %s\ntotals: %s\ntot: %d"
2953 vec totals tot))
2954 (cond
2955 ((zerop (length x))
2956 (message "no values!")) ;; we return nil
2957 ((= (length x) 1)
2958 (message "only value is %d" (car (car x)))
2959 (setq result (car (car x)))) ;; return single value
2960 ((> (cdr (car x)) (/ tot 2))
2961 ;; 1st is > 50%
2962 (message "basic-offset is probably %d" (car (car x)))
2963 (setq result (car (car x)))) ;; again, return a single value
2964 ((>= (cdr (car x)) (* 2 (cdr (car (cdr x)))))
2965 ;; 1st is >= 2 * 2nd
2966 (message "basic-offset could be %d" (car (car x)))
2967 (setq result (car (car x))))
2968 ((>= (+ (cdr (car x))(cdr (car (cdr x)))) (/ tot 2))
2969 ;; 1st & 2nd together >= 50% - return a list
2970 (setq p x sum 0 result nil)
2971 (while (and p
2972 (<= (setq sum (+ sum (cdr (car p)))) (/ tot 2)))
2973 (setq result (append result (list (car (car p)))))
2974 (setq p (cdr p)))
2975 (message "Possible choices for sh-basic-offset: %s"
2976 (mapconcat 'int-to-string result " ")))
2977 (t
2978 (message "No obvious value for sh-basic-offset. Perhaps %d"
2979 (car (car x)))
2980 ;; result is nil here
2981 ))
2982 result)))
2983
2984 ;; ========================================================================
2985
2986 ;; Styles -- a quick and dirty way of saving the indentation settings.
2987
2988 (defvar sh-styles-alist nil
2989 "A list of all known shell indentation styles.")
2990
2991 (defun sh-name-style (name &optional confirm-overwrite)
2992 "Name the current indentation settings as a style called NAME.
2993 If this name exists, the command will prompt whether it should be
2994 overwritten if
2995 - - it was called interactively with a prefix argument, or
2996 - - called non-interactively with optional CONFIRM-OVERWRITE non-nil."
2997 ;; (interactive "sName for this style: ")
2998 (interactive
2999 (list
3000 (read-from-minibuffer "Name for this style? " )
3001 (not current-prefix-arg)))
3002 (let ((slist (cons name
3003 (mapcar (lambda (var) (cons var (symbol-value var)))
3004 sh-var-list)))
3005 (style (assoc name sh-styles-alist)))
3006 (if style
3007 (if (and confirm-overwrite
3008 (not (y-or-n-p "This style exists. Overwrite it? ")))
3009 (message "Not changing style %s" name)
3010 (message "Updating style %s" name)
3011 (setcdr style (cdr slist)))
3012 (message "Creating new style %s" name)
3013 (push slist sh-styles-alist))))
3014
3015 (defun sh-load-style (name)
3016 "Set shell indentation values for this buffer from those in style NAME."
3017 (interactive (list (completing-read
3018 "Which style to use for this buffer? "
3019 sh-styles-alist nil t)))
3020 (let ((sl (assoc name sh-styles-alist)))
3021 (if (null sl)
3022 (error "sh-load-style - style %s not known" name)
3023 (dolist (var (cdr sl))
3024 (set (car var) (cdr var))))))
3025
3026 (defun sh-save-styles-to-buffer (buff)
3027 "Save all current styles in elisp to buffer BUFF.
3028 This is always added to the end of the buffer."
3029 (interactive (list
3030 (read-from-minibuffer "Buffer to save styles in? " "*scratch*")))
3031 (with-current-buffer (get-buffer-create buff)
3032 (goto-char (point-max))
3033 (insert "\n")
3034 (pp `(setq sh-styles-alist ',sh-styles-alist) (current-buffer))))
3035
3036
3037 \f
3038 ;; statement syntax-commands for various shells
3039
3040 ;; You are welcome to add the syntax or even completely new statements as
3041 ;; appropriate for your favorite shell.
3042
3043 (define-skeleton sh-case
3044 "Insert a case/switch statement. See `sh-feature'."
3045 (csh "expression: "
3046 "switch( " str " )" \n
3047 > "case " (read-string "pattern: ") ?: \n
3048 > _ \n
3049 "breaksw" \n
3050 ( "other pattern, %s: "
3051 < "case " str ?: \n
3052 > _ \n
3053 "breaksw" \n)
3054 < "default:" \n
3055 > _ \n
3056 resume:
3057 < < "endsw")
3058 (es)
3059 (rc "expression: "
3060 > "switch( " str " ) {" \n
3061 > "case " (read-string "pattern: ") \n
3062 > _ \n
3063 ( "other pattern, %s: "
3064 "case " str > \n
3065 > _ \n)
3066 "case *" > \n
3067 > _ \n
3068 resume:
3069 ?} > )
3070 (sh "expression: "
3071 > "case " str " in" \n
3072 > (read-string "pattern: ")
3073 (propertize ")" 'syntax-table sh-st-punc)
3074 \n
3075 > _ \n
3076 ";;" \n
3077 ( "other pattern, %s: "
3078 > str (propertize ")" 'syntax-table sh-st-punc) \n
3079 > _ \n
3080 ";;" \n)
3081 > "*" (propertize ")" 'syntax-table sh-st-punc) \n
3082 > _ \n
3083 resume:
3084 "esac" > ))
3085
3086 (define-skeleton sh-for
3087 "Insert a for loop. See `sh-feature'."
3088 (csh eval sh-modify sh
3089 1 ""
3090 2 "foreach "
3091 4 " ( "
3092 6 " )"
3093 15 '<
3094 16 "end"
3095 )
3096 (es eval sh-modify rc
3097 4 " = ")
3098 (rc eval sh-modify sh
3099 2 "for( "
3100 6 " ) {"
3101 15 ?} )
3102 (sh "Index variable: "
3103 > "for " str " in " _ "; do" \n
3104 > _ | ?$ & (sh-remember-variable str) \n
3105 "done" > ))
3106
3107
3108
3109 (define-skeleton sh-indexed-loop
3110 "Insert an indexed loop from 1 to n. See `sh-feature'."
3111 (bash eval identity posix)
3112 (csh "Index variable: "
3113 "@ " str " = 1" \n
3114 "while( $" str " <= " (read-string "upper limit: ") " )" \n
3115 > _ ?$ str \n
3116 "@ " str "++" \n
3117 < "end")
3118 (es eval sh-modify rc
3119 4 " =")
3120 (ksh88 "Index variable: "
3121 > "integer " str "=0" \n
3122 > "while (( ( " str " += 1 ) <= "
3123 (read-string "upper limit: ")
3124 " )); do" \n
3125 > _ ?$ (sh-remember-variable str) > \n
3126 "done" > )
3127 (posix "Index variable: "
3128 > str "=1" \n
3129 "while [ $" str " -le "
3130 (read-string "upper limit: ")
3131 " ]; do" \n
3132 > _ ?$ str \n
3133 str ?= (sh-add (sh-remember-variable str) 1) \n
3134 "done" > )
3135 (rc "Index variable: "
3136 > "for( " str " in" " `{awk 'BEGIN { for( i=1; i<="
3137 (read-string "upper limit: ")
3138 "; i++ ) print i }'`}) {" \n
3139 > _ ?$ (sh-remember-variable str) \n
3140 ?} >)
3141 (sh "Index variable: "
3142 > "for " str " in `awk 'BEGIN { for( i=1; i<="
3143 (read-string "upper limit: ")
3144 "; i++ ) print i }'`; do" \n
3145 > _ ?$ (sh-remember-variable str) \n
3146 "done" > ))
3147
3148
3149 (defun sh-shell-initialize-variables ()
3150 "Scan the buffer for variable assignments.
3151 Add these variables to `sh-shell-variables'."
3152 (message "Scanning buffer `%s' for variable assignments..." (buffer-name))
3153 (save-excursion
3154 (goto-char (point-min))
3155 (setq sh-shell-variables-initialized t)
3156 (while (search-forward "=" nil t)
3157 (sh-assignment 0)))
3158 (message "Scanning buffer `%s' for variable assignments...done"
3159 (buffer-name)))
3160
3161 (defvar sh-add-buffer)
3162
3163 (defun sh-add-completer (string predicate code)
3164 "Do completion using `sh-shell-variables', but initialize it first.
3165 This function is designed for use as the \"completion table\",
3166 so it takes three arguments:
3167 STRING, the current buffer contents;
3168 PREDICATE, the predicate for filtering possible matches;
3169 CODE, which says what kind of things to do.
3170 CODE can be nil, t or `lambda'.
3171 nil means to return the best completion of STRING, or nil if there is none.
3172 t means to return a list of all possible completions of STRING.
3173 `lambda' means to return t if STRING is a valid completion as it stands."
3174 (let ((sh-shell-variables
3175 (save-excursion
3176 (set-buffer sh-add-buffer)
3177 (or sh-shell-variables-initialized
3178 (sh-shell-initialize-variables))
3179 (nconc (mapcar (lambda (var)
3180 (let ((name
3181 (substring var 0 (string-match "=" var))))
3182 (cons name name)))
3183 process-environment)
3184 sh-shell-variables))))
3185 (cond ((null code)
3186 (try-completion string sh-shell-variables predicate))
3187 ((eq code t)
3188 (all-completions string sh-shell-variables predicate))
3189 ((eq code 'lambda)
3190 (assoc string sh-shell-variables)))))
3191
3192 (defun sh-add (var delta)
3193 "Insert an addition of VAR and prefix DELTA for Bourne (type) shell."
3194 (interactive
3195 (let ((sh-add-buffer (current-buffer)))
3196 (list (completing-read "Variable: " 'sh-add-completer)
3197 (prefix-numeric-value current-prefix-arg))))
3198 (insert (sh-feature '((bash . "$[ ")
3199 (ksh88 . "$(( ")
3200 (posix . "$(( ")
3201 (rc . "`{expr $")
3202 (sh . "`expr $")
3203 (zsh . "$[ ")))
3204 (sh-remember-variable var)
3205 (if (< delta 0) " - " " + ")
3206 (number-to-string (abs delta))
3207 (sh-feature '((bash . " ]")
3208 (ksh88 . " ))")
3209 (posix . " ))")
3210 (rc . "}")
3211 (sh . "`")
3212 (zsh . " ]")))))
3213
3214
3215
3216 (define-skeleton sh-function
3217 "Insert a function definition. See `sh-feature'."
3218 (bash eval sh-modify ksh88
3219 3 "() {")
3220 (ksh88 "name: "
3221 "function " str " {" \n
3222 > _ \n
3223 < "}")
3224 (rc eval sh-modify ksh88
3225 1 "fn ")
3226 (sh ()
3227 "() {" \n
3228 > _ \n
3229 < "}"))
3230
3231
3232
3233 (define-skeleton sh-if
3234 "Insert an if statement. See `sh-feature'."
3235 (csh "condition: "
3236 "if( " str " ) then" \n
3237 > _ \n
3238 ( "other condition, %s: "
3239 < "else if( " str " ) then" \n
3240 > _ \n)
3241 < "else" \n
3242 > _ \n
3243 resume:
3244 < "endif")
3245 (es "condition: "
3246 > "if { " str " } {" \n
3247 > _ \n
3248 ( "other condition, %s: "
3249 "} { " str " } {" > \n
3250 > _ \n)
3251 "} {" > \n
3252 > _ \n
3253 resume:
3254 ?} > )
3255 (rc "condition: "
3256 > "if( " str " ) {" \n
3257 > _ \n
3258 ( "other condition, %s: "
3259 "} else if( " str " ) {" > \n
3260 > _ \n)
3261 "} else {" > \n
3262 > _ \n
3263 resume:
3264 ?} >
3265 )
3266 (sh "condition: "
3267 '(setq input (sh-feature sh-test))
3268 > "if " str "; then" \n
3269 > _ \n
3270 ( "other condition, %s: "
3271 > "elif " str "; then" > \n
3272 > \n)
3273 "else" > \n
3274 > \n
3275 resume:
3276 "fi" > ))
3277
3278
3279
3280 (define-skeleton sh-repeat
3281 "Insert a repeat loop definition. See `sh-feature'."
3282 (es nil
3283 > "forever {" \n
3284 > _ \n
3285 ?} > )
3286 (zsh "factor: "
3287 > "repeat " str "; do" > \n
3288 > \n
3289 "done" > ))
3290
3291 ;;;(put 'sh-repeat 'menu-enable '(sh-feature sh-repeat))
3292
3293
3294
3295 (define-skeleton sh-select
3296 "Insert a select statement. See `sh-feature'."
3297 (ksh88 "Index variable: "
3298 > "select " str " in " _ "; do" \n
3299 > ?$ str \n
3300 "done" > )
3301 (bash eval sh-append ksh88))
3302 ;;;(put 'sh-select 'menu-enable '(sh-feature sh-select))
3303
3304
3305
3306 (define-skeleton sh-tmp-file
3307 "Insert code to setup temporary file handling. See `sh-feature'."
3308 (bash eval identity ksh88)
3309 (csh (file-name-nondirectory (buffer-file-name))
3310 "set tmp = /tmp/" str ".$$" \n
3311 "onintr exit" \n _
3312 (and (goto-char (point-max))
3313 (not (bolp))
3314 ?\n)
3315 "exit:\n"
3316 "rm $tmp* >&/dev/null" >)
3317 (es (file-name-nondirectory (buffer-file-name))
3318 > "local( signals = $signals sighup sigint; tmp = /tmp/" str
3319 ".$pid ) {" \n
3320 > "catch @ e {" \n
3321 > "rm $tmp^* >[2]/dev/null" \n
3322 "throw $e" \n
3323 "} {" > \n
3324 _ \n
3325 ?} > \n
3326 ?} > )
3327 (ksh88 eval sh-modify sh
3328 7 "EXIT")
3329 (rc (file-name-nondirectory (buffer-file-name))
3330 > "tmp = /tmp/" str ".$pid" \n
3331 "fn sigexit { rm $tmp^* >[2]/dev/null }")
3332 (sh (file-name-nondirectory (buffer-file-name))
3333 > "TMP=${TMPDIR:-/tmp}/" str ".$$" \n
3334 "trap \"rm $TMP* 2>/dev/null\" " ?0))
3335
3336
3337
3338 (define-skeleton sh-until
3339 "Insert an until loop. See `sh-feature'."
3340 (sh "condition: "
3341 '(setq input (sh-feature sh-test))
3342 > "until " str "; do" \n
3343 > _ \n
3344 "done" > ))
3345 ;;;(put 'sh-until 'menu-enable '(sh-feature sh-until))
3346
3347
3348
3349 (define-skeleton sh-while
3350 "Insert a while loop. See `sh-feature'."
3351 (csh eval sh-modify sh
3352 2 ""
3353 3 "while( "
3354 5 " )"
3355 10 '<
3356 11 "end" )
3357 (es eval sh-modify sh
3358 3 "while { "
3359 5 " } {"
3360 10 ?} )
3361 (rc eval sh-modify sh
3362 3 "while( "
3363 5 " ) {"
3364 10 ?} )
3365 (sh "condition: "
3366 '(setq input (sh-feature sh-test))
3367 > "while " str "; do" \n
3368 > _ \n
3369 "done" > ))
3370
3371
3372
3373 (define-skeleton sh-while-getopts
3374 "Insert a while getopts loop. See `sh-feature'.
3375 Prompts for an options string which consists of letters for each recognized
3376 option followed by a colon `:' if the option accepts an argument."
3377 (bash eval sh-modify sh
3378 18 "${0##*/}")
3379 (csh nil
3380 "while( 1 )" \n
3381 > "switch( \"$1\" )" \n
3382 '(setq input '("- x" . 2))
3383 > >
3384 ( "option, %s: "
3385 < "case " '(eval str)
3386 '(if (string-match " +" str)
3387 (setq v1 (substring str (match-end 0))
3388 str (substring str 0 (match-beginning 0)))
3389 (setq v1 nil))
3390 str ?: \n
3391 > "set " v1 & " = $2" | -4 & _ \n
3392 (if v1 "shift") & \n
3393 "breaksw" \n)
3394 < "case --:" \n
3395 > "shift" \n
3396 < "default:" \n
3397 > "break" \n
3398 resume:
3399 < < "endsw" \n
3400 "shift" \n
3401 < "end")
3402 (ksh88 eval sh-modify sh
3403 16 "print"
3404 18 "${0##*/}"
3405 36 "OPTIND-1")
3406 (posix eval sh-modify sh
3407 18 "$(basename $0)")
3408 (sh "optstring: "
3409 > "while getopts :" str " OPT; do" \n
3410 > "case $OPT in" \n
3411 '(setq v1 (append (vconcat str) nil))
3412 ( (prog1 (if v1 (char-to-string (car v1)))
3413 (if (eq (nth 1 v1) ?:)
3414 (setq v1 (nthcdr 2 v1)
3415 v2 "\"$OPTARG\"")
3416 (setq v1 (cdr v1)
3417 v2 nil)))
3418 > str "|+" str (propertize ")" 'syntax-table sh-st-punc) \n
3419 > _ v2 \n
3420 > ";;" \n)
3421 > "*" (propertize ")" 'syntax-table sh-st-punc) \n
3422 > "echo" " \"usage: " "`basename $0`"
3423 " [+-" '(setq v1 (point)) str
3424 '(save-excursion
3425 (while (search-backward ":" v1 t)
3426 (replace-match " ARG] [+-" t t)))
3427 (if (eq (preceding-char) ?-) -5)
3428 (if (and (sequencep v1) (length v1)) "] " "} ")
3429 "[--] ARGS...\"" \n
3430 "exit 2" > \n
3431 "esac" >
3432 \n "done"
3433 > \n
3434 "shift " (sh-add "OPTIND" -1)))
3435
3436
3437
3438 (defun sh-assignment (arg)
3439 "Remember preceding identifier for future completion and do self-insert."
3440 (interactive "p")
3441 (self-insert-command arg)
3442 (if (<= arg 1)
3443 (sh-remember-variable
3444 (save-excursion
3445 (if (re-search-forward (sh-feature sh-assignment-regexp)
3446 (prog1 (point)
3447 (beginning-of-line 1))
3448 t)
3449 (match-string 1))))))
3450
3451
3452
3453 (defun sh-maybe-here-document (arg)
3454 "Insert self. Without prefix, following unquoted `<' inserts here document.
3455 The document is bounded by `sh-here-document-word'."
3456 (interactive "*P")
3457 (self-insert-command (prefix-numeric-value arg))
3458 (or arg
3459 (not (eq (char-after (- (point) 2)) last-command-char))
3460 (save-excursion
3461 (backward-char 2)
3462 (sh-quoted-p))
3463 (progn
3464 (insert sh-here-document-word)
3465 (or (eolp) (looking-at "[ \t]") (insert ? ))
3466 (end-of-line 1)
3467 (while
3468 (sh-quoted-p)
3469 (end-of-line 2))
3470 (newline)
3471 (save-excursion (insert ?\n sh-here-document-word)))))
3472
3473 \f
3474 ;; various other commands
3475
3476 (autoload 'comint-dynamic-complete "comint"
3477 "Dynamically perform completion at point." t)
3478
3479 (autoload 'shell-dynamic-complete-command "shell"
3480 "Dynamically complete the command at point." t)
3481
3482 (autoload 'comint-dynamic-complete-filename "comint"
3483 "Dynamically complete the filename at point." t)
3484
3485 (autoload 'shell-dynamic-complete-environment-variable "shell"
3486 "Dynamically complete the environment variable at point." t)
3487
3488
3489
3490 (defun sh-newline-and-indent ()
3491 "Strip unquoted whitespace, insert newline, and indent like current line."
3492 (interactive "*")
3493 (indent-to (prog1 (current-indentation)
3494 (delete-region (point)
3495 (progn
3496 (or (zerop (skip-chars-backward " \t"))
3497 (if (sh-quoted-p)
3498 (forward-char)))
3499 (point)))
3500 (newline))))
3501
3502 (defun sh-beginning-of-command ()
3503 "Move point to successive beginnings of commands."
3504 (interactive)
3505 (if (re-search-backward sh-beginning-of-command nil t)
3506 (goto-char (match-beginning 2))))
3507
3508 (defun sh-end-of-command ()
3509 "Move point to successive ends of commands."
3510 (interactive)
3511 (if (re-search-forward sh-end-of-command nil t)
3512 (goto-char (match-end 1))))
3513
3514 (provide 'sh-script)
3515
3516 ;;; sh-script.el ends here