diff options
-rw-r--r-- | pcmpl-emerge.el | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pcmpl-emerge.el b/pcmpl-emerge.el index 8c614a1..00cb79f 100644 --- a/pcmpl-emerge.el +++ b/pcmpl-emerge.el @@ -1,3 +1,35 @@ +;;; pcmpl-rc.el --- Completions For Emerge Command -*- lexical-binding: t; -*- + +;; Copyright (C) 2024 Thanos Apollo + +;; Author: Thanos Apollo <[email protected]> +;; Keywords: pcomplete completions emerge gentoo +;; URL: https://git.thanosapollo.com/pcmpl-emerge +;; Version: 0.0.1 + +;; Package-Requires: ((emacs "27.2")) + +;; 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: + +;; Under development + +;;; Code: + +(require 'cl-lib) +(require 'pcomplete) (defvar pcmpl-emerge-package-completions '() "Cache for emerge package completions.") |