From 6046400fd68a8ed8ce4fe269abbffbf786c6673b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 24 Jul 2015 13:06:57 +0200 Subject: [PATCH] Replace ,; and ,: in scss-mode with helm-css-scss --- modules/module-sass.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/module-sass.el b/modules/module-sass.el index 0674cf521..3601c777f 100644 --- a/modules/module-sass.el +++ b/modules/module-sass.el @@ -13,6 +13,10 @@ (setq-default css-indent-offset 2) (setq scss-compile-at-save nil) :config + (bind! :map scss-mode-map + :n ",;" 'helm-css-scss + :n ",:" 'helm-css-scss-multi) + (after! web-beautify (add-hook! scss-mode (setenv "jsbeautify_indent_size" "2")) (bind! :map scss-mode-map :m "gQ" 'web-beautify-css))