>From 3d026a6b157c29cbe53c72be148c68b47ffe582c Mon Sep 17 00:00:00 2001 From: = <=> Date: Sat, 1 Aug 2020 08:42:25 +0200 Subject: [PATCH] Add sass @use rule * lisp/textmodes/css-mode.el (scss-at-ids): add 'use' to scss-at-ids for autocompletion. --- lisp/textmodes/css-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 2cd99787e8..cc5879880c 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -67,7 +67,7 @@ css-at-ids (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.") -- 2.27.0