Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ import (

// Server is the preview HTTP/WebSocket server.
type Server struct {
clientFS embed.FS
staticFS embed.FS
nvimOut *jsonlines.Writer
mu sync.Mutex
clients map[*websocket.Conn]context.CancelFunc
lastHTML string
baseDir string
clientFS embed.FS
staticFS embed.FS
nvimOut *jsonlines.Writer
mu sync.Mutex
clients map[*websocket.Conn]context.CancelFunc
lastHTML string
baseDir string
}

// New creates a new Server.
Expand Down
Loading