Personal emacs config
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.

88 lines
2.7 KiB

  1. ;;; pyvenv-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 "pyvenv" "pyvenv.el" (0 0 0 0))
  7. ;;; Generated autoloads from pyvenv.el
  8. (autoload 'pyvenv-activate "pyvenv" "\
  9. Activate the virtual environment in DIRECTORY.
  10. \(fn DIRECTORY)" t nil)
  11. (autoload 'pyvenv-deactivate "pyvenv" "\
  12. Deactivate any current virtual environment." t nil)
  13. (autoload 'pyvenv-workon "pyvenv" "\
  14. Activate a virtual environment from $WORKON_HOME.
  15. If the virtual environment NAME is already active, this function
  16. does not try to reactivate the environment.
  17. \(fn NAME)" t nil)
  18. (defvar pyvenv-mode nil "\
  19. Non-nil if Pyvenv mode is enabled.
  20. See the `pyvenv-mode' command
  21. for a description of this minor mode.
  22. Setting this variable directly does not take effect;
  23. either customize it (see the info node `Easy Customization')
  24. or call the function `pyvenv-mode'.")
  25. (custom-autoload 'pyvenv-mode "pyvenv" nil)
  26. (autoload 'pyvenv-mode "pyvenv" "\
  27. Global minor mode for pyvenv.
  28. If called interactively, enable Pyvenv mode if ARG is positive,
  29. and disable it if ARG is zero or negative. If called from Lisp,
  30. also enable the mode if ARG is omitted or nil, and toggle it if
  31. ARG is `toggle'; disable the mode otherwise.
  32. Will show the current virtualenv in the mode line, and respect a
  33. `pyvenv-workon' setting in files.
  34. \(fn &optional ARG)" t nil)
  35. (defvar pyvenv-tracking-mode nil "\
  36. Non-nil if Pyvenv-Tracking mode is enabled.
  37. See the `pyvenv-tracking-mode' command
  38. for a description of this minor mode.
  39. Setting this variable directly does not take effect;
  40. either customize it (see the info node `Easy Customization')
  41. or call the function `pyvenv-tracking-mode'.")
  42. (custom-autoload 'pyvenv-tracking-mode "pyvenv" nil)
  43. (autoload 'pyvenv-tracking-mode "pyvenv" "\
  44. Global minor mode to track the current virtualenv.
  45. If called interactively, enable Pyvenv-Tracking mode if ARG is
  46. positive, and disable it if ARG is zero or negative. If called
  47. from Lisp, also enable the mode if ARG is omitted or nil, and
  48. toggle it if ARG is `toggle'; disable the mode otherwise.
  49. When this mode is active, pyvenv will activate a buffer-specific
  50. virtualenv whenever the user switches to a buffer with a
  51. buffer-local `pyvenv-workon' or `pyvenv-activate' variable.
  52. \(fn &optional ARG)" t nil)
  53. (autoload 'pyvenv-restart-python "pyvenv" "\
  54. Restart Python inferior processes." t nil)
  55. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pyvenv" '("pyvenv-")))
  56. ;;;***
  57. ;; Local Variables:
  58. ;; version-control: never
  59. ;; no-byte-compile: t
  60. ;; no-update-autoloads: t
  61. ;; coding: utf-8
  62. ;; End:
  63. ;;; pyvenv-autoloads.el ends here