mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-18 8f6f2705a38e2515b6c57fda12c5be29fb9a798f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
;;; 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" (0 0 0 0))
;;; 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 ARG, 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 `sp-paredit-bindings'.
 
\(fn)" t nil)
 
(autoload 'sp-use-smartparens-bindings "smartparens" "\
Initiate `smartparens-mode-map' with `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)
 
(autoload 'turn-off-smartparens-strict-mode "smartparens" "\
Turn off `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)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens" '("smartparens-" "sp-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-clojure" "smartparens-clojure.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-clojure.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-clojure" '("sp-clojure-prefix")))
 
;;;***
 
;;;### (autoloads nil "smartparens-config" "smartparens-config.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-config.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-config" '("sp-lisp-invalid-hyperlink-p")))
 
;;;***
 
;;;### (autoloads nil "smartparens-crystal" "smartparens-crystal.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-crystal.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-crystal" '("sp-crystal-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-elixir" "smartparens-elixir.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-elixir.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-elixir" '("sp-elixir-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-ess" "smartparens-ess.el" (0 0
;;;;;;  0 0))
;;; Generated autoloads from smartparens-ess.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-ess" '("sp-ess-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-haskell" "smartparens-haskell.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-haskell.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-haskell" '("sp-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-html" "smartparens-html.el" (0
;;;;;;  0 0 0))
;;; Generated autoloads from smartparens-html.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-html" '("sp-html-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-latex" "smartparens-latex.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-latex.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-latex" '("sp-latex-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-lua" "smartparens-lua.el" (0 0
;;;;;;  0 0))
;;; Generated autoloads from smartparens-lua.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-lua" '("sp-lua-post-keyword-insert")))
 
;;;***
 
;;;### (autoloads nil "smartparens-markdown" "smartparens-markdown.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-markdown.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-markdown" '("sp-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-org" "smartparens-org.el" (0 0
;;;;;;  0 0))
;;; Generated autoloads from smartparens-org.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-org" '("sp--org-skip-asterisk")))
 
;;;***
 
;;;### (autoloads nil "smartparens-python" "smartparens-python.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-python.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-python" '("sp-python-fix-tripple-quotes")))
 
;;;***
 
;;;### (autoloads nil "smartparens-ruby" "smartparens-ruby.el" (0
;;;;;;  0 0 0))
;;; Generated autoloads from smartparens-ruby.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-ruby" '("sp-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-rust" "smartparens-rust.el" (0
;;;;;;  0 0 0))
;;; Generated autoloads from smartparens-rust.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-rust" '("sp-")))
 
;;;***
 
;;;### (autoloads nil "smartparens-scala" "smartparens-scala.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from smartparens-scala.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-scala" '("sp-scala-wrap-with-indented-newlines")))
 
;;;***
 
;;;### (autoloads nil "smartparens-text" "smartparens-text.el" (0
;;;;;;  0 0 0))
;;; Generated autoloads from smartparens-text.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-text" '("sp-text-mode-")))
 
;;;***
 
;;;### (autoloads nil nil ("smartparens-javascript.el" "smartparens-ml.el"
;;;;;;  "smartparens-pkg.el" "smartparens-racket.el") (0 0 0 0))
 
;;;***
 
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; smartparens-autoloads.el ends here