summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-02-19 19:55:32 -0500
committertdback <tyler@tdback.net>2025-02-19 19:55:32 -0500
commit6fa2c0d86ea4ea109bb71bf091409abd0726c306 (patch)
treecbfc812d7da21a3d1c4bb1f07e8aa2b2b9acbcb1
parent08cc9fa47615d85d8ab284c56585575774e2e625 (diff)
lisp/td-common: manage buffers with ibuffer
-rw-r--r--lisp/td-common.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/td-common.el b/lisp/td-common.el
index 061b1f7..3d973de 100644
--- a/lisp/td-common.el
+++ b/lisp/td-common.el
@@ -41,13 +41,13 @@ sexp before the line end to delete, delete one sexp forward."
(use-package consult
:ensure t
:demand t
- :bind (("M-s g" . consult-ripgrep)
- ("M-s f" . consult-find)
- ("M-s i" . consult-imenu)
- ("M-s l" . consult-line)
- ("C-x C-b" . consult-buffer)
+ :bind (("M-s g" . consult-ripgrep)
+ ("M-s f" . consult-find)
+ ("M-s i" . consult-imenu)
+ ("M-s l" . consult-line)
+ ("C-x b" . consult-buffer)
:map minibuffer-local-map
- ("C-r" . consult-history)))
+ ("C-r" . consult-history)))
(use-package consult-dir
:ensure t
@@ -64,6 +64,7 @@ sexp before the line end to delete, delete one sexp forward."
:bind (("M-c" . capitalize-dwim)
("M-u" . upcase-dwim)
("M-l" . downcase-dwim)
+ ("C-x C-b" . ibuffer)
("C-x M-t" . transpose-regions)
("C-g" . td/quit-if-not-in-macro)))