Stefan Huchler
Stefan Huchler
@dvdkhlng no that does not work, exwm is more than just another major mode, it fiddles with some fundamentals of emacs, because having X buffers. I am no expert of...
https://marmalade-repo.org/packages/db-0.0.7.el created: 23rd september 2012
! ;; Package-Requires: ((kv "0.0.19")) ! ;; Version: 0.0.7 ! ;; Package-Requires: ((kv "0.0.11")) ! ;; Version: 0.0.6 well thats the difference so its more or less the same version...
Would that be hard to add that to xah-fly-keys or has any disadvantages?
So I just looked a bit into that problem didn't even remember that I reported this as "bug" already, but the solution to this is the following, I wonder if...
small mistake it's not the org-agenda-mode-hook but org-agenda-finalize-hook: ```emacs-lisp (add-hook 'org-agenda-finalize-hook #'xah-fly-insert-mode-activate) ```
That should do the trick: ``` (add-hook 'xah-fly-insert-mode-activate-hook (lambda () (set-input-method "german-postfix"))) (add-hook 'xah-fly-command-mode-activate-hook 'deactivate-input-method) ``` hmm wonder why I never thought about that, I guess because I never relied...
The next problems is still mixing that with exwm, I can't deny the X buffers the a or space keys because they have no insert / command mode technically. Not...
ok that seems to work: ```emacs-lisp (add-hook 'xah-fly-insert-mode-activate-hook (lambda () (set-input-method "german-postfix") (setq exwm-input-prefix-keys (remove ?a exwm-input-prefix-keys)) (setq exwm-input-prefix-keys (remove ?u exwm-input-prefix-keys)) (setq exwm-input-prefix-keys (remove ?\s exwm-input-prefix-keys)))) (add-hook 'xah-fly-command-mode-activate-hook (lambda...
```emacs-lisp (setq default-input-method nil) (defun sb/setup-fly-keys-command-mode () (deactivate-input-method) (push ?w exwm-input-prefix-keys) (push ?u exwm-input-prefix-keys) (push ?a exwm-input-prefix-keys) (push ?\s exwm-input-prefix-keys) (setq exwm-input-prefix-keys (remove 'home exwm-input-prefix-keys)) (setq exwm-input-prefix-keys (remove 'end exwm-input-prefix-keys)))...