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.

45 lines
1.6 KiB

  1. ;;; ein-subpackages.el --- Subpackage management
  2. ;; Copyright (C) 2012- Takafumi Arakaki
  3. ;; Author: Takafumi Arakaki <aka.tkf at gmail.com>
  4. ;; This file is NOT part of GNU Emacs.
  5. ;; ein-subpackages.el is free software: you can redistribute it and/or modify
  6. ;; it under the terms of the GNU General Public License as published by
  7. ;; the Free Software Foundation, either version 3 of the License, or
  8. ;; (at your option) any later version.
  9. ;; ein-subpackages.el is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;; You should have received a copy of the GNU General Public License
  14. ;; along with ein-subpackages.el. If not, see <http://www.gnu.org/licenses/>.
  15. ;;; Commentary:
  16. ;; This module was more important when packages came from git submodules.
  17. ;; It has been gutted since.
  18. ;;
  19. ;;; Code:
  20. (defcustom ein:completion-backend 'ein:use-none-backend
  21. "EIN defaults to your individual company-mode or auto-complete-mode configuration. Change this setting to gather completions from the jupyter server::
  22. * ein:use-none-backend: local completions only (configured outside EIN)
  23. * ein:use-company-backend: company-style remote completions (elpy takes precedence)
  24. * ein:use-ac-backend: deprecated auto-complete remote completions
  25. "
  26. :type '(choice
  27. (const ein:use-none-backend)
  28. (const ein:use-company-backend)
  29. (const ein:use-ac-backend))
  30. :group 'ein)
  31. (provide 'ein-subpackages)
  32. ;;; ein-subpackages.el ends here