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.
|
|
;;; format-all-autoloads.el --- automatically extracted autoloads;;;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "format-all" "format-all.el" (0 0 0 0));;; Generated autoloads from format-all.el
(autoload 'format-all-buffer "format-all" "\
Auto-format the source code in the current buffer.
No disk files are touched - the buffer doesn't even need to besaved. If you don't like the results of the formatting, you canuse ordinary undo to get your code back to its previous state.
You will need to install external programs to do the formatting.If the command can't find the program that it needs, it will tryto tell you how you might be able to install it on your operatingsystem. Only BibTeX, Emacs Lisp and Ledger are formatted without anexternal program.
A suitable formatter is selected according to the `major-mode' ofthe buffer. Many popular programming languages are supported.It is fairly easy to add new languages that have an externalformatter. When called interactively or PROMPT-P is non-nil, amissing formatter is prompted in the minibuffer.
If PROMPT is non-nil (or the function is called as an interactivecommand), a missing formatter is prompted in the minibuffer. IfPROMPT is the symbol `always' (or a prefix argument is given),the formatter is prompted for even if one has already been set.
If any errors or warnings were encountered during formatting,they are shown in a buffer called *format-all-errors*.
\(fn &optional PROMPT)" t nil)
(autoload 'format-all-mode "format-all" "\
Toggle automatic source code formatting before save.
When this minor mode (FmtAll) is enabled, `format-all-buffer' isautomatically called to format your code each time before yousave the buffer.
The mode is buffer-local and needs to be enabled separately eachtime a file is visited. You may want to use `add-hook' in your`user-init-file' to enable the mode based on buffer modes. E.g.:
(add-hook 'prog-mode-hook 'format-all-mode)
To use a default formatter for projects that don't have one, addthis too:
(add-hook 'prog-mode-hook 'format-all-ensure-formatter)
When `format-all-mode' is called as a Lisp function, the mode istoggled if ARG is ‘toggle’, disabled if ARG is a negative integeror zero, and enabled otherwise.
\(fn &optional ARG)" t nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "format-all" '("atsfmt" "beautysh" "bibtex-mode" "black" "brittany" "bsrefmt" "buildifier" "cabal-fmt" "cmake-format" "crystal" "dartfmt" "define-format-all-formatter" "dfmt" "dhall" "dockfmt" "elm-format" "emacs-lisp" "fish-indent" "format-all-" "fprettify" "gleam" "hindent" "html-tidy" "istyle-verilog" "jsonnetfmt" "ktlint" "latexindent" "ledger-mode" "lua-fmt" "mix-format" "nix" "ocp-indent" "ormolu" "perltidy" "pgformatter" "prettier" "purty" "resfmt" "scalafmt" "shfmt" "snakefmt" "sqlformat" "swiftformat" "terraform-fmt" "yapf")))
;;;***;; Local Variables:;; version-control: never;; no-byte-compile: t;; no-update-autoloads: t;; coding: utf-8;; End:;;; format-all-autoloads.el ends here
|