Closed
Description
Description

To Reproduce
struct SerialReception: View {
@binding var document: String
@State private var language: CodeLanguage = .default
@State private var theme: EditorTheme = .wise
@State private var font: NSFont = NSFont.monospacedSystemFont(ofSize: 12, weight: .regular)
@AppStorage("wrapLines") private var wrapLines: Bool = true
@State private var cursorPositions: [CursorPosition] = []
var body: some View {
CodeEditSourceEditor(
$document,
language: language,
theme: theme,
font: font,
tabWidth: 4,
lineHeight: 1.2,
wrapLines: wrapLines,
cursorPositions: $cursorPositions
)
}
}
Expected Behavior

Version Information
CodeEditSourceEditor: [e.g. 0.x.y]
macOS: [e.g. 15.0]
Xcode: [e.g. 16.0 beta]
Additional Context
No response
Screenshots
No response
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
🏁 Complete