diff options
author | Case Duckworth | 2021-03-01 14:46:28 -0600 |
---|---|---|
committer | Case Duckworth | 2021-03-01 14:46:45 -0600 |
commit | 47039957b72d777357592e17e3397b4a6d511c04 (patch) | |
tree | 6b168c4f62ae711fb89650ba0c1961ba32c4e222 | |
parent | Add minibuffer eldef shorten thign (diff) | |
download | emacs-47039957b72d777357592e17e3397b4a6d511c04.tar.gz emacs-47039957b72d777357592e17e3397b4a6d511c04.zip |
Remove comments
-rw-r--r-- | init.el | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/init.el b/init.el index 3d790a9..feb26ad 100644 --- a/init.el +++ b/init.el | |||
@@ -569,21 +569,21 @@ | |||
569 | ("C-c b" . consult-bookmark) | 569 | ("C-c b" . consult-bookmark) |
570 | ("C-c k" . consult-kmacro) | 570 | ("C-c k" . consult-kmacro) |
571 | ;; C-x bindings (ctl-x-map) | 571 | ;; C-x bindings (ctl-x-map) |
572 | ("C-x M-:" . consult-complex-command) ; orig. repeat-complet-command | 572 | ("C-x M-:" . consult-complex-command) |
573 | ("C-x b" . consult-buffer) ; orig. switch-to-buffer | 573 | ("C-x b" . consult-buffer) |
574 | ("C-x 4 b" . consult-buffer-other-window) ; orig. switch-to-buffer-other-window | 574 | ("C-x 4 b" . consult-buffer-other-window) |
575 | ("C-x 5 b" . consult-buffer-other-frame) ; orig. switch-to-buffer-other-frame | 575 | ("C-x 5 b" . consult-buffer-other-frame) |
576 | ;; Custom M-# bindings for fast register access | 576 | ;; Custom M-# bindings for fast register access |
577 | ("M-#" . consult-register-load) | 577 | ("M-#" . consult-register-load) |
578 | ("M-'" . consult-register-store) ; orig. abbrev-prefix-mark (unrelated) | 578 | ("M-'" . consult-register-store) |
579 | ("C-M-#" . consult-register) | 579 | ("C-M-#" . consult-register) |
580 | ;; Other custom bindings | 580 | ;; Other custom bindings |
581 | ("M-y" . consult-yank-pop) ; orig. yank-pop | 581 | ("M-y" . consult-yank-pop) |
582 | ("<help> a" . consult-apropos) ; orig. apropos-command | 582 | ("<help> a" . consult-apropos) |
583 | ;; M-g bindings (goto-map) | 583 | ;; M-g bindings (goto-map) |
584 | ("M-g e" . consult-compile-error) | 584 | ("M-g e" . consult-compile-error) |
585 | ("M-g g" . consult-goto-line) ; orig. goto-line | 585 | ("M-g g" . consult-goto-line) |
586 | ("M-g M-g" . consult-goto-line) ; orig. goto-line | 586 | ("M-g M-g" . consult-goto-line) |
587 | ("M-g o" . consult-outline) | 587 | ("M-g o" . consult-outline) |
588 | ("M-g m" . consult-mark) | 588 | ("M-g m" . consult-mark) |
589 | ("M-g k" . consult-global-mark) | 589 | ("M-g k" . consult-global-mark) |
@@ -602,9 +602,9 @@ | |||
602 | ;; Isearch integration | 602 | ;; Isearch integration |
603 | ("M-s e" . consult-isearch) | 603 | ("M-s e" . consult-isearch) |
604 | :map isearch-mode-map | 604 | :map isearch-mode-map |
605 | ("M-e" . consult-isearch) ; orig. isearch-edit-string | 605 | ("M-e" . consult-isearch) |
606 | ("M-s e" . consult-isearch) ; orig. isearch-edit-string | 606 | ("M-s e" . consult-isearch) |
607 | ("M-s l" . consult-line)) ; required by consult-line to detect isearch | 607 | ("M-s l" . consult-line)) |
608 | :init | 608 | :init |
609 | (setq register-preview-delay 0 | 609 | (setq register-preview-delay 0 |
610 | register-preview-function #'consult-register-format) | 610 | register-preview-function #'consult-register-format) |