How to disable creating an '.idea' folder in Rubymine? It creates that folder after opening every single file and if I delete the folder, works just the same as if I don't. TIA
Asked
Active
Viewed 1,464 times
0
-
What is the problem with the .idea folder? – basszero Sep 01 '09 at 13:24
1 Answers
2
I don't think you can (or should) disable the creation of the folder, the same as with the nbproject
folder created by NetBeans (they probably serve similar purposes) and for that matter any .svn
or other source control-related folders. That things still work may just mean that you haven't yet hit the place where it's going to get broken (or maybe RubyMine will just create the fodler again if you've deleted it and it needs it?).
And why would you want to? You almost certainly don't want them in source control, but that's a simple matter of setting an "ignore" property, which isn't a great hardship.
Why not ask the RubyMine guys? They were pretty helpful when I had a problem.

Mike Woodhouse
- 51,832
- 12
- 88
- 127
-
I have some small 30 lines scripts and just want to have syntax highlighting for them. Going to ask JetBrains support – Fluffy Sep 01 '09 at 14:21
-
If you just need the code highlighting for 30-line script, then you probably don't need a full-blown $99 IDE for it. Try Notepad++, this is a very powerful and fast text editor. – Alex Kovshovik Feb 26 '10 at 20:18