-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.lisp
163 lines (145 loc) · 6.96 KB
/
help.lisp
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
;; Copyright (C) 2008 Shawn Betts
;;
;; This file is part of thesiswm.
;;
;; thesiswm 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 2, or (at your option)
;; any later version.
;; thesiswm 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 software; see the file COPYING. If not, see
;; <http://www.gnu.org/licenses/>.
;; Commentary:
;;
;; Help and introspection commands
;;
;; Code:
(in-package #:thesiswm)
(export '())
(defun columnize (list columns &key col-aligns (pad 1) (char #\Space) (align :left))
;; only somewhat nasty
(let* ((rows (ceiling (length list) columns))
(data (loop for i from 0 below (length list) by (max rows 1)
collect (subseq list i (min (+ i rows) (length list)))))
(max (mapcar (lambda (col)
(reduce 'max col :key 'length :initial-value 0))
data))
(padstr (make-string pad :initial-element char))
(cols ;; normalize width
(loop
for i in data
for j in max
for c from 0
collect (loop
for k from 0 below rows
for s = (or (nth k i) "")
for len = (make-string (- j (length s))
:initial-element char)
collect (ecase (or (nth c col-aligns) align)
(:left (format nil "~a~a~a" (if (= c 0) "" padstr) s len))
(:right (format nil "~a~a~a" (if (= c 0) "" padstr) len s)))))))
(apply 'mapcar 'concat (or cols '(nil)))))
(defun display-bindings-for-keymaps (key-seq &rest keymaps)
(let* ((screen (current-screen))
(data (mapcan (lambda (map)
(mapcar (lambda (b) (format nil "^5*~5a^n ~a" (print-key (binding-key b)) (binding-command b))) (kmap-bindings map)))
keymaps))
(cols (ceiling (1+ (length data))
(truncate (- (head-height (current-head)) (* 2 (screen-msg-border-width screen)))
(font-height (screen-font screen))))))
(message-no-timeout "Prefix: ~a~%~{~a~^~%~}"
(print-key-seq key-seq)
(or (columnize data cols) '("(EMPTY MAP)")))))
(defcommand commands () ()
"List all available commands."
(let* ((screen (current-screen))
(data (all-commands))
(cols (ceiling (length data)
(truncate (- (head-height (current-head)) (* 2 (screen-msg-border-width screen)))
(font-height (screen-font screen))))))
(message-no-timeout "~{~a~^~%~}"
(columnize data cols))))
(defcommand describe-key (keys) ((:key-seq "Describe Key: "))
"Either interactively type the key sequence or supply it as text. This
command prints the command bound to the specified key sequence."
(let ((cmd (loop for map in (top-maps)
for cmd = (lookup-key-sequence map keys)
when cmd return cmd)))
(if cmd
(message "~{~a~^ ~} is bound to \"~a\"." (mapcar 'print-key keys) cmd)
(message "~{~a~^ ~} is not bound." (mapcar 'print-key keys)))))
(defcommand describe-variable (var) ((:variable "Describe Variable: "))
"Print the online help associated with the specified variable."
(message-no-timeout "~a"
(with-output-to-string (s)
(describe var s))))
(defcommand describe-function (fn) ((:function "Describe Function: "))
"Print the online help associated with the specified function."
(message-no-timeout "~a"
(with-output-to-string (s)
(describe fn s))))
(defcommand describe-command (com) ((:command "Describe Command: "))
"Print the online help associated with the specified command."
(let* ((deref (dereference-command-symbol com))
(struct (get-command-structure com nil)))
(cond ((null struct)
(message "Error: Command \"~a\" not found." com))
((eq deref struct)
(message-no-timeout "Command \"~a\":~%~a" (command-name struct)
(documentation (command-name struct) 'function)))
(t
(message-no-timeout "\"~a\" is an alias for the command \"~a\":~%~a" (command-alias-from deref) (command-name struct)
(documentation (command-name struct) 'function))))))
(defcommand where-is (cmd) ((:rest "Where is command: "))
"Print the key sequences bound to the specified command."
(let ((bindings (loop for map in (top-maps) append (search-kmap cmd map))))
(if bindings
(message-no-timeout "\"~a\" is on ~{~a~^, ~}"
cmd
(mapcar 'print-key-seq bindings))
(message-no-timeout "Command \"~a\" is not currently bound"
cmd))))
(defun get-kmaps-at-key (kmaps key)
(dereference-kmaps
(reduce
(lambda (result map)
(let* ((binding (find key (kmap-bindings map)
:key 'binding-key :test 'equalp))
(command (when binding (binding-command binding))))
(if command
(setf result (cons command result))
result)))
kmaps
:initial-value ())))
(defun get-kmaps-at-key-seq (kmaps key-seq)
"get a list of kmaps that are activated when pressing KEY-SEQ when
KMAPS are enabled"
(if (= 1 (length key-seq))
(get-kmaps-at-key kmaps (first key-seq))
(get-kmaps-at-key-seq (get-kmaps-at-key kmaps (first key-seq))
(rest key-seq))))
(defun which-key-mode-key-press-hook (key key-seq cmd)
"*key-press-hook* for which-key-mode"
(declare (ignore key cmd))
(when (not (eq *top-map* *resize-map*))
(let* ((oriented-key-seq (reverse key-seq))
(maps (get-kmaps-at-key-seq (dereference-kmaps (top-maps)) oriented-key-seq)))
(when (remove-if-not 'kmap-p maps)
(apply 'display-bindings-for-keymaps oriented-key-seq maps)))))
(defcommand which-key-mode () ()
"Toggle which-key-mode"
(if (find 'which-key-mode-key-press-hook *key-press-hook*)
(remove-hook *key-press-hook* 'which-key-mode-key-press-hook)
(add-hook *key-press-hook* 'which-key-mode-key-press-hook)))
(defcommand modifiers () ()
"List the modifiers thesiswm recognizes and what MOD-X it thinks they're on."
(message "~@{~5@a: ~{~(~a~)~^ ~}~%~}"
"Meta" (modifiers-meta *modifiers*)
"Alt" (modifiers-alt *modifiers*)
"Super" (modifiers-super *modifiers*)
"Hyper" (modifiers-hyper *modifiers*)
"AltGr" (modifiers-altgr *modifiers*)))