Replace some of the new S- binds with capital letters
Apparently I can't just do that :(
This commit is contained in:
parent
417f9fc20b
commit
8f0da429f6
10
init.el
10
init.el
|
@ -136,9 +136,9 @@
|
||||||
("C-+" . mc/mark-all-like-this)
|
("C-+" . mc/mark-all-like-this)
|
||||||
("C-|" . mc/mark-pop)
|
("C-|" . mc/mark-pop)
|
||||||
("C-c c" . mc/mark-all-in-region)
|
("C-c c" . mc/mark-all-in-region)
|
||||||
("C-c S-c" . mc/mark-all-in-region-regexp)
|
("C-c C" . mc/mark-all-in-region-regexp)
|
||||||
("C-c u" . mc/mark-all-like-this-dwim)
|
("C-c u" . mc/mark-all-like-this-dwim)
|
||||||
("C-c S-u" . mc/mark-all-dwim)
|
("C-c U" . mc/mark-all-dwim)
|
||||||
("C-S-<mouse-1>" . mc/add-cursor-on-click)
|
("C-S-<mouse-1>" . mc/add-cursor-on-click)
|
||||||
:custom
|
:custom
|
||||||
(mc/always-run-for-all t))
|
(mc/always-run-for-all t))
|
||||||
|
@ -304,8 +304,8 @@
|
||||||
("C-c e r" . eglot-rename)
|
("C-c e r" . eglot-rename)
|
||||||
("C-c e f" . eglot-format)
|
("C-c e f" . eglot-format)
|
||||||
("C-c e s" . eglot-shutdown)
|
("C-c e s" . eglot-shutdown)
|
||||||
("C-c e S-s" . eglot-shutdown-all)
|
("C-c e S" . eglot-shutdown-all)
|
||||||
("C-c e S-r" . eglot-reconnect))
|
("C-c e R" . eglot-reconnect))
|
||||||
:hook
|
:hook
|
||||||
(c-mode . eglot-ensure)
|
(c-mode . eglot-ensure)
|
||||||
(c-ts-mode . eglot-ensure)
|
(c-ts-mode . eglot-ensure)
|
||||||
|
@ -365,7 +365,7 @@
|
||||||
(use-package consult-yasnippet
|
(use-package consult-yasnippet
|
||||||
:bind
|
:bind
|
||||||
("C-c s" . consult-yasnippet)
|
("C-c s" . consult-yasnippet)
|
||||||
("C-c S-s" . consult-yasnippet-visit-snippet-file))
|
("C-c S" . consult-yasnippet-visit-snippet-file))
|
||||||
|
|
||||||
(use-package consult-eglot
|
(use-package consult-eglot
|
||||||
:bind (:map eglot-mode-map ("C-c e /" . consult-eglot-symbols)))
|
:bind (:map eglot-mode-map ("C-c e /" . consult-eglot-symbols)))
|
||||||
|
|
Loading…
Reference in a new issue