diff --git a/init.el b/init.el index 452f8b6..46ff4bd 100644 --- a/init.el +++ b/init.el @@ -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-" . 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)))