Results 122 comments of Stefan Huchler

Adding that advises seem to fix it but it's a ugly hack: ```emacs-lisp (advice-add 'other-window :after (lambda (x) (xah-fly-insert-mode-activate) (xah-fly-command-mode-activate))) (advice-add 'other-frame :after (lambda (x) (xah-fly-insert-mode-activate) (xah-fly-command-mode-activate))) (advice-add 'switch-to-buffer :after...

[my attempt to add exwm support to fly-keys](https://github.com/spiderbit/xah-fly-keys-exwm/tree/exwm)

btw there might be better ways to detect it but mode-name for exwm buffers are cons not a string, so if mode-name is type cons it's a X buffer.

I guess 1 at least partial solution would be to put the xah-fly--define-keys expression in a function, and call it directly afterwards? Then you could call it from outside too,...

So I informed myself the last 2 days a bit about programming languages and the details in paradigms, I have studied computer science but it was not informatic, so I...

I wrote some proof-of-concept code. I have to call py-statement manuelly for whatever reasons (maybe a bug) to get first the outer print statement selected ( print ("3") ), but...

Sorry, I thought "Informatic" is a general term, used in other countries, Informatic is here in germany a specific degree program of universities. its basicly lots of math and indirectly...

ok, I just installed it and yes it does what I wanted at least in relation to (xah-)expand-region. I just wanna mention that the primary thing I wanted or at...

So I played a bit around with the idea I described, for the eval/execute command it seems to work okish: ``` (define-key xah-danger-keymap (kbd "e") (lambda () (interactive) (if (equal...

@Fuco1 hmm yes I just had basicly the same problem, that sp-slurp-hybrid-sexp is pretty useless for ruby at least. cause it does not make any reasonable identation afterwards. I had...