Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions src/desktop/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,9 @@ function createWindow() {
nodeIntegration: false,
contextIsolation: true,
preload: path.join(__dirname, "../preload.js"),
// Disable the native spellchecker: mux is a coding tool where inputs are
// full of code, paths, and identifiers that trigger noisy red squiggles.
spellcheck: false,
},
title: "mux - coder multiplexer",
// Hide menu bar on Linux by default (like VS Code)
Expand Down
2 changes: 2 additions & 0 deletions src/desktop/terminalWindowManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ export class TerminalWindowManager {
contextIsolation: true,
// __dirname is dist/services/ but preload.js is in dist/
preload: path.join(__dirname, "../preload.js"),
// Disable spellcheck to match the main window; terminal content is code.
spellcheck: false,
},
backgroundColor: "#1e1e1e",
});
Expand Down
Loading