Klimi's new dotfiles with stow.
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.

99 lines
3.5 KiB

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