bidi-inhibit-bpa = t

Speeds up redisplay a little, but possible at the expense of folks who
use Emacs for RTL languages.
This commit is contained in:
Henrik Lissner 2020-08-04 14:58:13 -04:00
parent c7bfbafdcc
commit dc489d24e7
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -279,6 +279,11 @@ config.el instead."
(setq-default bidi-display-reordering 'left-to-right
bidi-paragraph-direction 'left-to-right)
;; Disabling the BPA makes redisplay faster, but might produce incorrect display
;; reordering of bidirectional text with embedded parentheses and other bracket
;; characters whose 'paired-bracket' Unicode property is non-nil.
(setq bidi-inhibit-bpa t) ; Emacs 27 only
;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions
;; in non-focused windows.
(setq-default cursor-in-non-selected-windows nil)