Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show hidden files in cloud9.io

I am developing a node.js application with cloud9 online IDE. I need to edit the .gitignore file, but I can not see it because it is a hidden file. Does anybody knows how to show hidden files in the cloud9 file tree?

like image 931
Francisco Fischer Avatar asked Aug 28 '15 21:08

Francisco Fischer


2 Answers

The method described in the other answer permanently modifies the pattern for files which cloud9 will consider hidden. There is also a quick way to temporarily display hidden files.
In the upper corner of the tree there is a gear button which opens a popup with an option to show hidden file

tree options popup

like image 194
a user Avatar answered Sep 28 '22 00:09

a user


Go to upper left Cloud9 menu item, then select the preferences option.

In the settings, select tree & navigate, and then you can modify the pattern of hidden files.

To show all, yo can erase all the text box, to see the .gitignore file, delete only the ".*" in the pattern. This will make the .gitignore file appear in the file tree.

like image 43
FRassetto Avatar answered Sep 28 '22 01:09

FRassetto