I installed the Manifold plugin for IntelliJ IDEA, but then we decided we don't need it.
I'm using a Mac.
How the heck do I remove it?
It gives me a bunch of errors like java: package manifold.internal.runtime does not exist
for each file.
I installed the Manifold plugin for IntelliJ IDEA, but then we decided we don't need it.
I'm using a Mac.
How the heck do I remove it?
It gives me a bunch of errors like java: package manifold.internal.runtime does not exist
for each file.
You can delete the plug-in manually from the plug-ins directory.
On macOS for IntelliJ IDEA 2019.1 version that would be:
~/Library/Application Support/IntelliJIdea2019.1
Disclaimer: I am working on the same project as the OP.
What worked for me was running find -type f | xargs grep -i manifold
(find all files that case-insensitive contain manifold
), and manually deleting the references. After doing that, the error disappeared.
Close IntelliJ IDEA, then delete the folder of the plugin from your filesystem in $HOME/.IntelliJ2018.x/config/plugins
.