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.

39 lines
1.4 KiB

5 years ago
  1. ;;; php-local-manual.el --- Tools for local PHP manual -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2020 Friends of Emacs-PHP development
  3. ;; Author: Eric James Michael Ritz
  4. ;; Maintainer: USAMI Kenta <tadsan@zonu.me>
  5. ;; URL: https://github.com/emacs-php/php-mode
  6. ;; Keywords: docs, php
  7. ;; Version: 2.0.0
  8. ;; License: GPL-3.0-or-later
  9. ;; This program is free software; you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
  19. ;;; Commentary:
  20. ;; This package helps you search the locally installed PHP Manual.
  21. ;; If you're only developing online, this feature is probably unnecessary.
  22. ;;; Code:
  23. (require 'php-mode)
  24. (defalias 'php-local-manual-search #'php-search-local-documentation)
  25. ;; TODO: move implementation
  26. ;; (define-obsolete-function-alias 'php-search-local-documentation #'php-local-manual-search)
  27. (provide 'php-local-manual)
  28. ;;; php-local-manual.el ends here