-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvoicemacs-it.el
58 lines (45 loc) · 1.7 KB
/
voicemacs-it.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
(require 'voicemacs-base)
(require 'voicemacs-command)
(defvar voicemacs-it-type-keys
'(name
modes
available-actions)
"List of keys to synchronize from each object type.
These keys will be included when the object type is passed to the
client. Other keys will be discarded. This is used to limit the
information leaving Emacs.")
(defun voicemacs--it-filter-type (object-type keys)
"Get a filtered variant of `object-type' with just `keys'."
(-filter (lambda (property-pair)
(member (car property-pair) keys))
object-type))
(defun voicemacs--it-object-types ()
"Get all available it object types.
The empty string will be used as the key for global objects,
rather than `nil'."
(voicemacs--maphash
(lambda (mode objects)
(cons
;; Global objects are stored under the `nil' key, but we can't
;; encode a `nil' key into JSON. Replace it with `global'.
(or mode 'global)
;; Simplify the objects, remove redundant information
(voicemacs--maphash (lambda (name type)
;; Just transfer the info we need
(voicemacs--it-filter-type type voicemacs-it-type-keys))
objects)))
it-object-types))
(with-eval-after-load 'it
;; TODO: Maybe just expose all `it' actions?
(voicemacs-expose-function 'it-wrap)
(voicemacs-expose-function 'it-text-of-thing-at-dwim)
(voicemacs-define-sync it-object-types
:update (voicemacs--it-object-types)
:enable (add-hook 'it-define-object-hook sync-func)
:disable (remove-hook 'it-define-object-hook sync-func)
:defer t
;; May be a big sync.
:delay 0.1
))
(provide 'voicemacs-it)
;;; voicemacs-it.el ends here