how to show c 2b 2b binary files in sublime text

Solutions on MaxInterview for how to show c 2b 2b binary files in sublime text by the best coders in the world

showing results for - "how to show c 2b 2b binary files in sublime text"
Silvia
02 Nov 2019
1// folder_exclude_patterns and file_exclude_patterns control which files
2// are listed in folders on the side bar. These can also be set on a per-
3// project basis.
4"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS"],
5"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.sublime-workspace"],
6
7// These files will still show up in the side bar, but won't be included in
8// Goto Anything or Find in Files
9"binary_file_patterns": ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip"],