1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-17 20:28:03 +02:00

Merge pull request #56 from chrisdoc/feature/swift-file-type

Add support for the Swift programming language file type
This commit is contained in:
Andrew Gallant 2016-09-24 14:34:06 -04:00 committed by GitHub
commit 2fb9c3c42c

View File

@ -67,6 +67,7 @@ const TYPE_EXTENSIONS: &'static [(&'static str, &'static [&'static str])] = &[
("scala", &["*.scala"]),
("sh", &["*.bash", "*.csh", "*.ksh", "*.sh", "*.tcsh"]),
("sql", &["*.sql"]),
("swift", &["*.swift"]),
("tex", &["*.tex", "*.cls", "*.sty"]),
("txt", &["*.txt"]),
("toml", &["*.toml", "Cargo.lock"]),