confi-emacs-inicial/elpa/emmet-mode-20180613.341/emmet-mode-autoloads.el

84 lines
1.8 KiB
EmacsLisp
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; emmet-mode-autoloads.el --- automatically extracted autoloads
;;
;;; 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
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" "\
\(fn)" 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)
(if (fboundp 'register-definition-prefixes) (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