commit ef2a20c825695e493e1769e1268a4c7a58e82378 parent 2ff3fbbaec77c8fbcdea5e40bbbbf03b5392806d Author: Alex Balgavy <alex@balgavy.eu> Date: Tue, 8 Nov 2022 22:50:01 +0100 emacs: fix cursor going off screen in ivy-posframe Diffstat:
M | emacs/config.org | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -1037,12 +1037,14 @@ Solution: ~brew tap daviderestivo/emacs-head && brew install emacs-head@28 --wit '((left-fringe . 8) (right-fringe . 8))) (ivy-posframe-border-width 3) + (ivy-truncate-lines nil) ;; otherwise the cursor gets hidden by long lines in posframe :custom-face (ivy-posframe-border ((t (:inherit mode-line-inactive)))) :config (ivy-posframe-mode 1))) #+end_src +[[https://github.com/tumashu/ivy-posframe/issues/123][See here]] for cursor going offscreen in the posframe. Currently 'solved' with ~ivy-truncate-lines~ nil. ** company: completion mechanism #+begin_src emacs-lisp (use-package company)