diff options
author | 2020-08-17 17:57:54 -0400 | |
---|---|---|
committer | 2020-08-17 17:57:54 -0400 | |
commit | b9a22328026264661c5713b783dd30ec07b16b9c (patch) | |
tree | 50702f57db6e9f852ce256d4f7ae338dcffe8e36 /core/lfs_ext.lua | |
parent | 40ddf423fd255a26e5cb8218c61341f99a2049cd (diff) | |
download | textadept-b9a22328026264661c5713b783dd30ec07b16b9c.tar.gz textadept-b9a22328026264661c5713b783dd30ec07b16b9c.zip |
Exclude Fossil version control directory in default filter.
Diffstat (limited to 'core/lfs_ext.lua')
-rw-r--r-- | core/lfs_ext.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/lfs_ext.lua b/core/lfs_ext.lua index d4acbbb8..47e37e86 100644 --- a/core/lfs_ext.lua +++ b/core/lfs_ext.lua @@ -19,7 +19,8 @@ lfs.default_filter = { '!.jar', '!.jpeg', '!.jpg', '!.o', '!.pdf', '!.png', '!.so', '!.tar', '!.tgz', '!.tif', '!.tiff', '!.xz', '!.zip', -- Directories to exclude. - '!/%.bzr$', '!/%.git$', '!/%.hg$', '!/%.svn$', '!/node_modules$', + '!/%.bzr$', '!/%.git$', '!/%.hg$', '!/%.svn$', '!/_FOSSIL_$', + '!/node_modules$' } -- Documentation is in `lfs.walk()`. |