;;; no-spam.el --- Add repeat delays to commands -*- lexical-binding: t -*-
;; Copyright (C) 2019 Daniel Phan
;; Author: Daniel Phan <daniel.phan36@gmail.com>
;; Version: 0.0.1
;; Package-Version: 20190724.1854
;; Package-Commit: 860860e4a0d59bd15c8e092dc42f5f7f769a428e
;; Package-Requires: ((emacs "25.1"))
;; Homepage: https://github.com/mamapanda/no-spam
;; Keywords: keyboard, tools
;; This file is NOT part of GNU Emacs.
;;; License:
;;
;; 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:
;;
;; `no-spam-mode' allows adding repeat delays to commands.
;; To add a repeat delay, use the macro `no-spam-add-repeat-delay',
;; then turn on `no-spam-mode' to enable the delays.
;;; Code:
;;;###autoload
;;; no-spam.el ends here