I am using CLion and PyCharm at the same time on one project. If I switch from CLion to PyCharm or vice versa I encounter the following message:
Project components were changed externally and cannot be reloaded:
ToolWindowManager
FileEditorManager
editorHistoryManager
Would you like to reload project?
I noticed my source Directories were revoked every time I switched to PyCharm. This is a problem since I need those Directories to be marked as source to have them automatically included in the Python path variable which is configured as run configuration.
Reloading the project is time consuming (especially with C++ code). Are there ways to avoid reloading or even encountering this message at all?
I am using CLion 1.2.2 and Pycharm 5.0.2 on Ubuntu 15.10
.idea
)? If so, you might want to switch one of them to use a different directory. Both PyCharm and CLion are built on top of the IntelliJ IDE infrastructure, so they are probably stomping on each other's internal state if they're sharing the same.idea
directory. – Thaw