mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-22 03:55:11 +00:00
Recognize SCSS and Stylus as source for CSS files (#770)
This commit is contained in:
parent
a6ad5fa2cd
commit
d11ac5d49b
@ -16,7 +16,8 @@ impl<'a> File<'a> {
|
||||
pub fn get_source_files(&self) -> Vec<PathBuf> {
|
||||
if let Some(ext) = &self.ext {
|
||||
match &ext[..] {
|
||||
"css" => vec![self.path.with_extension("sass"), self.path.with_extension("less")], // SASS, Less
|
||||
"css" => vec![self.path.with_extension("sass"), self.path.with_extension("scss"), // SASS, SCSS
|
||||
self.path.with_extension("styl"), self.path.with_extension("less")], // Stylus, Less
|
||||
"js" => vec![self.path.with_extension("coffee"), self.path.with_extension("ts")], // CoffeeScript, TypeScript
|
||||
|
||||
"aux" | // TeX: auxiliary file
|
||||
|
Loading…
Reference in New Issue
Block a user