Variable: sqlite-mode-hook
sqlite-mode-hook is a variable defined in sqlite-mode.el.gz.
Value
nil
Documentation
Hook run after entering sqlite-mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/sqlite-mode.el.gz
(define-derived-mode sqlite-mode special-mode "Sqlite"
"This mode lists the contents of an .sqlite3 file."
:interactive nil
(buffer-disable-undo)
(setq-local buffer-read-only t
truncate-lines t))