Viorel Craescu

Results 11 comments of Viorel Craescu

Isn't possible to have default highlights and then for each language have a specific highlight for that language? So when you define a highlight for `@type.definition`, we will have 2...

@clason Thanks a lot for the clarification!

I'm having same issue here. I have to switch the modules by hand.

@jeevatkm Yes, I'm using multiple verbs for an action. The app we're building right now It's just a prototype and we just render ol' school html. No REST, just plain...

https://github.com/go-aah/aah/blob/3374b69984a054a3f83776851e8c09aa7b9e76a9/http_engine.go#L314 ``` // Set Cookies ctx.writeCookies() if re.redirect { // handle redirects ctx.Log().Debugf("Redirecting to '%s' with status '%d'", re.path, re.Code) http.Redirect(ctx.Res, ctx.Req.Unwrap(), re.path, re.Code) return } // Check ContentType and...

Managed to mitigate this issue using a PostReply subscriber: ``` aah.App().HTTPEngine().OnPostReply(func(e *aah.Event) { ctx, ok := e.Data.(*aah.Context) if !ok { return } if err := aah.App().SessionManager().SaveSession(ctx.Res, ctx.Session()); err != nil...

6 years and still no var args? 😀