Function: sh-smie--continuation-start-indent

sh-smie--continuation-start-indent is a byte-compiled function defined in sh-script.el.gz.

Signature

(sh-smie--continuation-start-indent)

Documentation

Return the initial indentation of a continued line.

May return nil if the line should not be treated as continued.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-smie--continuation-start-indent ()
  "Return the initial indentation of a continued line.
May return nil if the line should not be treated as continued."
  (save-excursion
    (forward-line -1)
    (unless (sh-smie--looking-back-at-continuation-p)
      (current-indentation))))