amano-kenji
amano-kenji
Why don't you provide users with default key bindings? Users can still customize key bindings later. I want to have default keybindings so that I don't have to worry about...
I have used https://github.com/meow-edit/meow/blob/master/KEYBINDING_QWERTY.org without modification.
https://wayland.app/protocols/text-input-unstable-v3
What do `H-j` and `H-k` mean?
Since documentation is fixed, I think this issue can be closed.
After removing `'("j" . "H-j")` and `'("k" . "H-k")`, `SPC k` works properly in magit for me.
Here's my meow setup. ``` (defun meow-setup () (setq meow-cheatsheet-layout meow-cheatsheet-layout-qwerty) (meow-motion-overwrite-define-key '("j" . meow-next) '("k" . meow-prev) '("" . ignore)) (meow-leader-define-key ;; Use SPC (0-9) for digit arguments. '("1"...
``` hmm = n2 & coercedTo %~ (*2) :9:12: error: • Couldn't match representation of type ‘Integer’ with that of ‘Int’ arising from a use of ‘coercedTo’ • In the...
https://github.com/basilisp-lang/basilisp/issues/1242 mentions calling `basilisp.main.init()` in `__init__.py`. Can lazy loading break `basilisp.main.init()` in `__init__.py`?
Basilisp has loop and trampoline because python doesn't support tail call optimization. Loop is for a simple tail call. Trampoline is for tail call across different functions.