-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsyncthing-keyboard.el
101 lines (87 loc) · 3.8 KB
/
syncthing-keyboard.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
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
;;; syncthing-keyboard.el --- Client for Syncthing -*- lexical-binding: t; -*-
;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Commentary:
;;; Code:
(require 'wid-edit)
(require 'syncthing-common)
(require 'syncthing-draw)
(require 'syncthing-custom)
(defvar-local syncthing-keyboard-map
(let ((map (make-keymap)))
(set-keymap-parent map widget-keymap)
;; custom handler for RET / widget input handler
(define-key map (kbd "RET") #'syncthing--newline)
(define-key map (kbd "SPC") #'syncthing--newline)
;; X11
(when (eq window-system 'x)
(define-key function-key-map
[(control shift iso-lefttab)] [(control shift tab)])
(define-key function-key-map
[(meta shift iso-lefttab)] [(meta shift tab)])
(define-key function-key-map
[(meta control shift iso-lefttab)] [(meta control shift tab)]))
(if syncthing-old-tab-behavior
(progn
(define-key map (kbd "C-<tab>") nil)
(define-key map (kbd "C-<backtab>") nil)
(define-key map (kbd "TAB") #'syncthing--newline)
(define-key map (kbd "<backtab>") #'syncthing--tab))
(define-key map (kbd "C-<tab>") #'syncthing--newline)
(define-key map (kbd "C-<backtab>") #'syncthing--tab)
(define-key map (kbd "TAB") #'widget-forward)
(define-key map (kbd "<backtab>") #'widget-backward))
(define-key map (kbd "<mouse-1>") #'syncthing--newline)
(define-key map (kbd "?") #'describe-bindings)
(define-key map (kbd "n") #'next-line)
(define-key map (kbd "p") #'previous-line)
map)
"`syncthing-mode' key map.
* `RET'/`SPC'/`TAB' when `point' is on a foldable widget toggles the fold.
* `<backtab>' or Shift+`TAB' toggles all foldable widgets.
* `n'/`p' for navigation down/up in the buffer.")
(defun syncthing--newline (pos &optional event)
"RET/Enter/newline-keypress handler.
Argument POS Incoming EVENT position."
(interactive "@d")
(syncthing-trace)
(let ((button (syncthing--get-widget pos)))
(if button
(widget-apply-action button event)
(message "%s: %s" syncthing-prefix syncthing-msg-cant-edit-buffer))))
(defun syncthing--tab (&rest _)
"TAB handler.
Argument POS Incoming EVENT position."
(interactive "@d")
(syncthing-trace)
(let* ((data (syncthing-server-data syncthing-server))
(folders (alist-get 'folders data))
(devices (alist-get 'devices data))
(fold-folders (syncthing-buffer-fold-folders syncthing-buffer))
(fold-devices (syncthing-buffer-fold-devices syncthing-buffer))
(skip-folders (syncthing-buffer-skip-fold-folders syncthing-buffer))
(skip-devices (syncthing-buffer-skip-fold-devices syncthing-buffer)))
(if (eq (length skip-folders) (length folders))
(progn (setf skip-folders nil)
(setf fold-folders nil)
(dolist (folder folders)
(push (alist-get 'id folder) fold-folders)))
(setf skip-folders nil)
(setf fold-folders nil)
(dolist (folder folders)
(push (alist-get 'id folder) skip-folders)))
(setf (syncthing-buffer-fold-folders syncthing-buffer) fold-folders
(syncthing-buffer-skip-fold-folders syncthing-buffer) skip-folders)
(if (eq (length skip-devices) (length devices))
(progn (setf skip-devices nil)
(setf fold-devices nil)
(dolist (device devices)
(push (alist-get 'deviceID device) fold-devices)))
(setf skip-devices nil)
(setf fold-devices nil)
(dolist (device devices)
(push (alist-get 'deviceID device) skip-devices)))
(setf (syncthing-buffer-fold-devices syncthing-buffer) fold-devices
(syncthing-buffer-skip-fold-devices syncthing-buffer) skip-devices))
(syncthing--draw syncthing-server))
(provide 'syncthing-keyboard)
;;; syncthing-keyboard.el ends here