Yannick Ulrich
Yannick Ulrich
I've started experimenting with this a bit by using `eval` in bash. The only problem is that we'd need to indicate how atuin exited, either with `return-execute` or something else....
I've played some more with this and now think that [the `mcfly` way](https://github.com/ellie/atuin/issues/78#issuecomment-1241305498) is probably the way to go, at least for zsh ```zsh _atuin_search() { ... exitcode=$? if [[...
> I'm fairly sure that #994 should also resolve this, though I've found consistently reproducing the issue tricky I can confirm that the issue is gone with the current main...
Colours should be possible, yes. LVGL supports [re-colouring](https://docs.lvgl.io/master/examples.html#line-wrap-recoloring-and-scrolling). Everything else would be quite difficult I think
I'll make the changes to implement colour using the [syntax used in LVGL](https://docs.lvgl.io/master/widgets/label.html#text-recolor) ``` Write a #ff0000 red# word ``` Implementing links seems quite complicated as it's not directly supported...
@minacode, I've made the requested changes, thanks! Regarding colouring, we can do this trivially by ```patch diff --git a/src/displayapp/screens/FileView.cpp b/src/displayapp/screens/FileView.cpp index 5026c50e..7d0e3fed 100644 --- a/src/displayapp/screens/FileView.cpp +++ b/src/displayapp/screens/FileView.cpp @@ -97,6 +97,7...
Addressing @JackRaymondCyber's comments (thanks!) > * The animation for swiping between images takes a long time on the pinetime when compared to Infinisim This could potentially be improved by [caching...
> @yannickulrich Will you update the PR and resolve merge conflicts? Otherwise i would be willing to open a new PR with resolved merge conflicts if you are not interested...
I have rebased on the current main branch with all fixes in place. The main one is of course the crash (thanks, @IchbinkeinReh) but I've also removed the swipe animation...