-
I need to monitor the file changes in the current workspace to determine whether recompilation is needed before the user debugs. Theia should currently have a service to monitor the file changes in the current workspace. I want to know if I can reuse this service or I need to register one myself. |
Beta Was this translation helpful? Give feedback.
Answered by
msujew
Jan 22, 2025
Replies: 1 comment
-
Hey @lqd1434, you can just listen to the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lqd1434
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @lqd1434,
you can just listen to the
FileService#onDidFilesChange
event to receive all changes that are happening in any of the currently open workspaces.