Diamond

Results 394 comments of Diamond

> Currently gtkcord4 does not remember your username/password or the resulting token. It does. After the username and password are given, the returned token is stored. That's why there's a...

I think you're right. Perhaps component.go:186 should be calling `c.loginToken`. Can you test that and see if it works?

> and now it's busy burning 1 of 2 of my old CPU cores on gcc (it would be a lot more wasteful on my modern 12-thread CPU where I...

Interesting. Are you scrolling using a touchpad? Do you know if your application is rendering via Cairo (software) or OpenGL (hardware)? You should be able to check that via Ctrl...

If I have to guess, it's the hover background transition. I'll see if I can experiment with it.

I think for starter, a requirement to link a table of the hand-written doc to a reference key within the OpenAPI documentation or vice versa would go a very long...

Can we also apply a cooldown for the autosave? I rely on this feature quite a lot, and it's really useful for crashes, since the saving is always reliable.

I think it would be best if this is done as a toggleable option instead.

The current workaround is to have a regex: ```go var ansiLinkRe = regexp.MustCompile(`(?m)\x1b]8;;([^\x1b]*)\x1b\\([^\x1b]*)\x1b]8;;\x1b\\`) ``` Then do `line = ansiLinkRe.ReplaceAllString(line, "$2")`. This replaces the links away, and `ansi.Length()` yields the correct...