summaryrefslogtreecommitdiff
path: root/lisp/textmodes/css-mode.el
diff options
context:
space:
mode:
authorTheodor Thornhill <theo@thornhill.no>2020-08-04 12:12:46 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-08-04 12:12:46 +0200
commitb8b25400d544b2178ddc51de05a681ed11d581d6 (patch)
tree1eaa8db5d98c6e385866c12d334380798dfb6273 /lisp/textmodes/css-mode.el
parent19e76f6190c5c7b939bb15c8ab1137c5db2871c0 (diff)
downloademacs-b8b25400d544b2178ddc51de05a681ed11d581d6.tar.gz
emacs-b8b25400d544b2178ddc51de05a681ed11d581d6.tar.bz2
emacs-b8b25400d544b2178ddc51de05a681ed11d581d6.zip
Add sass @use rule to css-mode
* lisp/textmodes/css-mode.el (scss-at-ids): Add 'use' to scss-at-ids for autocompletion (bug#42700).
Diffstat (limited to 'lisp/textmodes/css-mode.el')
-rw-r--r--lisp/textmodes/css-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el
index 2cd99787e8a..cc5879880c8 100644
--- a/lisp/textmodes/css-mode.el
+++ b/lisp/textmodes/css-mode.el
@@ -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.")