From 5cc2f2ed4928037394f6a14e6c958e926424380b Mon Sep 17 00:00:00 2001 From: David Morgan Date: Sat, 4 Sep 2021 17:00:53 +0100 Subject: Fix lsp-command-map binding --- .emacs.d/lisp/init-lsp.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.emacs.d/lisp/init-lsp.el') diff --git a/.emacs.d/lisp/init-lsp.el b/.emacs.d/lisp/init-lsp.el index ec115ef..b95c6c2 100644 --- a/.emacs.d/lisp/init-lsp.el +++ b/.emacs.d/lisp/init-lsp.el @@ -11,11 +11,11 @@ (use-package lsp-mode :diminish :hook (clojure-mode . lsp) - :init + :config (if (eq system-type 'darwin) (setq lsp-keymap-prefix "s-l") (setq lsp-keymap-prefix "C-c C-l")) - :config + (define-key lsp-mode-map (kbd lsp-keymap-prefix) lsp-command-map) (diminish 'lsp-lens-mode) (setq read-process-output-max (* 1024 1024) lsp-ui-sideline-enable t -- cgit 1.4.1-2-gfad0 ut type='submit' value='switch'/> code a little bit every day in decemberelioat <elioat@tilde.institute>
about summary refs log tree commit diff stats
path: root/.gitignore
blob: 574cd5df62ce08219fa2efcad687b8c25f5d995f (plain) (blame)
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