#iCodeEditor
#version 2.0.1

#Filter file used to hide/ignore file and folders.
#a. Line starts with '#' is comment.
#b. Each line contains a match rule to ignore directory or file.
#c. Please duplicate this file as iCodeEditor_Search.txt to
#   improve performance for searching.

# ignore all hidden file and directories
#.+*

#1. Exclude directories by name (must ends with /)
#m4/
#po/
#test/
#vms/
#dist/
#build/
#.git/
#.svn/
#.hg/
#CVS/
#.deps/
#.libs/
#.icns/
#*.xcodeproj/
#*.xcworkspace/
#DerivedData/

# (ignore directory name has prefix, must ends with /)
# prefix+*/

# (ignore directory name has suffix, must ends with /)
# *+suffix/

# (ignore directory name contains word, must ends with /)
# *+word+*/
# ...

#2. Exclude directories by relative path (must starts with RP and ends with /).
#RP src/data/
#RP src/resource/
#RP ...

#3. Exclude files by specified extension names(must starts with *.)
#*.o
#*.lo
#*.la
#*.so
#*.class
#*.gz
#*.tar
#*.zip
#*.7z
#*.iso
#*.jar
#...
# 

#4. Exclude files by name (with or without extention)
# .DS_Store (already ignored by built in function)
#a.file
#b.pdf
#...

# (ignore file name has prefix)
#prefix+*
# ignore all hidden files
#.+*

# (ignore file name has suffix)
#*+suffix

# (ignore file name contains word)
#*+word+*
#...

#5. Exclude files by relative path (must starts with RP and must not ends with /).
#RP oneFile
#RP src/someFile
#RP src/someOtherFile
#RP ...


