diff --git a/Emacs-instructions.md b/Emacs-instructions.md index bf496ef..7a9263a 100644 --- a/Emacs-instructions.md +++ b/Emacs-instructions.md @@ -39,7 +39,16 @@ 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 of `helm-match` +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. + +```elisp + (defun my-minibuffer-setup () + (set (make-local-variable 'face-remapping-alist) + '((default :family "Menlo")))) + + (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup) + +``` If you're using the latest [railwaycat Mac port](https://github.com/railwaycat/homebrew-emacsmacport) of Emacs, you can instead use: