1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03:00

small addition to helm and a fix for ediff

Mykhailo Panarin 2019-12-18 11:50:14 +02:00
parent b392476c45
commit fb3748caec

@ -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.