From a75ae187b40fb3dcd7f79425a9d1b6ddb0457946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Fri, 28 Apr 2023 22:53:41 +0200 Subject: [PATCH] add plugin scope to settings. --- pkg/types/session.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/types/session.go b/pkg/types/session.go index 45d5ae92..b1c2057d 100644 --- a/pkg/types/session.go +++ b/pkg/types/session.go @@ -33,6 +33,9 @@ type Settings struct { ImplicitHosting bool `json:"implicit_hosting"` InactiveCursors bool `json:"inactive_cursors"` MercifulReconnect bool `json:"merciful_reconnect"` + + // plugin scope + Plugins map[string]any `json:"plugins"` } type Session interface {