diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/mm-calc.el | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.config/emacs/modules/mm-calc.el b/.config/emacs/modules/mm-calc.el index 2a9a74b..f87a93a 100644 --- a/.config/emacs/modules/mm-calc.el +++ b/.config/emacs/modules/mm-calc.el @@ -1,18 +1,6 @@ ;;; mm-calc.el --- Emacs configurations for ‘calc-mode’ -*- lexical-binding: t; -*- -;; TODO: Swap more than 2 elements? -(defun mm-calc-swap () - "Swap the top two elements on the stack." - (declare (modes calc-mode)) - (interactive) - (calc-over 2) - (calc-truncate-up 2) - (calc-pop 1) - (calc-truncate-down 2)) - (use-package calc - :bind (:map calc-mode-map - ("C-c x" . #'mm-calc-swap)) ;; TODO: Can this be done in :custom? :init (setopt |