vindarel

Results 591 comments of vindarel

I can give a few hints. Yes it is called modeline too. There is the file `src/modeline.lisp`, defining: - the list of everything to display: `*modeline-status-list*` it can be any...

2 cents because I didn't know the keys before: - `image-zoom-[out/in]` bound to `C - -` and `C - +` - `image-zoom-reset` `C - 0`

We added the keys +, - and 0 on the main branch.

ah damn! Thanks for testing. I'll need to test more with your input and send another PR.

- does it work with your original 3000x3000 image? - in this use case, is it the following: - small image, fit to screen does nothing (I wouldn't be surprised,...

@Dima-369 It was a feature, there was a check that the image was smaller :p Should be good now.

I'll bet there is something you can do with `keyboard.lisp:get-modifier` (you could re-define it in your Lem init file). ```diff (defun get-modifier (keysym) (let* ((mod (sdl2:mod-value keysym)) … (meta (mod-p...

> debugged … (with-open-file (stream "~/a.txt" tip: I use `(log:info mod shift …)` coupled with `(log:config :info)` in your Lem init or typed in a REPL. Logs are printed on...

I notice the code has changed a bit: now the mapping that says what is a modifier key is moved to a global parameter. In frontends/sdl2/keyboard.lisp: ```lisp (defparameter *modifier-code-table* `((:shift...

This appears to be an issue with a *release*, which doesn't know about an ASDF Lem system. ```lisp (asdf:component-children (asdf:find-component :lem "commands")) ^^^ => NIL in a release ``` If...