Results 44 comments of saikyun

One way to do completion: 1. bind hotkey like tab: `(set-key file-open-data [:tab] autocomplete-file)` 2. autocomplete-file can look like this: ``` (defn autocomplete-file [props] (def partial-path (content props)) # `content`...

I'd like to figure out some way to make this a general thing, e.g. like helm. This way one could use the same filtering ui for both opening files, jumping...

this needs to be fixed first: https://github.com/saikyun/freja/issues/27

I fixed the error that popped up in the beginning with: 173f21917c9c26f2adcb2d4b0fc4e792c1c663d5 The reason was that hiccup tried to handle events before it was compiled the first time. Now I...

Main problem atm is that only solution I can come up with involves keeping the whole file in memory, or dumping it to disk. Are there other ways to do...

Would be neat to implement a diffing algorithm to only keep the changes, rather than the full file. One way that seems pretty doable that I read about (https://wiki.c2.com/?DiffAlgorithm): >The...

This happens when the initial size of freja is bigger than the maximal size of the window. This causes some internal scaling to become strange.

Hotfix is to change the call to `init-window` in `freja/main.janet` to use lower values than 900 / 700. @sogaiu

Need to test with regular raylib to see if it's a problem with raylib or with my way of setting things up.

Nice! :) Den tis 3 aug. 2021 05:45sogaiu ***@***.***> skrev: > Tried your hotfix with 800 / 600 and it worked :) > > — > You are receiving this...