diff options
author | 2020-03-26 18:21:30 -0400 | |
---|---|---|
committer | 2020-03-26 18:21:30 -0400 | |
commit | 9a9d7b484af4f0b6cecb06266c1ceee0a1c63c05 (patch) | |
tree | fee83df4712aafa568ca9400a38613a00f30e745 /core/file_io.lua | |
parent | b15fdce187730f285b5f24bd39e1929e3553e7a1 (diff) | |
download | textadept-9a9d7b484af4f0b6cecb06266c1ceee0a1c63c05.tar.gz textadept-9a9d7b484af4f0b6cecb06266c1ceee0a1c63c05.zip |
Added support to identify projects under Fossil SCM.
Diffstat (limited to 'core/file_io.lua')
-rw-r--r-- | core/file_io.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/file_io.lua b/core/file_io.lua index aa5aedc6..c1996950 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -343,7 +343,7 @@ function io.open_recent_file() end -- List of version control directories. -local vcs = {'.bzr', '.git', '.hg', '.svn'} +local vcs = {'.bzr', '.git', '.hg', '.svn', '_FOSSIL_'} --- -- Returns the root directory of the project that contains filesystem path |