I'm looking for some View in eclipse, which show me modified files by me today. I have many projects, and naturally i can use SVN but I would like somethin easy. Any view can do this requirments ?
In the Pending Changes view, right-click a component or workspace that includes the file or folder and click Show Repository Files to open a Repository Files view that lists all of the projects in the selected component or workspace. Right-click a file or folder in the project and click Show History.
From the main menu, select Window > Show view > Other. Then select General > Error Log. The error log is displayed, showing the following information for each error: The status of the error (for example, error or warning)
Step 1: Open your Eclipse or Spring Tool Suite, then go to the Window > Preferences as shown in the below image. Step 2: In the next screen go to the Java > Editor > Content Assist > Auto activation triggers for Java as shown in the below image.
AFAIK, there is no specific view that does that, but, you can use an external tool for that matter. If you are on a Unix box (Linux/OS X), the following command will look for files under the current directory which were modified in the last 24 hours:
find . -mtime -1 -print
On Windows, you might want to use cygwin or find an alternative command.
To define the command:
/usr/bin/find
) and in arguments enter: ${selected_resource_loc} -mtime -1 -print
In the arguments, you are telling Eclipse to enter the selected resource location as the search directory. Now, you can select a folder or file, and run the configuration from the External Tools button in the toolbar (green arrow with red toolbox icon).
Right Click on Project-> Restore from Local History.. this is closer answer to your question, I can not think anything that answers your question.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With