diff options
| author | Thomas Voss <thomas.voss@humanwave.nl> | 2026-02-09 13:18:56 +0100 |
|---|---|---|
| committer | Thomas Voss <thomas.voss@humanwave.nl> | 2026-02-09 13:18:56 +0100 |
| commit | 3978f6b555f765ddb2bb5c539e2e881d3ad31078 (patch) | |
| tree | 69035d88da7c7062982c8a3002c1a56a750c931f /.config/emacs/modules/mm-keybindings.el | |
| parent | 4df49b1a68a1c5a17f9da209723622e7d12ad283 (diff) | |
emacs: Support case-(in)sensitive project regexp
Diffstat (limited to '.config/emacs/modules/mm-keybindings.el')
| -rw-r--r-- | .config/emacs/modules/mm-keybindings.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-keybindings.el b/.config/emacs/modules/mm-keybindings.el index f7038ea..e9999ad 100644 --- a/.config/emacs/modules/mm-keybindings.el +++ b/.config/emacs/modules/mm-keybindings.el @@ -90,6 +90,11 @@ the first command is remapped to the second command." open-line e/open-line yank e/yank) +(with-eval-after-load 'project + (mm-keymap-remap project-prefix-map + project-find-regexp mm-project-find-regexp + project-or-external-find-regexp mm-project-or-external-find-regexp)) + (with-eval-after-load 'cc-vars (setopt c-backspace-function #'backward-delete-char)) |