This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
[FEATURE] Support Rebuilding Edited Files in Workspace #297
Labels
enhancement
New feature or request
Description:
Currently, the rebuild_file method in our VS Code extension only supports rebuilding saved files using the file_path parameter. However, there's a need to support rebuilding files that are being actively edited within the workspace. This limitation affects the usability and functionality of the extension, especially in scenarios where users are making changes to files but need to trigger a rebuild without saving them first.
Proposal:
Eg:
`
def rebuild_file(self, file_path: str, deep: bool = False, source:str ="") -> bool:
`
This enhancement would greatly improve the workflow for users of our extension, enabling them to trigger rebuilds more efficiently and effectively. Additionally, it aligns with the expectations of users who rely on such functionality within integrated development environments like VS Code.
The text was updated successfully, but these errors were encountered: