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

Chizi123
2018-11-18 21067e7cbe6d7a0f65ff5c317a96b5c337b0b3d8
commit | author | age
5cb5f7 1 ;;; with-editor-autoloads.el --- automatically extracted autoloads
C 2 ;;
3 ;;; Code:
4
5 (add-to-list 'load-path (directory-file-name
6                          (or (file-name-directory #$) (car load-path))))
7
8
9 ;;;### (autoloads nil "with-editor" "with-editor.el" (0 0 0 0))
10 ;;; Generated autoloads from with-editor.el
11
12 (autoload 'with-editor-export-editor "with-editor" "\
13 Teach subsequent commands to use current Emacs instance as editor.
14
15 Set and export the environment variable ENVVAR, by default
16 \"EDITOR\".  The value is automatically generated to teach
17 commands to use the current Emacs instance as \"the editor\".
18
19 This works in `shell-mode', `term-mode' and `eshell-mode'.
20
21 \(fn &optional (ENVVAR \"EDITOR\"))" t nil)
22
23 (autoload 'with-editor-export-git-editor "with-editor" "\
24 Like `with-editor-export-editor' but always set `$GIT_EDITOR'.
25
26 \(fn)" t nil)
27
28 (autoload 'with-editor-export-hg-editor "with-editor" "\
29 Like `with-editor-export-editor' but always set `$HG_EDITOR'.
30
31 \(fn)" t nil)
32
33 (defvar shell-command-with-editor-mode nil "\
34 Non-nil if Shell-Command-With-Editor mode is enabled.
35 See the `shell-command-with-editor-mode' command
36 for a description of this minor mode.")
37
38 (custom-autoload 'shell-command-with-editor-mode "with-editor" nil)
39
40 (autoload 'shell-command-with-editor-mode "with-editor" "\
41 Teach `shell-command' to use current Emacs instance as editor.
42
43 Teach `shell-command', and all commands that ultimately call that
44 command, to use the current Emacs instance as editor by executing
45 \"EDITOR=CLIENT COMMAND&\" instead of just \"COMMAND&\".
46
47 CLIENT is automatically generated; EDITOR=CLIENT instructs
48 COMMAND to use to the current Emacs instance as \"the editor\",
49 assuming no other variable overrides the effect of \"$EDITOR\".
50 CLIENT may be the path to an appropriate emacsclient executable
51 with arguments, or a script which also works over Tramp.
52
53 Alternatively you can use the `with-editor-async-shell-command',
54 which also allows the use of another variable instead of
55 \"EDITOR\".
56
57 \(fn &optional ARG)" t nil)
58
59 (autoload 'with-editor-async-shell-command "with-editor" "\
60 Like `async-shell-command' but with `$EDITOR' set.
61
62 Execute string \"ENVVAR=CLIENT COMMAND\" in an inferior shell;
63 display output, if any.  With a prefix argument prompt for an
64 environment variable, otherwise the default \"EDITOR\" variable
65 is used.  With a negative prefix argument additionally insert
66 the COMMAND's output at point.
67
68 CLIENT is automatically generated; ENVVAR=CLIENT instructs
69 COMMAND to use to the current Emacs instance as \"the editor\",
70 assuming it respects ENVVAR as an \"EDITOR\"-like variable.
71 CLIENT may be the path to an appropriate emacsclient executable
72 with arguments, or a script which also works over Tramp.
73
74 Also see `async-shell-command' and `shell-command'.
75
76 \(fn COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER ENVVAR)" t nil)
77
78 (autoload 'with-editor-shell-command "with-editor" "\
79 Like `shell-command' or `with-editor-async-shell-command'.
80 If COMMAND ends with \"&\" behave like the latter,
81 else like the former.
82
83 \(fn COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER ENVVAR)" t nil)
84
85 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "with-editor" '("with-editor" "start-file-process--with-editor-process-filter" "server-" "shell-command--shell-command-with-editor-mode")))
86
87 ;;;***
88
89 ;;;### (autoloads nil nil ("with-editor-pkg.el") (0 0 0 0))
90
91 ;;;***
92
93 ;; Local Variables:
94 ;; version-control: never
95 ;; no-byte-compile: t
96 ;; no-update-autoloads: t
97 ;; coding: utf-8
98 ;; End:
99 ;;; with-editor-autoloads.el ends here