Is there a way to disable this feature in Eclipse CDT Luna?
https://wiki.eclipse.org/CDT/User/NewIn85#Header_File_Rename
I do not want my #include statements being replaced with relative paths as that is against my companies code style.
Example: Before moving a header file:
#include <File.h>
After:
#include "../dir1/File.h"
Is there some setting which will disable this refactoring?