summaryrefslogtreecommitdiff
path: root/lisp/setkey.el
blob: 3e83f5b67fbd8d809e30bec7b5d69293953a71bc (plain)
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
;;; setkey.el --- Set a temporary key binding

;; Copyright Kyle Meyer <kyle@kyleam.com>

;; Author: Kyle Meyer <kyle@kyleam.com>
;; URL: https://git.kyleam.com/emacs.d

;; 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 <http://www.gnu.org/licenses/>.

;;; Code:

(defvar setkey-command nil)
(defvar setkey-last-call-time nil)
(defvar setkey-seconds-timeout 600)

;;;###autoload
(defun setkey-call ()
  "Call `setkey-command'.
When `setkey-command' is nil or the time since the last call
has exceeded `setkey-seconds-timeout', read the command to
call."
  (interactive)
  (when (or (not setkey-command)
            (> (- (float-time) setkey-last-call-time)
               setkey-seconds-timeout))
    (setq setkey-command (read-command "Command: " setkey-command)))
  (setq setkey-last-call-time (float-time))
  (call-interactively setkey-command))

(defun setkey-reset ()
  "Reset `setkey-call' command."
  (interactive)
  (setq setkey-command nil
        setkey-last-call-time nil))

(provide 'setkey)
;;; setkey.el ends here