diff options
author | JSDurand <mmemmew@gmail.com> | 2021-02-25 18:43:04 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-02-25 18:43:04 +0800 |
commit | 54fc2884baaf68a8bf5ab8033c64512056215a82 (patch) | |
tree | 0a538a22286c13b2ab588fafd3132d2f2f1563c8 /basic.el | |
parent | 43361742793189be2797d8c7767c44f6fa4fa8c2 (diff) |
bidi, super, and rlist-verbose.
* basic.el (bidi-paragraph-direction):
(bidi-inhibit-bpa): Setting the direction of the text to speed
redisplay up.
(global-map): Use bitwise or with (ash 1 23) to have the effect of
super.
* init.el ("rlist"): List all the contents of the registers.
Diffstat (limited to 'basic.el')
-rw-r--r-- | basic.el | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -6,6 +6,11 @@ (set 'eval-expression-print-length nil) ;; A value of nil means no limit. (set 'eval-expression-print-level nil) ;; A value of nil means no limit. +;;; Setting the direction of the text can speed things up. + +(set-default 'bidi-paragraph-direction 'left-to-right) +(set 'bidi-inhibit-bpa t) + ;;; resize horizontally (set 'fit-window-to-buffer-horizontally t) @@ -374,8 +379,10 @@ window horizontally." (define-key global-map (vector ?\s-&) #'delete-other-windows) (define-key global-map (vector ?\s-é) #'split-window-below) ;; The following binds the key ?\s-" represented as a number, since -;; otherwise it would be interpreted as a string quote. -(define-key global-map (vector 8388642) #'split-window-right) +;; otherwise it would be interpreted as a string quote. Here #x22 = 34 +;; is the character code of the quote, and bitwise or with (ash 1 23) +;; is the effect of super. +(define-key global-map (vector (logior (ash 1 23) #x22)) #'split-window-right) (define-key global-map (vector ?\s-à) #'delete-window) (define-key global-map (vector ?\C-+) #'durand-enlarge-window) (define-key global-map (vector ?\C-=) #'durand-shrink-window) |