-
Notifications
You must be signed in to change notification settings - Fork 106
Adds code navigation and highlighting support for Tcl #362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Caution Review failedThe pull request is closed. WalkthroughA new CodeMirror 6 Tcl language package was added as a dependency. The Tcl language integration in the code editor was updated to use this new package, replacing the legacy mode. Additionally, symbol hover functionality was extended to recognize more Tcl-specific syntax node types for hover decorations. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant CodeEditor
participant TclLangSupport
User->>CodeEditor: Opens/edit Tcl file
CodeEditor->>TclLangSupport: Load CodeMirror 6 Tcl language support
CodeEditor->>User: Display Tcl code with syntax highlighting
User->>CodeEditor: Hover over Tcl symbol
CodeEditor->>CodeEditor: Recognize Tcl node type (ProcName, ProcInvocation, etc.)
CodeEditor->>User: Show hover decoration for Tcl symbol
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Uses our new Tcl code mirror extension: https://github.com/sourcebot-dev/codemirror-lang-tcl
Summary by CodeRabbit
New Features
Chores