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