Results 122 comments of Stefan Huchler

The problem with that solution is that in command mode generally this keybindings are active, but I use exwm and that would also translate this buttons in exwm buffers. For...

But it used to work better, so you did rewrite it recently?

Well its possible that it was 1 year old I did not update it very often cause I fear something breaks (for my usecase) even learning some different keybindings can...

Well just tested it with the last version from 2015: https://github.com/xahlee/xah-fly-keys/tree/668895c2f6014174b0e42539b9d2963ed71b401c had to evaluate xah-extend-selection and xah-semnav-up same example: ```elisp (defun test (args) (print (+| 1 2))) ``` 1. press...

In C-syntax langs its a mixed bag: example: Python: ```python print("te|st") ``` Java: ```java System.println("te|st") ``` ruby: ```ruby puts "te|st" ``` with the current version it has 2 extensions: 1....

select current work? what does that mean? ```elisp print ("test | 1111") ``` when I expand here it expands to the 3 spaces, so it does not even expand to...

Well but that is no real solution, not even a workaround, because it only shows then the letters correct in the minibuffer but not in the box. Can you tell...

Ok with minibuffer-setup-hook you can deactivate input method, that's a good starting point / workaround. Still not ideal because in the actual minibuffer it supports umlauts and if I want...

so I wrote/copy-pasted a small sample code ``` elisp (require 'db) (defvar my-db (db-make `(db-hash :filename ,(format "/tmp/dbtest1")))) (db-hash-put "001" '(("a" . 10)("b" . 20)) my-db) (db-hash/save my-db) ``` the...

Well, I wrote a quick and dirty hack/patch by modifying the save function: ``` elisp (require 's) ... (defun db-hash/save (db) ... (let ((fmt-obj (format "(throw 'return %S)" (plist-get db...