-
Notifications
You must be signed in to change notification settings - Fork 5
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
fix: parsing promptList text and breadcrumb #177
Conversation
Pull Request Test Coverage Report for Build 12926923723Details
💛 - Coveralls |
// there some edge cases in copilot where the prompts are not correctly parsed. In this case is better to show the filepath | ||
if (compareCode || filePath) { | ||
if (filePath) | ||
return `Prompt on file${filePath[0]?.trim().toLocaleLowerCase()}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return `Prompt on file${filePath[0]?.trim().toLocaleLowerCase()}`; | |
return `Prompt on file: ${filePath[0]?.trim().toLocaleLowerCase()}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return `Prompt on file${filePath[0]?.trim().toLocaleLowerCase()}`; | ||
|
||
if (compareCode) | ||
return `Prompt from snippet ${compareCode[0]?.trim().toLocaleLowerCase()}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return `Prompt from snippet ${compareCode[0]?.trim().toLocaleLowerCase()}`; | |
return `Prompt from snippet: ${compareCode[0]?.trim().toLocaleLowerCase()}`; |
"render code with file path", | ||
{ | ||
message: "<file> ```tsx // filepath: /tests/my-test.tsx import", | ||
expected: /Prompt on file\/\/ filepath: \/tests\/my-test.tsx/i, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
expected: /Prompt on file\/\/ filepath: \/tests\/my-test.tsx/i, | |
expected: /Prompt on file: \/\/ filepath: \/tests\/my-test.tsx/i, |
Following some issues with copilot, I tried to checked some specific use cases: