Mattias Eriksson
Mattias Eriksson
While we talk about new keybindings, may I add some suggestions. Right arrow: Complete the line, but stay in mcfly UI at the end of the line so you are...
I don't agree that final term stays within the terminal context. A terminal does not normaly provide a graphical popup menu. That is an element of a regular UI program....
Well if final term knows ssh is used it could try to translate it to an sftp url. Or more simply, just gray out the "nautilus style" open menu, and...
I reworked my code to avoid the need for set operations, also got it to be more efficient... so, in my part I'm currently good.
I used the default but with the snippet prio reversed to get them at the bottom of the completions, but I really think this should be some simple option, to...
None of these two solutions work from the vim plugin, right?
@tasn Only the gnome-shell is JS, most of gnome is written in C as is gnome online accounts. The gnome online accounts code is found here: https://gitlab.gnome.org/GNOME/gnome-online-accounts/ And while I...
@tasn Unfortunately my GNOME related development was a long time ago, now a days I'm mostly a user. However, I don't think the integration would need to be that complicated...
``` #[form(field = "async")] ``` have changed syntax with rocket 0.5, now it is ``` #[field(name = "async")] ``` according to https://rocket.rs/v0.5-rc/guide/requests/#forms
Using r#async worked. I was sure I had tried that, but that was possibly only in as a parameter and not in the form... anyway, seems to work now, so...