+ enable lexical-scope everywhere (lexical-binding = t): ~5-10% faster startup; ~5-20% general boost + reduce consing, function calls & garbage collection by preferring cl-loop & dolist over lambda closures (for mapc[ar], add-hook, and various cl-lib filter/map/reduce functions) -- where possible + prefer functions with dedicated opcodes, like assq (see byte-defop's in bytecomp.el for more) + prefer pcase & cond (faster) over cl-case + general refactor for code readability + ensure naming & style conventions are adhered to + appease byte-compiler by marking unused variables with underscore + defer minor mode activation to after-init, emacs-startup or window-setup hooks; a customization opportunity for users + ensures custom functionality won't interfere with startup.
33 lines
1.1 KiB
EmacsLisp
33 lines
1.1 KiB
EmacsLisp
;;; lang/web/autoload/css.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
;; TODO (defun +css/scss-build ())
|
|
|
|
;;;###autoload
|
|
;; TODO (defun +css/sass-build ())
|
|
|
|
;;;###autoload
|
|
(defun +css/toggle-inline-or-block ()
|
|
"Toggles between a bracketed block and inline block."
|
|
(interactive)
|
|
;; TODO Remove evil dependency
|
|
(save-excursion
|
|
(destructuring-bind (beg end)
|
|
(or (ignore-errors (evil-a-curly))
|
|
(user-error "No block found"))
|
|
(if (= (line-number-at-pos beg) (line-number-at-pos end))
|
|
(save-excursion
|
|
(goto-char (1+ beg)) (insert "\n")
|
|
(unless (string-match ";[\s\t]*}$" (buffer-substring-no-properties beg (1+ end)))
|
|
(goto-char end) (insert "\n"))
|
|
(while (re-search-forward ";[\s\t]*" (1+ end) t)
|
|
(replace-match ";\n" t t))
|
|
(setq end (cadr (evil-a-curly)))
|
|
(evil-indent beg end)
|
|
(delete-trailing-whitespace beg end))
|
|
(goto-char beg)
|
|
(evil-join beg end)
|
|
(goto-char (1+ beg))
|
|
(just-one-space)
|
|
(goto-char (cadr (evil-inner-curly)))
|
|
(just-one-space)))))
|