Sublime Forum

PSD Hidden in Sidebar

#1

Hello all,

I’ve recently started using ST2 as my main code editor. I’ve found it absolutely brilliant in terms of functionality and support!
One little annoyance though is that the sidebar seems to hide .psd files by default. I want to have quick access to my design files through the sidebar and using the Sidebar Enhancement plugin to open it in Photoshop. Any idea why ST does this?

0 Likes

#2

In the default settings, you’ll find: // folder_exclude_patterns and file_exclude_patterns control which files // are listed in folders on the side bar. These can also be set on a per- // project basis. "folder_exclude_patterns": ".svn", ".git", ".hg", "CVS"], "file_exclude_patterns": "*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db"],
Copy that over to your user settings but remove *.psd

0 Likes

#3

Ah, that does it! Thank you!

0 Likes