views:

99

answers:

2

I'm using Mac Snow Lepord and can't find "~/.config/MonoDevelop/" for the life of me. I have MonoDevelop (v2.2.2) up and running already, but when I tried to set up a template the IDE started having problems.

Namely, whenever I went to Monodevelop -> preferences-> Code Templates I would get an error saying "Argument cannont be null".

I tried removing MonoDevelop from my Mac and re-installing but that doesn't appear to fix this problem so I thought if I could find the above folder maybe I could remove that. However I am not sure how to find it. I put the address directly into Mac's "finder" search box and no results were returned.

Can anyone help?

A: 

The tidle ~ would normaly expand to your home directory, e.g. ~/foo.txt is /path/to/your_directory/foo.txt, depending on where 'home' is on any given system.

So, the file you are looking for is /Users/your_username/.config/MonoDevelop/ ...

Also, there are some shells / systems that simply do not support tidle expansion.

Tim Post
~ expands to your home dir, this is true, but your home dir isn't necessarily /home/yourusername. For example, on OS X, it is usually /Users/yourshortusername
Logan Capaldo
@Logan: Doh, edited. Thanks. I actually read "Mac" several times, first cup of coffee.
Tim Post
A: 

Note: You are not going to see your .config directory in your user directory in finder unless you show hidden files. You are going to have to get there via bash in the Terminal.

Kris Erickson