Change task hash format from parentheses to backticks#33
Open
clobrano wants to merge 4 commits into
Open
Conversation
The renderer, hash parser, copy function, and buffer search all used parenthesized hashes. Switched to backtick-delimited format consistently. https://claude.ai/code/session_01HuYbyYvM2aYDGCRT7Eakmk
Removed the end-of-line anchor so the backtick-wrapped hash is found regardless of its position in the line. https://claude.ai/code/session_01HuYbyYvM2aYDGCRT7Eakmk
resolve_workspace_rc now checks that entry.rc is a string before passing it to vim.fn.expand. get_workspace_rc_with_override also rejects non-string workspace values early. https://claude.ai/code/session_01HuYbyYvM2aYDGCRT7Eakmk
The type guards added to resolve_workspace_rc and get_workspace_rc_with_override caused E731 errors during BufReadPost. Reverting to original workspace resolution logic. https://claude.ai/code/session_01HuYbyYvM2aYDGCRT7Eakmk
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.
Summary
Updated the task hash display format throughout the codebase from parentheses
(hash)to backticks`hash`. This change affects how task hashes are rendered, extracted, and copied in the Frontline task management interface.Key Changes
format_taskfunction to wrap hashes in backticks instead of parenthesesImplementation Details
`([a-f0-9]+)`instead of%(([a-f0-9]+)%)%s*$https://claude.ai/code/session_01HuYbyYvM2aYDGCRT7Eakmk