Commit f60997e 1 parent c0288e8 commit f60997e Copy full SHA for f60997e
File tree 3 files changed +17
-0
lines changed
layers/+intl/keyboard-layout
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -2395,6 +2395,7 @@ Other:
2395
2395
- Fixed =bepo= layout, commented out broken evil-window :common bindings
2396
2396
(thanks to CharlesHD)
2397
2397
- Added evil-lisp-state mapping (thanks to Damien Picard)
2398
+ - Added ediff mapping (thanks to iv-nn)
2398
2399
**** Kivy
2399
2400
- Added the =kivy= package (thanks to Nasser Alshammari and Ryota Kayanuma)
2400
2401
**** LaTeX
Original file line number Diff line number Diff line change @@ -243,6 +243,7 @@ The available configurations are:
243
243
- avy
244
244
- comint
245
245
- company
246
+ - ediff
246
247
- elfeed
247
248
- evil
248
249
- evil-escape
Original file line number Diff line number Diff line change 15
15
avy
16
16
comint
17
17
company
18
+ ediff
18
19
elfeed
19
20
evil
20
21
evil-cleverparens
105
106
" C-k"
106
107
" C-l" )))
107
108
109
+ (defun keyboard-layout/pre-init-ediff ()
110
+ (kl|config ediff
111
+ :description
112
+ " Remap `ediff' bindings."
113
+ :loader
114
+ ; ; HACK: ediff-mode-map is only defined when ediff is started
115
+ (add-hook 'ediff-startup-hook #' (lambda () BODY))
116
+ :common
117
+ (kl/correct-keys ediff-mode-map
118
+ " h"
119
+ " j"
120
+ " k"
121
+ " l" )))
122
+
108
123
(defun keyboard-layout/pre-init-elfeed ()
109
124
(kl|config elfeed
110
125
:description
You can’t perform that action at this time.
0 commit comments