aboutsummaryrefslogtreecommitdiffstats
path: root/elpa/emmet-mode-20210820.1124/emmet-mode-autoloads.el
diff options
context:
space:
mode:
Diffstat (limited to 'elpa/emmet-mode-20210820.1124/emmet-mode-autoloads.el')
-rw-r--r--elpa/emmet-mode-20210820.1124/emmet-mode-autoloads.el94
1 files changed, 94 insertions, 0 deletions
diff --git a/elpa/emmet-mode-20210820.1124/emmet-mode-autoloads.el b/elpa/emmet-mode-20210820.1124/emmet-mode-autoloads.el
new file mode 100644
index 0000000..250d0b2
--- /dev/null
+++ b/elpa/emmet-mode-20210820.1124/emmet-mode-autoloads.el
@@ -0,0 +1,94 @@
+;;; emmet-mode-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*-
+;;
+;;; Code:
+
+(add-to-list 'load-path (directory-file-name
+ (or (file-name-directory #$) (car load-path))))
+
+
+;;;### (autoloads nil "emmet-mode" "emmet-mode.el" (0 0 0 0))
+;;; Generated autoloads from emmet-mode.el
+
+(autoload 'emmet-expand-line "emmet-mode" "\
+Replace the current line's emmet expression with the corresponding expansion.
+If prefix ARG is given or region is visible call `emmet-preview' to start an
+interactive preview.
+
+Otherwise expand line directly.
+
+For more information see `emmet-mode'.
+
+\(fn ARG)" t nil)
+
+(autoload 'emmet-mode "emmet-mode" "\
+Minor mode for writing HTML and CSS markup.
+With emmet for HTML and CSS you can write a line like
+
+This is a minor mode. If called interactively, toggle the `Emmet
+mode' mode. If the prefix argument is positive, enable the mode,
+and if it is zero or negative, disable the mode.
+
+If called from Lisp, toggle the mode if ARG is `toggle'. Enable
+the mode if ARG is nil, omitted, or is a positive number.
+Disable the mode if ARG is a negative number.
+
+To check whether the minor mode is enabled in the current buffer,
+evaluate `emmet-mode'.
+
+The mode's hook is called both when the mode is enabled and when
+it is disabled.
+
+ ul#name>li.item*2
+
+and have it expanded to
+
+ <ul id=\"name\">
+ <li class=\"item\"></li>
+ <li class=\"item\"></li>
+ </ul>
+
+This minor mode defines keys for quick access:
+
+\\{emmet-mode-keymap}
+
+Home page URL `http://www.emacswiki.org/emacs/Emmet'.
+
+See also `emmet-expand-line'.
+
+\(fn &optional ARG)" t nil)
+
+(autoload 'emmet-expand-yas "emmet-mode" nil t nil)
+
+(autoload 'emmet-preview "emmet-mode" "\
+Expand emmet between BEG and END interactively.
+This will show a preview of the expanded emmet code and you can
+accept it or skip it.
+
+\(fn BEG END)" t nil)
+
+(autoload 'emmet-wrap-with-markup "emmet-mode" "\
+Wrap region with markup.
+
+\(fn WRAP-WITH)" t nil)
+
+(autoload 'emmet-next-edit-point "emmet-mode" "\
+
+
+\(fn COUNT)" t nil)
+
+(autoload 'emmet-prev-edit-point "emmet-mode" "\
+
+
+\(fn COUNT)" t nil)
+
+(register-definition-prefixes "emmet-mode" '("emmet-"))
+
+;;;***
+
+;; Local Variables:
+;; version-control: never
+;; no-byte-compile: t
+;; no-update-autoloads: t
+;; coding: utf-8
+;; End:
+;;; emmet-mode-autoloads.el ends here