diff options
| -rw-r--r-- | lisp/ravi-init-maps.el | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/lisp/ravi-init-maps.el b/lisp/ravi-init-maps.el index b6855c1..825bdc1 100644 --- a/lisp/ravi-init-maps.el +++ b/lisp/ravi-init-maps.el @@ -30,12 +30,14 @@ :config (progn (defhydra hydra-operate-on-number () - "Arithmetic operations: + - * / -Remainder: \\ -Exponent: ^ -Arithmetic shift:< > -Base conversion: b o x X # -Choices: " + " + Arithmetic operations: + - * / + Remainder: \\ + Exponent: \\^ + Arithmetic shift: < > + Base conversion: b o x X # + Format: %%%% + " ("+" apply-operation-to-number-at-point) ("-" apply-operation-to-number-at-point) ("*" apply-operation-to-number-at-point) @@ -49,8 +51,7 @@ Choices: " ("x" apply-operation-to-number-at-point :exit t) ("X" apply-operation-to-number-at-point :exit t) ("#" apply-operation-to-number-at-point :exit t) - ;; ("%" apply-operation-to-number-at-point :exit t) ; need to file bug report - )) + ("%" apply-operation-to-number-at-point :exit t))) :ensure t) ;; To do: launcher map, toggle map |
