From 6fb061df86fe154ff20646e56fbfcf7dc2a37aab Mon Sep 17 00:00:00 2001 From: Philippe Dosch <Philippe.Dosch@loria.fr> Date: Wed, 24 Apr 2024 09:44:24 +0200 Subject: [PATCH] =?UTF-8?q?Optimisation=20/=20m=C3=A9nage=20sur=20mailcut?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .emacs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.emacs b/.emacs index 5760bca..19fc437 100644 --- a/.emacs +++ b/.emacs @@ -1063,11 +1063,8 @@ (interactive) (end-of-line) (kill-line) - (save-excursion - (goto-char (point)) - (when (re-search-forward ">\\( *>\\)* *" nil t) - (replace-match "" nil t) - (just-one-space))) + (when (re-search-forward "[ >]*" nil t) + (replace-match " " nil t)) (end-of-line) (gin-do-auto-fill)) ;; Au niveau du mapping, c'est un peu tricky. Je n'ai pas trouvé le -- GitLab