87 lines
2.9 KiB
EmacsLisp
87 lines
2.9 KiB
EmacsLisp
;;; evil-surround-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*-
|
||
;;
|
||
;;; Code:
|
||
|
||
|
||
;;;### (autoloads nil "evil-surround" "evil-surround.el" (0 0 0 0))
|
||
;;; Generated autoloads from evil-surround.el
|
||
|
||
(autoload 'evil-surround-delete "evil-surround" "\
|
||
Delete the surrounding delimiters represented by CHAR.
|
||
Alternatively, the text to delete can be represented with
|
||
the overlays OUTER and INNER, where OUTER includes the delimiters
|
||
and INNER excludes them. The intersection (i.e., difference)
|
||
between these overlays is what is deleted.
|
||
|
||
\(fn CHAR &optional OUTER INNER)" t nil)
|
||
|
||
(autoload 'evil-surround-change "evil-surround" "\
|
||
Change the surrounding delimiters represented by CHAR.
|
||
Alternatively, the text to delete can be represented with the
|
||
overlays OUTER and INNER, which are passed to `evil-surround-delete'.
|
||
|
||
\(fn CHAR &optional OUTER INNER)" t nil)
|
||
|
||
(autoload 'evil-surround-mode "evil-surround" "\
|
||
Buffer-local minor mode to emulate surround.vim.
|
||
|
||
This is a minor mode. If called interactively, toggle the
|
||
`Evil-Surround 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 `evil-surround-mode'.
|
||
|
||
The mode's hook is called both when the mode is enabled and when
|
||
it is disabled.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(autoload 'turn-on-evil-surround-mode "evil-surround" "\
|
||
Enable evil-surround-mode in the current buffer." nil nil)
|
||
|
||
(autoload 'turn-off-evil-surround-mode "evil-surround" "\
|
||
Disable evil-surround-mode in the current buffer." nil nil)
|
||
|
||
(put 'global-evil-surround-mode 'globalized-minor-mode t)
|
||
|
||
(defvar global-evil-surround-mode nil "\
|
||
Non-nil if Global Evil-Surround mode is enabled.
|
||
See the `global-evil-surround-mode' command
|
||
for 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 `global-evil-surround-mode'.")
|
||
|
||
(custom-autoload 'global-evil-surround-mode "evil-surround" nil)
|
||
|
||
(autoload 'global-evil-surround-mode "evil-surround" "\
|
||
Toggle Evil-Surround mode in all buffers.
|
||
With prefix ARG, enable Global Evil-Surround mode if ARG is
|
||
positive; otherwise, disable it. If called from Lisp, enable the mode if ARG
|
||
is omitted or nil.
|
||
|
||
Evil-Surround mode is enabled in all buffers where
|
||
`turn-on-evil-surround-mode' would do it.
|
||
|
||
See `evil-surround-mode' for more information on Evil-Surround mode.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(register-definition-prefixes "evil-surround" '("evil-surround-"))
|
||
|
||
;;;***
|
||
|
||
(provide 'evil-surround-autoloads)
|
||
;; Local Variables:
|
||
;; version-control: never
|
||
;; no-byte-compile: t
|
||
;; no-update-autoloads: t
|
||
;; coding: utf-8
|
||
;; End:
|
||
;;; evil-surround-autoloads.el ends here
|