+ 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.
32 lines
1 KiB
EmacsLisp
32 lines
1 KiB
EmacsLisp
;;; feature/eval/autoload/eval.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +eval/buffer ()
|
|
"Evaluate the whole buffer."
|
|
(interactive)
|
|
(cond ((assq major-mode +eval-runners-alist)
|
|
(+eval/region (point-min) (point-max)))
|
|
(t (quickrun))))
|
|
|
|
;;;###autoload
|
|
(defun +eval/region (beg end)
|
|
"Evaluate a region and, if large enough, prints its output to a popup buffer (if an
|
|
elisp buffer). Otherwise forward the region to Quickrun."
|
|
(interactive "r")
|
|
(let ((load-file-name buffer-file-name))
|
|
(if-let (runner (cdr (assq major-mode +eval-runners-alist)))
|
|
(funcall runner beg end)
|
|
(quickrun-region beg end))))
|
|
|
|
;;;###autoload
|
|
(defun +eval/region-and-replace (beg end)
|
|
(interactive "r")
|
|
(cond ((eq major-mode 'emacs-lisp-mode)
|
|
(kill-region beg end)
|
|
(condition-case nil
|
|
(prin1 (eval (read (current-kill 0)))
|
|
(current-buffer))
|
|
(error (message "Invalid expression")
|
|
(insert (current-kill 0)))))
|
|
(t (quickrun-replace-region beg end))))
|
|
|