]> git.eshelyaron.com Git - emacs.git/commitdiff
Add sass @use rule to css-mode
authorTheodor Thornhill <theo@thornhill.no>
Tue, 4 Aug 2020 10:12:46 +0000 (12:12 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 4 Aug 2020 10:12:46 +0000 (12:12 +0200)
* lisp/textmodes/css-mode.el (scss-at-ids): Add 'use' to scss-at-ids
for autocompletion (bug#42700).

lisp/textmodes/css-mode.el

index 2cd99787e8a5e51007fa878183aa626d4be12c00..cc5879880c8e5461032b2805c6d091f09d71b5c9 100644 (file)
@@ -67,7 +67,7 @@
 
 (defconst scss-at-ids
   '("at-root" "content" "debug" "each" "else" "else if" "error" "extend"
-    "for" "function" "if" "import" "include" "mixin" "return" "warn"
+    "for" "function" "if" "import" "include" "mixin" "return" "use" "warn"
     "while")
   "Additional identifiers that appear in the form @foo in SCSS.")