Is there a way to automatically refresh modified/added/deleted files in the workspace?
Right now I'm only able to add/remove files manually. For the modified files I have to reopen them to see the changes.
Regards
Refresh files in workspace
-
- CodeLite Curious
- Posts: 5
- Joined: Tue Jun 23, 2015 4:21 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Refresh files in workspace
Are we talking about a C++ workspace?
If yes, then the answer is "No"
In general, files that were modified outside of CodeLite, will get a prompt for "Reload file"
This is usually happens when you switch the focus in and out from CodeLite
Eran
If yes, then the answer is "No"
In general, files that were modified outside of CodeLite, will get a prompt for "Reload file"
This is usually happens when you switch the focus in and out from CodeLite
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 5
- Joined: Tue Jun 23, 2015 4:21 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Refresh files in workspace
What would be the quickest way to update an externally changed folder structure + addition/deletion of files?
- Jarod42
- CodeLite Expert
- Posts: 240
- Joined: Wed Sep 30, 2009 5:54 pm
- Genuine User: Yes
- IDE Question: C++
- Location: France
- Contact:
Re: Refresh files in workspace
I personally use project generator with premake. (cmake may be an option now, but I think it doesn't generate "normal" project).
And so, I just relaunch the script to update the project.
And so, I just relaunch the script to update the project.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Refresh files in workspace
Right click on the project and select 'Reconcile Project'xkyve wrote:What would be the quickest way to update an externally changed folder structure + addition/deletion of files?
See here: http://codelite.org/LiteEditor/ReconcileProject
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 5
- Joined: Tue Jun 23, 2015 4:21 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Refresh files in workspace
Thank you very much, it worked. I didn't know about that.