summaryrefslogtreecommitdiff
path: root/internal/lsp/ignore_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/ignore_test.go')
-rw-r--r--internal/lsp/ignore_test.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/internal/lsp/ignore_test.go b/internal/lsp/ignore_test.go
index 7df7428..d7b6776 100644
--- a/internal/lsp/ignore_test.go
+++ b/internal/lsp/ignore_test.go
@@ -15,11 +15,13 @@ import (
// from the given gitRoot and extra patterns.
func newIgnoreTestServer(gitRoot string, useGI bool, extra []string, notifyIgnored *bool) *Server {
cfg := appconfig.App{
- IgnoreLSPNotify: notifyIgnored,
- InlineOpen: ">!",
- InlineClose: ">",
- ChatSuffix: ">",
- ChatPrefixes: []string{"?", "!", ":", ";"},
+ CoreConfig: appconfig.CoreConfig{
+ InlineOpen: ">!",
+ InlineClose: ">",
+ ChatSuffix: ">",
+ ChatPrefixes: []string{"?", "!", ":", ";"},
+ },
+ FeatureConfig: appconfig.FeatureConfig{IgnoreLSPNotify: notifyIgnored},
}
s := &Server{
logger: log.New(io.Discard, "", 0),