199 lines
6.6 KiB
EmacsLisp
199 lines
6.6 KiB
EmacsLisp
;;; smartparens-autoloads.el --- automatically extracted autoloads
|
||
;;
|
||
;;; Code:
|
||
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
|
||
|
||
;;;### (autoloads nil "smartparens" "smartparens.el" (22532 34646
|
||
;;;;;; 720253 798000))
|
||
;;; Generated autoloads from smartparens.el
|
||
|
||
(autoload 'sp-cheat-sheet "smartparens" "\
|
||
Generate a cheat sheet of all the smartparens interactive functions.
|
||
|
||
Without a prefix argument, print only the short documentation and examples.
|
||
|
||
With non-nil prefix argument, show the full documentation for each function.
|
||
|
||
You can follow the links to the function or variable help page.
|
||
To get back to the full list, use \\[help-go-back].
|
||
|
||
You can use `beginning-of-defun' and `end-of-defun' to jump to
|
||
the previous/next entry.
|
||
|
||
Examples are fontified using the `font-lock-string-face' for
|
||
better orientation.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(defvar smartparens-mode-map (make-sparse-keymap) "\
|
||
Keymap used for `smartparens-mode'.")
|
||
|
||
(autoload 'sp-use-paredit-bindings "smartparens" "\
|
||
Initiate `smartparens-mode-map' with paredit-compatible bindings for
|
||
corresponding functions provided by smartparens. See variable
|
||
`sp-paredit-bindings'.
|
||
|
||
\(fn)" t nil)
|
||
|
||
(autoload 'sp-use-smartparens-bindings "smartparens" "\
|
||
Initiate `smartparens-mode-map' with smartparens bindings for navigation functions.
|
||
See variable `sp-smartparens-bindings'.
|
||
|
||
\(fn)" t nil)
|
||
|
||
(autoload 'smartparens-mode "smartparens" "\
|
||
Toggle smartparens mode.
|
||
|
||
You can enable pre-set bindings by customizing
|
||
`sp-base-key-bindings' variable. The current content of
|
||
`smartparens-mode-map' is:
|
||
|
||
\\{smartparens-mode-map}
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(autoload 'smartparens-strict-mode "smartparens" "\
|
||
Toggle the strict smartparens mode.
|
||
|
||
When strict mode is active, `delete-char', `kill-word' and their
|
||
backward variants will skip over the pair delimiters in order to
|
||
keep the structure always valid (the same way as `paredit-mode'
|
||
does). This is accomplished by remapping them to
|
||
`sp-delete-char' and `sp-kill-word'. There is also function
|
||
`sp-kill-symbol' that deletes symbols instead of words, otherwise
|
||
working exactly the same (it is not bound to any key by default).
|
||
|
||
When strict mode is active, this is indicated with \"/s\"
|
||
after the smartparens indicator in the mode list.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(defvar smartparens-global-strict-mode nil "\
|
||
Non-nil if Smartparens-Global-Strict mode is enabled.
|
||
See the `smartparens-global-strict-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 `smartparens-global-strict-mode'.")
|
||
|
||
(custom-autoload 'smartparens-global-strict-mode "smartparens" nil)
|
||
|
||
(autoload 'smartparens-global-strict-mode "smartparens" "\
|
||
Toggle Smartparens-Strict mode in all buffers.
|
||
With prefix ARG, enable Smartparens-Global-Strict mode if ARG is positive;
|
||
otherwise, disable it. If called from Lisp, enable the mode if
|
||
ARG is omitted or nil.
|
||
|
||
Smartparens-Strict mode is enabled in all buffers where
|
||
`turn-on-smartparens-strict-mode' would do it.
|
||
See `smartparens-strict-mode' for more information on Smartparens-Strict mode.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(autoload 'turn-on-smartparens-strict-mode "smartparens" "\
|
||
Turn on `smartparens-strict-mode'.
|
||
|
||
\(fn)" t nil)
|
||
|
||
(defvar smartparens-global-mode nil "\
|
||
Non-nil if Smartparens-Global mode is enabled.
|
||
See the `smartparens-global-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 `smartparens-global-mode'.")
|
||
|
||
(custom-autoload 'smartparens-global-mode "smartparens" nil)
|
||
|
||
(autoload 'smartparens-global-mode "smartparens" "\
|
||
Toggle Smartparens mode in all buffers.
|
||
With prefix ARG, enable Smartparens-Global mode if ARG is positive;
|
||
otherwise, disable it. If called from Lisp, enable the mode if
|
||
ARG is omitted or nil.
|
||
|
||
Smartparens mode is enabled in all buffers where
|
||
`turn-on-smartparens-mode' would do it.
|
||
See `smartparens-mode' for more information on Smartparens mode.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(autoload 'turn-on-smartparens-mode "smartparens" "\
|
||
Turn on `smartparens-mode'.
|
||
|
||
This function is used to turn on `smartparens-global-mode'.
|
||
|
||
By default `smartparens-global-mode' ignores buffers with
|
||
`mode-class' set to special, but only if they are also not comint
|
||
buffers.
|
||
|
||
Additionally, buffers on `sp-ignore-modes-list' are ignored.
|
||
|
||
You can still turn on smartparens in these mode manually (or
|
||
in mode's startup-hook etc.) by calling `smartparens-mode'.
|
||
|
||
\(fn)" t nil)
|
||
|
||
(autoload 'turn-off-smartparens-mode "smartparens" "\
|
||
Turn off `smartparens-mode'.
|
||
|
||
\(fn)" t nil)
|
||
|
||
(autoload 'show-smartparens-mode "smartparens" "\
|
||
Toggle visualization of matching pairs. When enabled, any
|
||
matching pair is highlighted after `sp-show-pair-delay' seconds
|
||
of Emacs idle time if the point is immediately in front or after
|
||
a pair. This mode works similarly to `show-paren-mode', but
|
||
support custom pairs.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(defvar show-smartparens-global-mode nil "\
|
||
Non-nil if Show-Smartparens-Global mode is enabled.
|
||
See the `show-smartparens-global-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 `show-smartparens-global-mode'.")
|
||
|
||
(custom-autoload 'show-smartparens-global-mode "smartparens" nil)
|
||
|
||
(autoload 'show-smartparens-global-mode "smartparens" "\
|
||
Toggle Show-Smartparens mode in all buffers.
|
||
With prefix ARG, enable Show-Smartparens-Global mode if ARG is positive;
|
||
otherwise, disable it. If called from Lisp, enable the mode if
|
||
ARG is omitted or nil.
|
||
|
||
Show-Smartparens mode is enabled in all buffers where
|
||
`turn-on-show-smartparens-mode' would do it.
|
||
See `show-smartparens-mode' for more information on Show-Smartparens mode.
|
||
|
||
\(fn &optional ARG)" t nil)
|
||
|
||
(autoload 'turn-on-show-smartparens-mode "smartparens" "\
|
||
Turn on `show-smartparens-mode'.
|
||
|
||
\(fn)" t nil)
|
||
|
||
(autoload 'turn-off-show-smartparens-mode "smartparens" "\
|
||
Turn off `show-smartparens-mode'.
|
||
|
||
\(fn)" t nil)
|
||
|
||
;;;***
|
||
|
||
;;;### (autoloads nil nil ("smartparens-clojure.el" "smartparens-config.el"
|
||
;;;;;; "smartparens-ess.el" "smartparens-haskell.el" "smartparens-html.el"
|
||
;;;;;; "smartparens-latex.el" "smartparens-lua.el" "smartparens-pkg.el"
|
||
;;;;;; "smartparens-python.el" "smartparens-racket.el" "smartparens-ruby.el"
|
||
;;;;;; "smartparens-rust.el" "smartparens-scala.el") (22532 34646
|
||
;;;;;; 756254 106000))
|
||
|
||
;;;***
|
||
|
||
;; Local Variables:
|
||
;; version-control: never
|
||
;; no-byte-compile: t
|
||
;; no-update-autoloads: t
|
||
;; End:
|
||
;;; smartparens-autoloads.el ends here
|