[oni-gui] Disable ligatures on Windows
I'm trying to fix an issue with loading a C# file that freezes my Emacs on Windows. I've turned off the other functions, but it appears that this still happens. If I have ligatures off, it seems to work ok.
This commit is contained in:
parent
9b8a001b62
commit
9e9da4471a
1 changed files with 8 additions and 9 deletions
13
oni-gui.el
13
oni-gui.el
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2021.1201.174449
|
;; Version: 2021.1201.181902
|
||||||
;; Package-Requires: (oni-ui oni-hydra yoshi-theme diminish)
|
;; Package-Requires: (oni-ui oni-hydra yoshi-theme diminish)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -113,16 +113,15 @@ _bi_: Auto Insert ^^ ^^
|
||||||
|
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
|
|
||||||
(if (daemonp)
|
(unless (eq system-type 'windows-nt)
|
||||||
|
(if (daemonp)
|
||||||
(progn
|
(progn
|
||||||
(add-hook 'after-make-frame-functions #'oni-gui-setup-ligatures)
|
(add-hook 'after-make-frame-functions #'oni-gui-setup-ligatures)
|
||||||
(unless (eq system-type 'windows-nt)
|
|
||||||
(add-hook 'after-make-frame-functions #'oni-gui-setup-fontsets)
|
(add-hook 'after-make-frame-functions #'oni-gui-setup-fontsets)
|
||||||
(add-hook 'after-make-frame-functions #'oni-gui-setup-faces)))
|
(add-hook 'after-make-frame-functions #'oni-gui-setup-faces))
|
||||||
(unless (eq system-type 'windows-nt)
|
|
||||||
(oni-gui-setup-fontsets nil)
|
(oni-gui-setup-fontsets nil)
|
||||||
(oni-gui-setup-faces nil))
|
(oni-gui-setup-faces nil)
|
||||||
(oni-gui-setup-ligatures))
|
(oni-gui-setup-ligatures)))
|
||||||
|
|
||||||
(global-unset-key (kbd "C-z"))
|
(global-unset-key (kbd "C-z"))
|
||||||
(global-set-key (kbd "C-c c") 'oni-gui-hydra/body)
|
(global-set-key (kbd "C-c c") 'oni-gui-hydra/body)
|
||||||
|
|
Loading…
Reference in a new issue