Set serial monitor font from terminal.integrated.fontSize#65
Set serial monitor font from terminal.integrated.fontSize#65connorajersch wants to merge 1 commit into
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThe PR adds live syncing for ChangesLive serial font-size sync
Sequence Diagram(s)sequenceDiagram
participant "VS Code Settings"
participant "src/extension.ts"
participant "EspDecoderWebviewPanel"
participant "webview message handler"
"VS Code Settings"->>"src/extension.ts": terminal.integrated.fontSize changes
"src/extension.ts"->>"EspDecoderWebviewPanel": updateTerminalFontSize()
"EspDecoderWebviewPanel"->>"webview message handler": postMessage(fontSizeChanged)
"webview message handler"->>"webview message handler": set --serial-font-size
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This might be an opinionated change, but I personally like to have my terminal set to a different font size than my editior. VSCode allows users to set their integrated terminal font size with the
terminal.integrated.fontSizesetting. This implementation should update the font size live if changed while using it.Not sure if this is something that others would find useful, but figured I would submit the changes anyways.
Summary by CodeRabbit
New Features
Bug Fixes