Compare commits

...

3 Commits

Author SHA1 Message Date
David Morgan 8cf1ee3246
Fix kill-sexp binding 2023-06-21 07:00:37 +01:00
David Morgan 7417d0a2b9
Add star buffers to consult-buffer-filter 2023-06-21 07:00:16 +01:00
David Morgan 8e10457f91
Remove unused binding 2023-06-21 06:59:03 +01:00
3 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,6 @@
("C-c D" . crux-delete-file-and-buffer)
("C-c w" . crux-cleanup-buffer-or-region)
("C-c M-o" . crux-open-with)
("C-M-z" . crux-indent-defun)
("C-c C-u" . crux-view-url)
("C-c TAB" . crux-indent-rigidly-and-copy-to-clipboard)
("C-c C-M-j" . crux-switch-to-previous-buffer)

View File

@ -335,6 +335,7 @@ DEFS is a plist associating completion categories to commands."
consult--preview-function #'ignore)))
(setq consult-narrow-key "<")
(add-to-list 'consult-buffer-filter "^\\*")
(setq consult-project-function (lambda (_) (persp-current-project-root)))

View File

@ -90,7 +90,7 @@ Equivalent to raising then wrapping."
("C-M-?" . sp-convolute-sexp)
([remap mark-sexp] . sp-mark-sexp)
("C-M-k" . sp-kill-sexp)
("M-S-k" . kill-sexp)
("M-K" . kill-sexp)
([remap sp-forward-sexp] . sp-fwd-sexp)
([remap sp-backward-sexp] . sp-bwd-sexp)
("M-[" . sp-wrap-square)