Results 13 comments of Travis Harmon

> The govalid struct validation is only for non pointer types. What exactly are you referring to here? The `s` argument here can be a pointer: `func (v *Validator) Violation(s...

Thanks for the clarification. Sounds like a good thing to add. Feel free to make a PR for discussion.

It looks like your two examples are the same? Is there a typo? Or, can you explain the problem a bit more?

It looks like trailing slashes aren't handled the way you are expecting them. `app.GET("/hello/{name}", handler)` will match `/hello/` with `name === ""`. `app.GET("/hello/{name}", handler)` will not match `/hello/Bob/` and `404`...

For me, `just.spyOn(React, 'useContext').mockImplementation(() => {...} )` will work if my component has `const ctx = React.useContext(MyContext)` but not with `const ctx = useContext(MyContext)`.

That was Nightly. I was editing, and occasionally working with the config file (`;c`). Wasn't changing anything crazy. Even when I loaded back in the default config, lvim refused to...

1. The link to emacs screen shot at least has the right margin. Surely we can at least change that. 2. As for the space between messages, if space is...

> > This is better: > > @twharmon Excuse me for the unrelated question, but how did you set up the mode names down in the statusline to their full...

I think I am encountering the same problem developing https://github.com/goui-org/goui, which runs with wasm (-gc=conservative) in the browser. After updating the dom millions of times, I get this: > panic:...

@dgryski What is the solution? I added some logging in gc_* src, and it does free bytes regularly, but still must call `growHeap` many times. I also logged runtime memory...