-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
eask.el
65 lines (54 loc) · 1.94 KB
/
eask.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
;;; eask.el --- Core Eask APIs, for Eask CLI development -*- lexical-binding: t; -*-
;; Copyright (C) 2023-2024 Shen, Jen-Chieh
;; Author: Shen, Jen-Chieh <jcs090218@gmail.com>
;; Maintainer: Shen, Jen-Chieh <jcs090218@gmail.com>
;; URL: https://github.com/emacs-eask/eask
;; Version: 0.10.3
;; Package-Requires: ((emacs "26.1"))
;; Keywords: lisp eask api
;; This file is not part of GNU Emacs.
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; This package provides everything you need for Eask CLI development.
;;
;; - auto-completion
;; - eldoc
;; - code navigation
;; - peek definition
;;
;; Generally, you would not want to call any of these functions or use any of
;; these variables from your Emacs editor environment. Unless you are extending
;; Eask's core functionalities.
;;
;; (@* "Usage" )
;;
;; Call the following whenever you need the to know Eask's API,
;;
;; (require 'eask-core)
;;
;; Or enable it when the project is a valid Eask project,
;;
;; (add-hook 'emacs-lisp-hook #'eask-api-setup)
;;
;; For more information, please visit our repo page
;; https://github.com/emacs-eask/eask-api
;;
;;; Code:
(defgroup eask nil
"Core Eask APIs, for Eask CLI development."
:prefix "eask-"
:group 'tool
:link '(url-link :tag "Repository" "https://github.com/emacs-eask/eask"))
(require 'eask-api)
(provide 'eask)
;;; eask.el ends here