feat: Add Code Diff Highlighting Mode#405
Open
Tanweer-Ahmed-Chiktay wants to merge 2 commits intoraycast:mainfrom
Open
feat: Add Code Diff Highlighting Mode#405Tanweer-Ahmed-Chiktay wants to merge 2 commits intoraycast:mainfrom
Tanweer-Ahmed-Chiktay wants to merge 2 commits intoraycast:mainfrom
Conversation
Contributor
|
@TanweerACB is attempting to deploy a commit to the Raycast Team on Vercel. A member of the Team first needs to authorize it. |
Implements raycast#154 - Add ability to highlight code differences within lines Features: - New diff mode toggle in controls panel - Automatic detection of + and - prefixed lines - Visual styling with green background for additions - Visual styling with red background for deletions - Diff markers (+ and -) displayed at line start - URL state persistence for diff mode - Works seamlessly with existing line highlighting Technical implementation: - Added diffModeAtom to store for state management - Extended Shiki transformer to detect and style diff lines - Created DiffModeControl component with Switch UI - Added CSS styling for diff-add and diff-remove classes - Integrated with existing code highlighting system
accd0c6 to
5b3be11
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR implements code diff highlighting functionality, addressing issue #154.
Changes
+or-Features
+-+and-symbols at line startImplementation Details
DiffModeControl.tsxcomponent for the togglediffModeAtomto store state with URL syncHighlightedCode.tsxwith diff detection logicEditor.module.cssControls.tsxcomponentTesting
+and-prefixesScreenshots
The diff mode clearly highlights code changes with intuitive color coding, making it perfect for showcasing code modifications, pull request reviews, and before/after comparisons.
Closes #154