From 9ebc4a3b1f07c0838bea1d9b5b02e79910fc9e46 Mon Sep 17 00:00:00 2001 From: "Juan E. Maya" Date: Fri, 2 Feb 2018 13:05:15 +0100 Subject: [PATCH] Updated Emacs instructions (markdown) --- Emacs-instructions.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Emacs-instructions.md b/Emacs-instructions.md index 7a9263a..8304141 100644 --- a/Emacs-instructions.md +++ b/Emacs-instructions.md @@ -39,14 +39,12 @@ Note! If you get `error in process filter: Attempt to shape unibyte text`, check ;; (46 . ".\\(?:\\(?:\\.[.<]\\)\\|[.=-]\\)") ``` -If you are using `projectile-ag` and having the error `error in process filter: Attempt to shape unibyte text` you might want to change the font face for your minibuffer. +If you are having problems with helm you can disable ligatures in helm: ```elisp - (defun my-minibuffer-setup () - (set (make-local-variable 'face-remapping-alist) - '((default :family "Menlo")))) - - (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup) + (add-hook 'helm-major-mode-hook + (lambda () + (setq auto-composition-mode nil))) ```