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:
parent
c7bfbafdcc
commit
dc489d24e7
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue