Variable: sh-kws-for-done

sh-kws-for-done is a variable defined in sh-script.el.gz.

Value

((sh "while" "until" "for") (bash "while" "until" "for" "select")
 (ksh88 "while" "until" "for" "select")
 (zsh "while" "until" "for" "repeat" "select"))

Documentation

Which keywords can match the word done in this shell.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defconst sh-kws-for-done
  '((sh .  ( "while" "until" "for" ) )
    (bash . ( "while" "until" "for" "select"  ) )
    (ksh88 . ( "while" "until" "for" "select"  ) )
    (zsh .  ( "while" "until" "for" "repeat" "select" ) ) )
  "Which keywords can match the word `done' in this shell.")