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.