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.

44 lines
1.3 KiB

4 years ago
  1. ;;; helm-shell.el --- Shell prompt navigation for helm. -*- lexical-binding: t -*-
  2. ;; Copyright (C) 2019 Pierre Neidhardt <mail@ambrevar.xyz>
  3. ;; This program is free software; you can redistribute it and/or modify
  4. ;; it under the terms of the GNU General Public License as published by
  5. ;; the Free Software Foundation, either version 3 of the License, or
  6. ;; (at your option) any later version.
  7. ;; This program is distributed in the hope that it will be useful,
  8. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. ;; GNU General Public License for more details.
  11. ;; You should have received a copy of the GNU General Public License
  12. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ;;; Commentary:
  14. ;;
  15. ;; This is superseded by helm-comint.el.
  16. ;;; Code:
  17. (require 'cl-lib)
  18. (require 'helm)
  19. (require 'helm-lib)
  20. (require 'helm-help)
  21. (require 'helm-elisp)
  22. (require 'helm-comint)
  23. ;;;###autoload
  24. (defalias 'helm-shell-prompts 'helm-comint-prompts)
  25. ;;;###autoload
  26. (defalias 'helm-shell-prompts-all 'helm-comint-prompts-all)
  27. (provide 'helm-shell)
  28. ;; Local Variables:
  29. ;; byte-compile-warnings: (not obsolete)
  30. ;; coding: utf-8
  31. ;; indent-tabs-mode: nil
  32. ;; End:
  33. ;;; helm-shell ends here