Replace some of the new S- binds with capital letters

Apparently I can't just do that :(
This commit is contained in:
eriedaberrie 2025-02-12 22:58:57 +00:00
parent 417f9fc20b
commit 8f0da429f6

10
init.el
View file

@ -136,9 +136,9 @@
("C-+" . mc/mark-all-like-this)
("C-|" . mc/mark-pop)
("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 S-u" . mc/mark-all-dwim)
("C-c U" . mc/mark-all-dwim)
("C-S-<mouse-1>" . mc/add-cursor-on-click)
:custom
(mc/always-run-for-all t))
@ -304,8 +304,8 @@
("C-c e r" . eglot-rename)
("C-c e f" . eglot-format)
("C-c e s" . eglot-shutdown)
("C-c e S-s" . eglot-shutdown-all)
("C-c e S-r" . eglot-reconnect))
("C-c e S" . eglot-shutdown-all)
("C-c e R" . eglot-reconnect))
:hook
(c-mode . eglot-ensure)
(c-ts-mode . eglot-ensure)
@ -365,7 +365,7 @@
(use-package consult-yasnippet
:bind
("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
:bind (:map eglot-mode-map ("C-c e /" . consult-eglot-symbols)))