From 9c2c5696242f963542406a4c89955c6cd1e061a9 Mon Sep 17 00:00:00 2001 From: Lyuha Date: Wed, 2 Nov 2016 23:08:10 +0900 Subject: [PATCH 1/6] Add textile filetype --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 3d15f9c..23e5e99 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -149,6 +149,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("taskpaper", &["*.taskpaper"]), ("tcl", &["*.tcl"]), ("tex", &["*.tex", "*.ltx", "*.cls", "*.sty", "*.bib"]), + ("textile", &["*.textile"]), ("ts", &["*.ts", "*.tsx"]), ("txt", &["*.txt"]), ("toml", &["*.toml", "Cargo.lock"]), From 6f45478a7db0856971c1b62b069f06b40e91df2e Mon Sep 17 00:00:00 2001 From: Lyuha Date: Wed, 2 Nov 2016 23:15:43 +0900 Subject: [PATCH 2/6] Add rdoc filetype --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 23e5e99..7c7111f 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -137,6 +137,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("py", &["*.py"]), ("readme", &["README*", "*README"]), ("r", &["*.R", "*.r", "*.Rmd", "*.Rnw"]), + ("rdoc", &["*.rdoc"]), ("rst", &["*.rst"]), ("ruby", &["*.rb"]), ("rust", &["*.rs"]), From 201d0cb8c158b07cb2ffe1bcb403e011a4263cd6 Mon Sep 17 00:00:00 2001 From: Lyuha Date: Wed, 2 Nov 2016 23:22:09 +0900 Subject: [PATCH 3/6] Add org filetype --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 7c7111f..2c0aa97 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -132,6 +132,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("objc", &["*.h", "*.m"]), ("objcpp", &["*.h", "*.mm"]), ("ocaml", &["*.ml", "*.mli", "*.mll", "*.mly"]), + ("org", &["*.org"]), ("perl", &["*.perl", "*.pl", "*.PL", "*.plh", "*.plx", "*.pm"]), ("php", &["*.php", "*.php3", "*.php4", "*.php5", "*.phtml"]), ("py", &["*.py"]), From a2315d5ee5d26166181be389e04cbb406706a674 Mon Sep 17 00:00:00 2001 From: Lyuha Date: Wed, 2 Nov 2016 23:27:11 +0900 Subject: [PATCH 4/6] Add creole filetype --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 2c0aa97..1ae2d8f 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -89,6 +89,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("clojure", &["*.clj", "*.cljc", "*.cljs", "*.cljx"]), ("cmake", &["*.cmake", "CMakeLists.txt"]), ("coffeescript", &["*.coffee"]), + ("creole", &["*.creole"]), ("config", &["*.config"]), ("cpp", &[ "*.C", "*.cc", "*.cpp", "*.cxx", From 82abf883c536560e62b56489e1af7709056b08f6 Mon Sep 17 00:00:00 2001 From: Lyuha Date: Wed, 2 Nov 2016 23:28:48 +0900 Subject: [PATCH 5/6] Add wiki filetype --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 1ae2d8f..71c9d33 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -159,6 +159,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("vala", &["*.vala"]), ("vb", &["*.vb"]), ("vimscript", &["*.vim"]), + ("wiki", &["*.mediawiki", "*.wiki"]), ("xml", &["*.xml"]), ("yacc", &["*.y"]), ("yaml", &["*.yaml", "*.yml"]), From 103c4c953c951c1408baf0412f4ce63623b5611f Mon Sep 17 00:00:00 2001 From: Lyuha Date: Wed, 2 Nov 2016 23:58:03 +0900 Subject: [PATCH 6/6] Add pod filetype --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 71c9d33..027851b 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -136,6 +136,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("org", &["*.org"]), ("perl", &["*.perl", "*.pl", "*.PL", "*.plh", "*.plx", "*.pm"]), ("php", &["*.php", "*.php3", "*.php4", "*.php5", "*.phtml"]), + ("pod", &["*.pod"]), ("py", &["*.py"]), ("readme", &["README*", "*README"]), ("r", &["*.R", "*.r", "*.Rmd", "*.Rnw"]),