-
-
Notifications
You must be signed in to change notification settings - Fork 366
Support copy file name #3526
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
Support copy file name #3526
Conversation
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view, the 📜action log, or 📝 job summary for details.
See ❌ Event descriptions for more information. If the flagged items are 🤯 false positivesIf items relate to a ...
|
🥷 Code experts: jjw24 Jack251970 has most 👩💻 activity in the files. See details
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame: To learn more about /:\ gitStream - Visit our Docs |
Be a legend 🏆 by adding a before and after screenshot of the changes you made, especially if they are around UI/UX. |
1 similar comment
Be a legend 🏆 by adding a before and after screenshot of the changes you made, especially if they are around UI/UX. |
📝 WalkthroughWalkthroughA new context menu item, "Copy name," has been added to the Explorer plugin, allowing users to copy only the file or folder name (excluding the path) to the clipboard. Corresponding English language resource strings were introduced, and an unused using directive was removed from the main plugin file. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant ExplorerPlugin
participant Clipboard
participant Logger
User->>ExplorerPlugin: Right-click on file/folder
ExplorerPlugin->>User: Show context menu (includes "Copy name")
User->>ExplorerPlugin: Select "Copy name"
ExplorerPlugin->>Clipboard: Copy file/folder name
alt Success
Clipboard-->>ExplorerPlugin: Name copied
ExplorerPlugin-->>User: Operation successful
else Failure
Clipboard-->>ExplorerPlugin: Exception
ExplorerPlugin->>Logger: Log error
ExplorerPlugin->>User: Show error message
end
Assessment against linked issues
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
💤 Files with no reviewable changes (1)
🧰 Additional context used🧬 Code Graph Analysis (1)Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs (1)
⏰ Context from checks skipped due to timeout of 90000ms (4)
🔇 Additional comments (2)
✨ Finishing Touches
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 (
|
@Jack251970 This change seems simple, did you want to include in v1.20.0? |
yeah |
Add copy file name in explorer context menu.
Resolve #3505.