You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
;;; polymode-autoloads.el --- automatically extracted autoloads;;;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "poly-lock" "poly-lock.el" (0 0 0 0));;; Generated autoloads from poly-lock.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "poly-lock" '("poly-lock-")))
;;;***;;;### (autoloads nil "polymode" "polymode.el" (0 0 0 0));;; Generated autoloads from polymode.el
(autoload 'define-polymode "polymode" "\
Define a new polymode MODE.This macro defines command MODE and an indicator variable MODEwhich becomes t when MODE is active and nil otherwise.
MODE command can be used as both major and minor mode. Usingpolymodes as minor modes makes sense when :hostmode (see below)is not specified, in which case polymode installs only innermodes and doesn't touch current major mode.
Standard hook MODE-hook is run at the end of the initializationof each polymode buffer (both indirect and base buffers).
This macro also defines the MODE-map keymap from the :keymapargument and PARENT-map (see below) and poly-[MODE-NAME]-polymodevariable which holds an object of class `pm-polymode' which holdsthe entire configuration for this polymode.
PARENT is either the polymode configuration object or a polymodemode (there is 1-to-1 correspondence between configobjects (`pm-polymode') and mode functions). The new polymodeMODE inherits alll the behavior from PARENT except for theoverwrites specified by the keywords (see below). The new MODEruns all the hooks from the PARENT-mode and inherits its MODE-mapfrom PARENT-map.
DOC is an optional documentation string. If present PARENT mustbe provided, but can be nil.
BODY is executed after the complete initialization of thepolymode but before MODE-hook. It is executed once for eachpolymode buffer - host buffer on initialization and every innerbuffer subsequently created.
Before the BODY code keyword arguments (i.e. alternating keywordsand values) are allowed. The following special keywordscontrolling the behavior of the new MODE are supported:
:lighter Optional LIGHTER is displayed in the mode line when the mode is on. If omitted, it defaults to the :lighter slot of CONFIG object.
:keymap If nil, a new MODE-map keymap is created what directly inherits from the PARENT's keymap. The last keymap in the inheritance chain is always `polymode-minor-mode-map'. If a keymap it is used directly as it is. If a list of binding of the form (KEY . BINDING) it is merged the bindings are added to the newly create keymap.
:after-hook A single form which is evaluated after the mode hooks have been run. It should not be quoted.
Other keywords are added to the `pm-polymode' configurationobject and should be valid slots in PARENT config object or theroot config `pm-polymode' object if PARENT is nil. By far themost frequently used slots are:
:hostmode Symbol pointing to a `pm-host-chunkmode' object specifying the behavior of the hostmode. If missing or nil, MODE will behave as a minor-mode in the sense that it will reuse the currently installed major mode and will install only the inner modes.
:innermodes List of symbols pointing to `pm-inner-chunkmode' objects which specify the behavior of inner modes (or submodes).
\(fn MODE &optional PARENT DOC &rest BODY)" nil t)
(function-put 'define-polymode 'doc-string-elt '3)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode" '("pm-" "poly")))
;;;***;;;### (autoloads nil "polymode-base" "polymode-base.el" (0 0 0 0));;; Generated autoloads from polymode-base.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-base" '("poly-")))
;;;***;;;### (autoloads nil "polymode-classes" "polymode-classes.el" (0;;;;;; 0 0 0));;; Generated autoloads from polymode-classes.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-classes" '("pm-")))
;;;***;;;### (autoloads nil "polymode-compat" "polymode-compat.el" (0 0;;;;;; 0 0));;; Generated autoloads from polymode-compat.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-compat" '("*span*" "pm-" "polymode-")))
;;;***;;;### (autoloads nil "polymode-core" "polymode-core.el" (0 0 0 0));;; Generated autoloads from polymode-core.el
(defvar-local polymode-default-inner-mode nil "\
Inner mode for chunks with unspecified modes.Intended to be used as local variable in polymode buffers. Aspecial value 'host means use the host mode.")
(put 'polymode-default-inner-mode 'safe-local-variable 'symbolp)
(autoload 'define-hostmode "polymode-core" "\
Define a hostmode with name NAME.Optional PARENT is a name of a hostmode to be derived (cloned)from. If missing, the optional documentation string DOC isgenerated automatically. KEY-ARGS is a list of key-value pairs.See the documentation of the class `pm-host-chunkmode' forpossible values.
\(fn NAME &optional PARENT DOC &rest KEY-ARGS)" nil t)
(function-put 'define-hostmode 'doc-string-elt '3)
(autoload 'define-innermode "polymode-core" "\
Ddefine an innermode with name NAME.Optional PARENT is a name of a innermode to be derived (cloned)from. If missing the optional documentation string DOC isgenerated automatically. KEY-ARGS is a list of key-value pairs.See the documentation of the class `pm-inner-chunkmode' forpossible values.
\(fn NAME &optional PARENT DOC &rest KEY-ARGS)" nil t)
(function-put 'define-innermode 'doc-string-elt '3)
(autoload 'define-auto-innermode "polymode-core" "\
Ddefine an auto innermode with name NAME.Optional PARENT is a name of an auto innermode to bederived (cloned) from. If missing the optional documentationstring DOC is generated automatically. KEY-ARGS is a list ofkey-value pairs. See the documentation of the class`pm-inner-auto-chunkmode' for possible values.
\(fn NAME &optional PARENT DOC &rest KEY-ARGS)" nil t)
(function-put 'define-auto-innermode 'doc-string-elt '3)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-core" '("*span*" "polymode-")))
;;;***;;;### (autoloads nil "polymode-debug" "polymode-debug.el" (0 0 0;;;;;; 0));;; Generated autoloads from polymode-debug.el
(autoload 'pm-debug-minor-mode "polymode-debug" "\
Turns on/off useful facilities for debugging polymode.
If called interactively, enable Pm-Debug minor mode if ARG ispositive, and disable it if ARG is zero or negative. If calledfrom Lisp, also enable the mode if ARG is omitted or nil, andtoggle it if ARG is `toggle'; disable the mode otherwise.
Key bindings:\\{pm-debug-minor-mode-map}
\(fn &optional ARG)" t nil)
(autoload 'pm-debug-minor-mode-on "polymode-debug" nil nil nil)
(put 'pm-debug-mode 'globalized-minor-mode t)
(defvar pm-debug-mode nil "\
Non-nil if Pm-Debug mode is enabled.See the `pm-debug-mode' commandfor a description of this minor mode.Setting this variable directly does not take effect;either customize it (see the info node `Easy Customization')or call the function `pm-debug-mode'.")
(custom-autoload 'pm-debug-mode "polymode-debug" nil)
(autoload 'pm-debug-mode "polymode-debug" "\
Toggle Pm-Debug minor mode in all buffers.With prefix ARG, enable Pm-Debug mode if ARG is positive;otherwise, disable it. If called from Lisp, enable the mode ifARG is omitted or nil.
Pm-Debug minor mode is enabled in all buffers where`pm-debug-minor-mode-on' would do it.See `pm-debug-minor-mode' for more information on Pm-Debug minor mode.
\(fn &optional ARG)" t nil)
(autoload 'pm-toggle-tracing "polymode-debug" "\
Toggle polymode tracing.With numeric prefix toggle tracing for that LEVEL. Currentlyuniversal argument toggles maximum level of tracing (4). Defaultlevel is 3.
\(fn LEVEL)" t nil)
(autoload 'pm-trace "polymode-debug" "\
Trace function FN.Use `untrace-function' to untrace or `untrace-all' to untrace allcurrently traced functions.
\(fn FN)" t nil)
(autoload 'pm-debug-relevant-variables "polymode-debug" "\
Get the relevant polymode variables.If OUT-TYPE is 'buffer, print the variables in the dedicatedbuffer, if 'message issue a message, if nil just return a list of values.
\(fn &optional OUT-TYPE)" t nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-debug" '("pm-")))
;;;***;;;### (autoloads nil "polymode-export" "polymode-export.el" (0 0;;;;;; 0 0));;; Generated autoloads from polymode-export.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-export" '("pm-" "poly")))
;;;***;;;### (autoloads nil "polymode-methods" "polymode-methods.el" (0;;;;;; 0 0 0));;; Generated autoloads from polymode-methods.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-methods" '("pm-")))
;;;***;;;### (autoloads nil "polymode-test-utils" "polymode-test-utils.el";;;;;; (0 0 0 0));;; Generated autoloads from polymode-test-utils.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-test-utils" '("pm-")))
;;;***;;;### (autoloads nil "polymode-weave" "polymode-weave.el" (0 0 0;;;;;; 0));;; Generated autoloads from polymode-weave.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "polymode-weave" '("pm-" "polymode-")))
;;;***;;;### (autoloads nil nil ("polymode-pkg.el" "polymode-tangle.el");;;;;; (0 0 0 0))
;;;***;; Local Variables:;; version-control: never;; no-byte-compile: t;; no-update-autoloads: t;; coding: utf-8;; End:;;; polymode-autoloads.el ends here
|