EmmyLua / IntelliJ-EmmyLua

Lua IDE/Debugger Plugin for IntelliJ IDEA
https://emmylua.github.io
Apache License 2.0
1.72k stars 287 forks source link

Q: is there a way to exclude directories? #528

Closed tanis2000 closed 1 year ago

tanis2000 commented 1 year ago

I am using EmmyLua with CLion and a CMake-based project. I would like to be able to exclude the cmake-build-debug folder as it contains the files created by the build itself which means that all my .lua files get copied there, too. This is confusing EmmyLua as it sees duplicate definitions. On top of that it looks like this is also causing quite some exceptions.

Is there already a way to exclude that directory? Or would you take into consideration to add this feature?

Thanks!

CppCXY commented 1 year ago

settings>Editor> File Types> Ignored Files and Folders

tanis2000 commented 1 year ago

Thanks!