From fb3748caecd1ac0516277bbdca2c012b136dacfc Mon Sep 17 00:00:00 2001 From: Mykhailo Panarin <31699470+mpanarin@users.noreply.github.com> Date: Wed, 18 Dec 2019 11:50:14 +0200 Subject: [PATCH] small addition to helm and a fix for ediff --- Emacs-instructions.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Emacs-instructions.md b/Emacs-instructions.md index cb71df5..6af6a76 100644 --- a/Emacs-instructions.md +++ b/Emacs-instructions.md @@ -147,7 +147,7 @@ users may avoid this issue by commenting the following line from the above confi Char `45` is also known to have issues in macOS Mojave. -If you are having problems with helm you can disable ligatures in helm: +If you are having problems with helm you can disable ligatures in helm or disable char **46**: ```elisp (add-hook 'helm-major-mode-hook @@ -155,6 +155,16 @@ If you are having problems with helm you can disable ligatures in helm: (setq auto-composition-mode nil))) ``` +If you are having issues with ediff, you can disable char **45** or disable ligatures in ediff completely: + +```elisp + (add-hook 'ediff-mode-hook + (lambda () + (setq auto-composition-mode nil))) +``` + +**Note!** Disabling ligatures in ediff mode only removes them in the ediff buffer itself(the small buffer underneath) and not the buffers you compare. Which is probably a preferred solution + ### Using font-lock keywords If none of the above worked, you can try this method.