Variable: viper-heading-end

viper-heading-end is a variable defined in viper-init.el.gz.

Value

"^}\\|^\\\\end{\\|^@end \\|)\n\n[       \n]*\\|\\.\\s-*$"

Documentation

Regexps to end Headings/Sections. Used by [].

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-init.el.gz
(defvar viper-heading-end
  (concat "^}\\|"						; C/C++
	  "^\\\\end{\\|"					; latex
	  "^@end \\|"						; texinfo
	  ")\n\n[ \t\n]*\\|"					; lisp
	  "\\.\\s-*$")						; prolog
  "Regexps to end Headings/Sections.  Used by [].")