Gennady Uraltsev
Gennady Uraltsev
I managed to accomplish what I wanted by using ``` (general-define-key :keymaps 'override "M-," (general-simulate-key "C-x") "M-m" (general-simulate-key "C-c") ) ``` however I am confused why the original approach does...
Thanks for the heads up > You should be able to bind a key to `(general-key "C-c C-c")`. I thought about this, but then wouldn't I need to redefine every...
I ended up doing what I wanted by using: ``` (general-define-key :keymaps 'key-translation-map "M-," '(nil :wk "C-x") "M-m" '(nil :wk "C-c") "M-," (lambda (interactive) () (kbd "C-x")) "M-m" (lambda (interactive)...
Thanks! I guess now it is clear how to write things correctly for my use-case. I also figured out the option with "keymap" by a trial and error. However, I...
What do you mean by "autoloading"? For example, this code seems to work but is it correct or is the suggested way to do things different? This is an extract...
Hello! I think I found a temporary solution. The problem is not that the NumPad keys are remapped but rather that the non-numpad keys (`Home` etc) are remapped to the...
Hello! I think I found a temporary solution. The problem is not that the NumPad keys are remapped but rather that the non-numpad keys (Home etc) are remapped to the...
I found these two bug reports that seem related: https://github.com/DreymaR/BigBagKbdTrixPKL/issues/28 and https://github.com/DreymaR/BigBagKbdTrixPKL/issues/18 I experimented with the AHK key log and here is what I get when pressing `Home`: ``` 24...
I also tried weaking the Xserver itself. If I disable the numlock programmatically by using the `xnumlock` command it gets disabled but it re-enables itself as soon as I click...
I have found a workaround for this! In the file `EPKL_Layouts_Default.ini` the lines responsible for remapping the concerned keys are: ``` QWINS = INSERT VirtualKey ; SC152: Ins QWDEL =...