Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Merge pull request #123 from mrjones2014/matjones/122-add-css-keyword…
Browse files Browse the repository at this point in the history
…-for-css-preprocessors

Add 'css' to default keywords list for CSS preprocessors like Sass, Less, Stylus
  • Loading branch information
mrjones2014 authored Dec 3, 2021
2 parents 84c05de + e080287 commit 0934c31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified bin/arm/libdash_nvim.so
Binary file not shown.
Binary file modified bin/x86/libdash_nvim.so
Binary file not shown.
8 changes: 4 additions & 4 deletions src/lua_bindings/dash_config_binding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub fn get_default(lua: &Lua) -> LuaTable {
javascriptreact = {{ 'javascript', 'react' }},
julia = true,
latex = true,
less = true,
less = {{ 'less', 'css' }},
lisp = true,
lua = true,
make = 'cmake',
Expand All @@ -65,12 +65,12 @@ pub fn get_default(lua: &Lua) -> LuaTable {
r = true,
ruby = true,
rust = true,
sass = true,
sass = {{ 'sass', 'css' }},
scala = true,
scss = 'sass',
scss = {{ 'sass', 'css' }},
sh = 'bash',
sql = 'mysql',
stylus = true,
stylus = {{ 'stylus', 'css' }},
svg = true,
swift = true,
terraform = true,
Expand Down

0 comments on commit 0934c31

Please sign in to comment.