You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I try byte-compiling my init for xah-fly-keys, it causes the customizations xah-fly-use-meta-key and xah-fly-use-control-key to not be picked up, before loading the xah-fly-keys package.
(And all my control/meta keys are bound up by the xah-fly-keys package.)
As a workaround, I can add ;;; xah-fly-keys-config.el --- -*- no-byte-compile: t -*- to my config file; and everything works fine. Perhaps it's my fault, and I shouldn't try to byte-compile everything ;P.
On the other hand, I was thinking maybe it would be cleaner to package the keybindings into a function, which could be called when the user enables (xah-fly-keys 1) for the first time. Any thoughts on this?
(PS I am happy to do the work and submit a pull-request, if you think it might be a good idea.)
My current config, for reference, (tested with xah-fly-keys_old_2020-04-18.el). ;;; xah-fly-keys-config.el --- -*- no-byte-compile: t -*- (setq xah-fly-use-meta-key nil) (setq xah-fly-use-control-key nil) (use-package "xah-fly-keys" :ensure t :init (require 'xah-fly-keys) (xah-fly-keys-set-layout 'colemak) (xah-fly-keys 1) )
All the best,
R
The text was updated successfully, but these errors were encountered:
Hi,
If I try byte-compiling my init for
xah-fly-keys
, it causes the customizationsxah-fly-use-meta-key
andxah-fly-use-control-key
to not be picked up, before loading thexah-fly-keys
package.(And all my control/meta keys are bound up by the
xah-fly-keys
package.)As a workaround, I can add
;;; xah-fly-keys-config.el --- -*- no-byte-compile: t -*-
to my config file; and everything works fine. Perhaps it's my fault, and I shouldn't try to byte-compile everything ;P.On the other hand, I was thinking maybe it would be cleaner to package the keybindings into a function, which could be called when the user enables
(xah-fly-keys 1)
for the first time.Any thoughts on this?
(PS I am happy to do the work and submit a pull-request, if you think it might be a good idea.)
My current config, for reference, (tested with xah-fly-keys_old_2020-04-18.el).
;;; xah-fly-keys-config.el --- -*- no-byte-compile: t -*-
(setq xah-fly-use-meta-key nil)
(setq xah-fly-use-control-key nil)
(use-package "xah-fly-keys"
:ensure t
:init
(require 'xah-fly-keys)
(xah-fly-keys-set-layout 'colemak)
(xah-fly-keys 1)
)
All the best,
R
The text was updated successfully, but these errors were encountered: